/*
 * ABAMBUZ Sitewide Experience v2.7.0
 * Loaded after the legacy stylesheet. New public-page selectors are unique
 * so member portal, wallet, payment and marketplace logic remain isolated.
 */
:root {
    --abz-lime: #b7ff00;
    --abz-lime-strong: #aaff00;
    --abz-lime-soft: rgba(183, 255, 0, 0.10);
    --abz-bg: #050505;
    --abz-panel: #10110f;
    --abz-panel-2: #151713;
    --abz-white: #f7f8f3;
    --abz-muted: #a5a99f;
    --abz-line: rgba(255, 255, 255, 0.10);
    --abz-border: rgba(183, 255, 0, 0.25);
    --abz-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

body.abz-public-site {
    min-width: 320px;
    background: var(--abz-bg);
}

body.abz-public-site::before {
    z-index: -10;
}

body.abz-public-site a {
    text-underline-offset: 3px;
}

/* Public site header */
.abz-site-header {
    position: relative;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid var(--abz-border);
    background: rgba(3, 4, 3, 0.94);
    backdrop-filter: blur(18px);
}

body.admin-bar .abz-site-header {
    top: 0;
}

.abz-site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    width: min(100%, 1540px);
    min-height: 116px;
    margin: 0 auto;
    padding: 18px 42px;
}

.abz-site-brand {
    display: inline-flex;
    align-items: center;
    width: 210px;
    text-decoration: none;
}

.abz-site-brand img {
    display: block;
    width: 100%;
    height: auto;
}

.abz-site-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2vw, 34px);
}

.abz-site-navigation a,
.abz-site-navigation a:visited {
    position: relative;
    padding: 12px 0;
    color: #b6b9b2;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 750;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.abz-site-navigation a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--abz-lime);
    transition: transform 180ms ease;
}

.abz-site-navigation a:hover,
.abz-site-navigation a[aria-current="page"] {
    color: var(--abz-lime);
}

.abz-site-navigation a:hover::after,
.abz-site-navigation a[aria-current="page"]::after {
    transform: scaleX(1);
}

.abz-site-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.abz-site-button,
.abz-site-button:visited,
.abz-primary-action,
.abz-primary-action:visited,
.abz-secondary-action,
.abz-secondary-action:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 24px;
    border: 1px solid var(--abz-lime);
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.025em;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.abz-site-button:hover,
.abz-primary-action:hover,
.abz-secondary-action:hover {
    transform: translateY(-2px);
}

.abz-site-button.is-solid,
.abz-primary-action {
    color: #050505;
    background: var(--abz-lime);
    box-shadow: 0 14px 34px rgba(183, 255, 0, 0.13);
}

.abz-site-button.is-outline,
.abz-secondary-action {
    color: var(--abz-lime);
    background: transparent;
}

.abz-site-button.is-outline:hover,
.abz-secondary-action:hover {
    color: #050505;
    background: var(--abz-lime);
}

.abz-site-menu-toggle {
    display: none;
    width: 48px;
    height: 44px;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--abz-border);
    border-radius: 12px;
    background: #0c0d0b;
    box-shadow: none;
}

.abz-site-menu-toggle:hover {
    transform: none;
    box-shadow: none;
}

.abz-site-menu-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--abz-lime);
    transition: transform 180ms ease, opacity 180ms ease;
}

.abz-site-menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.abz-site-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
}

.abz-site-menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* New homepage */
.abz-home-v2,
.abz-public-page {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--abz-white);
    background:
        radial-gradient(circle at 58% 5%, rgba(183, 255, 0, 0.15), transparent 27rem),
        linear-gradient(rgba(183, 255, 0, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(183, 255, 0, 0.045) 1px, transparent 1px),
        var(--abz-bg);
    background-size: auto, 78px 78px, 78px 78px, auto;
}

.abz-home-v2 *,
.abz-public-page * {
    box-sizing: border-box;
}

.abz-home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: clamp(42px, 6vw, 90px);
    width: min(100%, 1500px);
    min-height: 720px;
    margin: 0 auto;
    padding: clamp(76px, 8vw, 126px) 42px;
}

.abz-eyebrow {
    margin: 0 0 14px;
    color: var(--abz-lime);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.abz-home-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--abz-white);
    font-size: clamp(4.3rem, 7vw, 7.7rem);
    line-height: 0.86;
    letter-spacing: -0.065em;
}

.abz-home-hero h1 span {
    display: block;
    color: var(--abz-lime);
    text-shadow: 0 0 34px rgba(183, 255, 0, 0.38);
}

.abz-home-hero__lead {
    max-width: 720px;
    margin: 30px 0 0;
    color: #b8bbb4;
    font-size: clamp(1.05rem, 1.5vw, 1.32rem);
    line-height: 1.75;
}

.abz-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.abz-home-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-top: 34px;
    color: #9fa39a;
    font-size: 0.83rem;
}

.abz-home-proof b {
    color: var(--abz-white);
}

.abz-home-member-preview {
    position: relative;
    min-width: 0;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--abz-border);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(183, 255, 0, 0.11), transparent 58%),
        rgba(14, 15, 13, 0.96);
    box-shadow: var(--abz-shadow), 0 0 90px rgba(183, 255, 0, 0.07);
}

.abz-home-member-preview__top {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}

.abz-home-member-preview__top img {
    width: 92px;
    height: auto;
}

.abz-home-member-preview__top div {
    min-width: 0;
}

.abz-home-member-preview__top span,
.abz-home-member-preview__top strong {
    display: block;
}

.abz-home-member-preview__top span {
    color: var(--abz-muted);
    font-size: 0.75rem;
}

.abz-home-member-preview__top strong {
    margin-top: 4px;
    overflow: hidden;
    color: var(--abz-white);
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.abz-home-member-preview__top > b {
    padding: 11px 16px;
    border-radius: 999px;
    color: #050505;
    background: var(--abz-lime);
    font-size: 0.76rem;
    white-space: nowrap;
}

.abz-home-member-preview > p {
    margin: 46px 0 0;
    color: var(--abz-muted);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.abz-home-member-preview > h2 {
    margin: 10px 0 0;
    color: var(--abz-lime);
    font-size: clamp(3.3rem, 6vw, 6rem);
    line-height: 1;
    overflow-wrap: anywhere;
}

.abz-home-member-preview__unit {
    display: block;
    margin-top: 8px;
    color: var(--abz-white);
    font-size: 0.92rem;
    font-weight: 800;
}

.abz-home-member-preview__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.abz-home-member-preview__stats div {
    min-width: 0;
    padding: 18px 12px;
    border: 1px solid var(--abz-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    text-align: center;
}

.abz-home-member-preview__stats strong,
.abz-home-member-preview__stats span {
    display: block;
}

.abz-home-member-preview__stats strong {
    overflow: hidden;
    color: var(--abz-white);
    font-size: 1.05rem;
    text-overflow: ellipsis;
}

.abz-home-member-preview__stats span {
    margin-top: 5px;
    color: var(--abz-muted);
    font-size: 0.66rem;
    font-weight: 800;
}

.abz-home-member-preview > a,
.abz-home-member-preview > a:visited {
    display: block;
    margin-top: 26px;
    padding: 17px 18px;
    border: 1px solid var(--abz-border);
    border-radius: 14px;
    color: var(--abz-lime);
    background: rgba(183, 255, 0, 0.055);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 900;
}

.abz-home-feature-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(calc(100% - 84px), 1416px);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--abz-border);
    border-radius: 24px;
    background: var(--abz-line);
}

.abz-home-feature-strip article {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-width: 0;
    padding: 26px;
    background: #0e0f0d;
}

.abz-home-feature-strip article > span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid var(--abz-border);
    border-radius: 13px;
    color: var(--abz-lime);
    background: var(--abz-lime-soft);
    font-size: 1.05rem;
}

.abz-home-feature-strip h2,
.abz-home-feature-strip p {
    margin: 0;
}

.abz-home-feature-strip h2 {
    color: var(--abz-white);
    font-size: 0.95rem;
}

.abz-home-feature-strip p {
    margin-top: 6px;
    color: var(--abz-muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.abz-home-section {
    width: min(100%, 1500px);
    margin: 0 auto;
    padding: clamp(88px, 9vw, 136px) 42px;
}

.abz-home-section__heading {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.abz-home-section__heading h2,
.abz-public-page h2 {
    margin: 0;
    color: var(--abz-white);
    font-size: clamp(2.5rem, 4.5vw, 4.6rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.abz-home-section__heading > span {
    display: block;
    margin-top: 16px;
    color: var(--abz-muted);
    line-height: 1.6;
}

.abz-home-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.abz-home-plan-grid article {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: clamp(28px, 3.4vw, 44px);
    border: 1px solid var(--abz-line);
    border-radius: 24px;
    background: rgba(15, 16, 14, 0.94);
}

.abz-home-plan-grid article.is-featured {
    border-color: var(--abz-lime);
    background: linear-gradient(145deg, rgba(183, 255, 0, 0.13), transparent 58%), #10110f;
    box-shadow: 0 24px 70px rgba(183, 255, 0, 0.08);
}

.abz-home-plan-grid article > b {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #050505;
    background: var(--abz-lime);
    font-size: 0.6rem;
}

.abz-home-plan-grid small {
    color: var(--abz-lime);
    font-weight: 900;
    letter-spacing: 0.14em;
}

.abz-home-plan-grid h3 {
    margin: 22px 0 0;
    color: var(--abz-white);
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    line-height: 1;
}

.abz-home-plan-grid p {
    margin: 20px 0 0;
    color: var(--abz-muted);
    line-height: 1.7;
}

.abz-home-plan-grid ul {
    display: grid;
    gap: 12px;
    margin: 28px 0 30px;
    padding: 0;
    list-style: none;
    color: #d4d6d0;
}

.abz-home-plan-grid li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--abz-lime);
    font-weight: 900;
}

.abz-home-plan-grid a,
.abz-home-plan-grid a:visited {
    margin-top: auto;
    padding: 15px 18px;
    border: 1px solid var(--abz-border);
    border-radius: 12px;
    color: var(--abz-lime);
    text-align: center;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 900;
}

.abz-home-plan-grid a:hover {
    color: #050505;
    background: var(--abz-lime);
}

.abz-home-process {
    padding-top: 64px;
}

.abz-home-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.abz-home-process-grid article {
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--abz-line);
    border-radius: 20px;
    background: rgba(15, 16, 14, 0.88);
}

.abz-home-process-grid article > span {
    color: var(--abz-lime);
    font-size: 2.4rem;
    font-weight: 950;
}

.abz-home-process-grid h3 {
    margin: 25px 0 0;
    color: var(--abz-white);
    font-size: 1.2rem;
}

.abz-home-process-grid p {
    margin: 10px 0 0;
    color: var(--abz-muted);
    line-height: 1.55;
}

.abz-home-economy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
    align-items: center;
    gap: clamp(40px, 7vw, 100px);
    padding-top: 70px;
}

.abz-home-economy__copy h2 {
    max-width: 780px;
    margin: 0;
    color: var(--abz-white);
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.abz-home-economy__copy > p:not(.abz-eyebrow) {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--abz-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.abz-home-economy__cards {
    display: grid;
    gap: 14px;
}

.abz-home-economy__cards article {
    padding: 24px;
    border: 1px solid var(--abz-line);
    border-radius: 18px;
    background: rgba(15, 16, 14, 0.92);
}

.abz-home-economy__cards span,
.abz-home-economy__cards strong,
.abz-home-economy__cards p {
    display: block;
    margin: 0;
}

.abz-home-economy__cards span {
    color: var(--abz-muted);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.abz-home-economy__cards strong {
    margin-top: 10px;
    color: var(--abz-lime);
    font-size: 2rem;
}

.abz-home-economy__cards p {
    margin-top: 5px;
    color: #c5c8c0;
}

.abz-home-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: min(calc(100% - 84px), 1416px);
    margin: 20px auto 100px;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--abz-lime);
    border-radius: 26px;
    background: linear-gradient(120deg, rgba(183, 255, 0, 0.12), transparent 54%), #10110f;
}

.abz-home-cta h2 {
    max-width: 850px;
    margin: 0;
    color: var(--abz-white);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.abz-home-cta > a,
.abz-home-cta > a:visited {
    flex: 0 0 auto;
    padding: 17px 24px;
    border-radius: 999px;
    color: #050505;
    background: var(--abz-lime);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 950;
}

/* Public About, Contact, Affiliate and 404 pages */
.abz-public-page {
    min-height: 70vh;
    padding: 0 42px 100px;
}

.abz-public-page > * {
    width: min(100%, 1416px);
    margin-right: auto;
    margin-left: auto;
}

.abz-public-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
    align-items: end;
    gap: clamp(36px, 7vw, 100px);
    padding: clamp(86px, 9vw, 140px) 0 70px;
}

.abz-public-hero h1 {
    max-width: 980px;
    margin: 0;
    color: var(--abz-white);
    font-size: clamp(3.2rem, 6.5vw, 7rem);
    line-height: 0.93;
    letter-spacing: -0.06em;
}

.abz-public-hero > div > p:last-child {
    max-width: 820px;
    margin: 26px 0 0;
    color: var(--abz-muted);
    font-size: 1.12rem;
    line-height: 1.75;
}

.abz-public-hero aside {
    padding: 26px;
    border: 1px solid var(--abz-border);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(183, 255, 0, 0.10), transparent 65%), #10110f;
}

.abz-public-hero aside span,
.abz-public-hero aside strong {
    display: block;
}

.abz-public-hero aside span {
    color: var(--abz-lime);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.abz-public-hero aside strong {
    margin-top: 12px;
    color: var(--abz-white);
    font-size: 1.25rem;
    line-height: 1.45;
}

.abz-public-content-grid,
.abz-contact-options,
.abz-affiliate-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 24px 0 90px;
}

.abz-affiliate-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.abz-public-content-grid article,
.abz-contact-options article,
.abz-affiliate-steps article {
    min-width: 0;
    padding: 30px;
    border: 1px solid var(--abz-line);
    border-radius: 20px;
    background: rgba(15, 16, 14, 0.92);
}

.abz-public-content-grid article > span,
.abz-affiliate-steps article > span,
.abz-contact-options article > span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--abz-border);
    border-radius: 13px;
    color: var(--abz-lime);
    background: var(--abz-lime-soft);
    font-weight: 950;
}

.abz-public-content-grid h2,
.abz-contact-options h2,
.abz-affiliate-steps h2 {
    margin: 24px 0 0;
    font-size: 1.45rem;
    line-height: 1.2;
}

.abz-public-content-grid p,
.abz-contact-options p,
.abz-affiliate-steps p {
    margin: 14px 0 0;
    color: var(--abz-muted);
    line-height: 1.7;
}

.abz-contact-options a,
.abz-contact-options a:visited {
    display: inline-block;
    margin-top: 22px;
    color: var(--abz-lime);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.abz-public-split,
.abz-contact-guidance {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.65fr);
    gap: clamp(30px, 7vw, 90px);
    padding: 74px 0;
    border-top: 1px solid var(--abz-line);
}

.abz-public-split > div > p:not(.abz-eyebrow),
.abz-contact-guidance > div > p:not(.abz-eyebrow) {
    margin: 22px 0 0;
    color: var(--abz-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.abz-public-split ul {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    color: #d1d4cc;
}

.abz-public-split li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--abz-lime);
}

.abz-public-split aside {
    align-self: start;
    padding: 28px;
    border: 1px solid var(--abz-border);
    border-radius: 20px;
    background: var(--abz-lime-soft);
}

.abz-public-split aside strong {
    display: block;
    color: var(--abz-lime);
    font-size: 1.2rem;
}

.abz-public-split aside p {
    margin: 14px 0 0;
    color: #d0d3cb;
    line-height: 1.7;
}

.abz-public-split aside a,
.abz-public-split aside a:visited {
    display: inline-block;
    margin-top: 20px;
    color: var(--abz-lime);
    text-decoration: none;
    font-weight: 900;
}

.abz-public-values {
    padding: 80px 0;
    border-top: 1px solid var(--abz-line);
}

.abz-public-values > header {
    max-width: 880px;
}

.abz-public-values > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 38px;
}

.abz-public-values article {
    padding: 24px;
    border: 1px solid var(--abz-line);
    border-radius: 18px;
    background: rgba(15, 16, 14, 0.84);
}

.abz-public-values h3 {
    color: var(--abz-lime);
}

.abz-public-values p {
    margin: 10px 0 0;
    color: var(--abz-muted);
    line-height: 1.6;
}

.abz-contact-guidance ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.abz-contact-guidance li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px 18px;
    padding: 20px;
    border: 1px solid var(--abz-line);
    border-radius: 16px;
    background: rgba(15, 16, 14, 0.88);
}

.abz-contact-guidance li::before {
    content: counter(list-item, decimal-leading-zero);
    grid-row: 1 / 3;
    color: var(--abz-lime);
    font-size: 1.4rem;
    font-weight: 950;
}

.abz-contact-guidance li b,
.abz-contact-guidance li span {
    display: block;
}

.abz-contact-guidance li span {
    color: var(--abz-muted);
    line-height: 1.5;
}

.abz-affiliate-rates {
    padding: 70px 0;
    border-top: 1px solid var(--abz-line);
}

.abz-affiliate-rates header {
    max-width: 850px;
}

.abz-affiliate-rates > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.abz-affiliate-rates article {
    padding: 30px;
    border: 1px solid var(--abz-line);
    border-radius: 20px;
    background: rgba(15, 16, 14, 0.9);
}

.abz-affiliate-rates article.is-featured {
    border-color: var(--abz-lime);
    background: linear-gradient(145deg, rgba(183, 255, 0, 0.11), transparent 62%), #10110f;
}

.abz-affiliate-rates small {
    color: var(--abz-lime);
    font-weight: 900;
    letter-spacing: 0.12em;
}

.abz-affiliate-rates h3 {
    margin: 20px 0 0;
    color: var(--abz-white);
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.abz-affiliate-rates p {
    margin: 8px 0 0;
    color: var(--abz-muted);
}

.abz-public-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid var(--abz-lime);
    border-radius: 24px;
    background: linear-gradient(120deg, rgba(183, 255, 0, 0.10), transparent 58%), #10110f;
}

.abz-public-cta h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.abz-public-cta p {
    margin: 12px 0 0;
    color: var(--abz-muted);
}

.abz-public-cta > div:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.abz-not-found {
    display: grid;
    place-items: center;
    min-height: 70vh;
}

.abz-not-found__panel {
    max-width: 900px;
    padding: clamp(34px, 6vw, 72px);
    border: 1px solid var(--abz-border);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(183, 255, 0, 0.10), transparent 60%), #10110f;
    text-align: center;
}

.abz-not-found__panel h1 {
    margin: 0;
    color: var(--abz-white);
    font-size: clamp(2.7rem, 6vw, 5.8rem);
    line-height: 0.98;
}

.abz-not-found__panel > p:not(.abz-eyebrow) {
    margin: 22px 0 0;
    color: var(--abz-muted);
    line-height: 1.7;
}

.abz-not-found__panel .abz-home-actions {
    justify-content: center;
}

/* General WordPress content pages no longer create giant empty hero areas. */
.abambuz-page-shell:not(.abambuz-store-page) {
    min-height: 55vh;
    padding: clamp(54px, 7vw, 94px) 42px;
}

.abambuz-content-page {
    width: min(100%, 1200px);
}

.abambuz-page-header {
    margin-bottom: 28px;
}

.abambuz-page-header h1 {
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    line-height: 0.98;
}

.abambuz-page-content:empty {
    display: none;
}

/* Public footer */
.abz-site-footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--abz-border);
    background: #030403;
}

.abz-site-footer__inner {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
    align-items: center;
    gap: 34px;
    width: min(100%, 1500px);
    margin: 0 auto;
    padding: 48px 42px;
}

.abz-site-footer__brand img {
    width: 170px;
    height: auto;
}

.abz-site-footer__brand p {
    max-width: 440px;
    margin: 14px 0 0;
    color: var(--abz-muted);
    line-height: 1.55;
}

.abz-site-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.abz-site-footer__links a,
.abz-site-footer__links a:visited {
    color: #b6b9b1;
    text-decoration: none;
    font-size: 0.8rem;
}

.abz-site-footer__links a:hover {
    color: var(--abz-lime);
}

.abz-site-footer__legal {
    text-align: right;
}

.abz-site-footer__legal strong,
.abz-site-footer__legal span {
    display: block;
}

.abz-site-footer__legal strong {
    color: var(--abz-lime);
}

.abz-site-footer__legal span {
    margin-top: 6px;
    color: var(--abz-muted);
    font-size: 0.76rem;
}

/* Product page collision fixes. Product data and WooCommerce logic are unchanged. */
body.single-product .abz-product-premium {
    padding-top: clamp(42px, 5vw, 74px);
}

body.admin-bar.single-product .abz-product-premium {
    padding-top: clamp(54px, 6vw, 90px);
}

body.single-product .abz-product-page-header {
    align-items: center;
}

body.single-product form.cart {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 0 !important;
}

body.single-product form.cart .quantity {
    flex: 0 0 auto !important;
}

body.single-product form.cart .single_add_to_cart_button,
body.single-product form.cart button.single_add_to_cart_button {
    flex: 1 1 220px !important;
    width: auto !important;
    min-width: 190px !important;
    min-height: 52px !important;
    height: 52px !important;
    max-height: 52px !important;
    padding: 0 24px !important;
    line-height: 1 !important;
}

body.single-product div.product .summary {
    align-self: start;
}

body.single-product .woocommerce-tabs {
    clear: both;
}

/* Visible keyboard focus */
.abz-site-header a:focus-visible,
.abz-site-header button:focus-visible,
.abz-home-v2 a:focus-visible,
.abz-public-page a:focus-visible {
    outline: 3px solid rgba(183, 255, 0, 0.72);
    outline-offset: 4px;
}

@media (max-width: 1180px) {
    .abz-site-header__inner {
        grid-template-columns: auto auto;
        min-height: 92px;
        padding: 16px 24px;
    }

    .abz-site-brand {
        width: 180px;
    }

    .abz-site-menu-toggle {
        display: block;
        justify-self: end;
    }

    .abz-site-navigation,
    .abz-site-actions {
        display: none;
        grid-column: 1 / -1;
    }

    .abz-site-header.is-menu-open .abz-site-navigation {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px;
        width: 100%;
        padding-top: 8px;
    }

    .abz-site-header.is-menu-open .abz-site-navigation a {
        padding: 13px 14px;
        border-radius: 10px;
        background: #0d0e0c;
    }

    .abz-site-header.is-menu-open .abz-site-actions {
        display: flex;
        justify-content: stretch;
        width: 100%;
        padding: 10px 0 8px;
    }

    .abz-site-header.is-menu-open .abz-site-actions a {
        flex: 1;
    }

    .abz-home-hero,
    .abz-home-economy,
    .abz-public-hero,
    .abz-public-split,
    .abz-contact-guidance {
        grid-template-columns: 1fr;
    }

    .abz-home-hero {
        min-height: auto;
    }

    .abz-home-member-preview {
        max-width: 720px;
    }

    .abz-home-feature-strip,
    .abz-home-process-grid,
    .abz-public-values > div,
    .abz-affiliate-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .abz-site-footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .abz-site-footer__brand p {
        margin-right: auto;
        margin-left: auto;
    }

    .abz-site-footer__legal {
        text-align: center;
    }
}

@media (max-width: 820px) {
    .abz-home-hero,
    .abz-home-section,
    .abz-public-page {
        padding-right: 20px;
        padding-left: 20px;
    }

    .abz-home-hero h1 {
        font-size: clamp(3.6rem, 16vw, 6rem);
    }

    .abz-home-feature-strip,
    .abz-home-cta {
        width: calc(100% - 40px);
    }

    .abz-home-feature-strip,
    .abz-home-plan-grid,
    .abz-public-content-grid,
    .abz-contact-options,
    .abz-affiliate-rates > div {
        grid-template-columns: 1fr;
    }

    .abz-home-cta,
    .abz-public-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .abz-public-cta > div:last-child {
        justify-content: flex-start;
    }

    .abz-public-hero {
        padding-top: 72px;
    }

    .abz-site-footer__inner {
        padding-right: 20px;
        padding-left: 20px;
    }

    body.single-product form.cart {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    body.single-product form.cart .quantity,
    body.single-product form.cart .single_add_to_cart_button,
    body.single-product form.cart button.single_add_to_cart_button {
        width: 100% !important;
        max-width: none !important;
        flex-basis: auto !important;
    }
}

@media (max-width: 560px) {
    .abz-site-header.is-menu-open .abz-site-navigation {
        grid-template-columns: 1fr;
    }

    .abz-site-header.is-menu-open .abz-site-actions {
        flex-direction: column;
    }

    .abz-home-member-preview__top {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .abz-home-member-preview__top > b {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .abz-home-member-preview__stats,
    .abz-home-process-grid,
    .abz-public-values > div,
    .abz-affiliate-steps {
        grid-template-columns: 1fr;
    }

    .abz-primary-action,
    .abz-secondary-action {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .abz-public-site *,
    .abz-public-site *::before,
    .abz-public-site *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================================================
 * ABAMBUZ public experience refinement v2.7.1
 * Fine-tunes the public About, Contact and Affiliate pages without touching
 * member, payment, wallet or marketplace logic.
 * ===================================================================== */

.abz-public-page {
    padding-bottom: 64px;
}

.abz-public-page > * {
    position: relative;
    z-index: 1;
}

.abz-public-hero {
    position: relative;
    min-height: clamp(560px, 69vh, 720px);
    align-items: center;
    padding: clamp(68px, 7vw, 104px) 0 clamp(56px, 6vw, 82px);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.abz-public-hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    opacity: 0.9;
    pointer-events: none;
}

.abz-public-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.98) 37%, rgba(5, 5, 5, 0.62) 68%, rgba(5, 5, 5, 0.18) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.10), rgba(5, 5, 5, 0.72));
    pointer-events: none;
}

.abz-about-page .abz-public-hero::before {
    background-image: url('../images/about-ecosystem-ambient.webp');
}

.abz-affiliate-page .abz-public-hero::before {
    background-image: url('../images/affiliate-network-ambient.webp');
}

.abz-contact-page .abz-public-hero::before {
    background-image: url('../images/contact-support-ambient.webp');
}

.abz-public-hero > div {
    max-width: 860px;
}

.abz-public-hero h1 {
    max-width: 860px;
    font-size: clamp(3.35rem, 5.25vw, 5.9rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.abz-public-hero > div > p:last-child {
    max-width: 760px;
    margin-top: 22px;
    font-size: clamp(1rem, 1.3vw, 1.17rem);
    line-height: 1.68;
}

.abz-public-hero aside {
    align-self: end;
    max-width: 410px;
    padding: 24px 26px;
    border-color: rgba(183, 255, 0, 0.34);
    background:
        linear-gradient(145deg, rgba(183, 255, 0, 0.12), transparent 70%),
        rgba(10, 12, 9, 0.76);
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(12px);
}

.abz-public-hero aside strong {
    font-size: clamp(1.08rem, 1.45vw, 1.34rem);
    line-height: 1.45;
}

.abz-public-content-grid,
.abz-contact-options,
.abz-affiliate-steps {
    gap: 16px;
    padding-top: 54px;
    padding-bottom: 72px;
}

.abz-public-content-grid article,
.abz-contact-options article,
.abz-affiliate-steps article,
.abz-affiliate-rates article,
.abz-public-values article,
.abz-contact-guidance li {
    background:
        linear-gradient(145deg, rgba(183, 255, 0, 0.045), transparent 62%),
        rgba(13, 15, 12, 0.90);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.abz-public-content-grid article:hover,
.abz-contact-options article:hover,
.abz-affiliate-steps article:hover,
.abz-affiliate-rates article:hover,
.abz-public-values article:hover {
    transform: translateY(-4px);
    border-color: rgba(183, 255, 0, 0.34);
}

.abz-affiliate-rates,
.abz-public-split,
.abz-contact-guidance,
.abz-public-values {
    position: relative;
    overflow: hidden;
}

.abz-affiliate-rates {
    padding-top: 76px;
    padding-bottom: 76px;
    border-top-color: rgba(255, 255, 255, 0.08);
}

.abz-affiliate-rates::before,
.abz-public-split::before,
.abz-contact-guidance::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    opacity: 0.18;
    pointer-events: none;
}

.abz-affiliate-page .abz-affiliate-rates::before,
.abz-affiliate-page .abz-public-split::before {
    background-image: url('../images/affiliate-network-ambient.webp');
}

.abz-about-page .abz-public-split::before,
.abz-about-page .abz-public-values::before {
    background-image: url('../images/about-ecosystem-ambient.webp');
}

.abz-contact-page .abz-contact-guidance::before {
    background-image: url('../images/contact-support-ambient.webp');
}

.abz-affiliate-rates::after,
.abz-public-split::after,
.abz-contact-guidance::after,
.abz-public-values::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.91) 52%, rgba(5, 5, 5, 0.52) 100%);
    pointer-events: none;
}

.abz-affiliate-rates header,
.abz-public-values > header {
    max-width: 940px;
}

.abz-affiliate-rates header h2,
.abz-public-values > header h2,
.abz-public-split h2,
.abz-contact-guidance h2 {
    max-width: 940px;
    margin: 0;
    color: var(--abz-white);
    font-size: clamp(2.45rem, 4.45vw, 4.75rem);
    line-height: 1.01;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.abz-affiliate-rates > div {
    gap: 16px;
    margin-top: 34px;
}

.abz-affiliate-rates article {
    min-height: 250px;
    padding: 30px;
}

.abz-affiliate-rates article.is-featured {
    background:
        linear-gradient(145deg, rgba(183, 255, 0, 0.13), transparent 66%),
        rgba(14, 17, 11, 0.94);
}

.abz-affiliate-rates h3 {
    max-width: 100%;
    margin-top: 18px;
    font-size: clamp(2rem, 3.15vw, 3.1rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.abz-public-split,
.abz-contact-guidance {
    min-height: 560px;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 72px;
}

.abz-public-split > div,
.abz-contact-guidance > div {
    max-width: 820px;
}

.abz-public-split > div > p:not(.abz-eyebrow),
.abz-contact-guidance > div > p:not(.abz-eyebrow) {
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.72;
}

.abz-public-split aside {
    position: relative;
    max-width: 440px;
    justify-self: end;
    background:
        linear-gradient(145deg, rgba(183, 255, 0, 0.13), transparent 70%),
        rgba(12, 14, 10, 0.82);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.abz-contact-guidance {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
}

.abz-contact-guidance > div {
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(26px, 4vw, 54px);
    border: 1px solid rgba(183, 255, 0, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.10), rgba(5, 5, 5, 0.88)),
        url('../images/contact-support-ambient.webp') center / cover no-repeat;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
}

.abz-contact-guidance ol {
    counter-reset: support-step;
    gap: 14px;
}

.abz-contact-guidance li {
    counter-increment: support-step;
    padding: 22px;
}

.abz-contact-guidance li::before {
    content: counter(support-step, decimal-leading-zero);
}

.abz-public-values {
    padding-top: 74px;
    padding-bottom: 74px;
}

.abz-public-values > div {
    gap: 14px;
    margin-top: 34px;
}

.abz-public-values article {
    min-height: 190px;
}

.abz-public-cta {
    margin-top: 22px;
    margin-bottom: 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(7, 9, 6, 0.94), rgba(7, 9, 6, 0.58)),
        url('../images/public-footer-ambient.webp') center / cover no-repeat;
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.26);
}

.abz-public-cta h2 {
    max-width: 820px;
    font-size: clamp(2rem, 3.25vw, 3.35rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.abz-site-footer {
    background:
        linear-gradient(90deg, rgba(3, 4, 3, 0.96), rgba(3, 4, 3, 0.80)),
        url('../images/public-footer-ambient.webp') center / cover no-repeat;
}

.abz-site-footer__inner {
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 34px;
}

.abz-site-footer__brand p {
    max-width: 380px;
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.55;
}

.abz-site-footer__legal span {
    max-width: 330px;
}

@media (max-width: 1100px) {
    .abz-public-hero {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
    }

    .abz-public-hero::after {
        background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.97) 50%, rgba(5, 5, 5, 0.40) 100%);
    }

    .abz-affiliate-rates h3 {
        font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    }
}

@media (max-width: 900px) {
    .abz-public-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 72px;
        padding-bottom: 54px;
    }

    .abz-public-hero::before {
        background-position: center top;
        opacity: 0.52;
    }

    .abz-public-hero::after {
        background: linear-gradient(180deg, rgba(5, 5, 5, 0.24), #050505 72%);
    }

    .abz-public-hero aside {
        max-width: 620px;
        justify-self: start;
    }

    .abz-public-split,
    .abz-contact-guidance {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .abz-public-split aside {
        max-width: none;
        justify-self: stretch;
    }

    .abz-contact-guidance > div {
        min-height: 360px;
    }

    .abz-affiliate-rates > div,
    .abz-public-values > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .abz-public-page {
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 44px;
    }

    .abz-public-hero {
        padding-top: 54px;
    }

    .abz-public-hero h1 {
        font-size: clamp(2.85rem, 13vw, 4.15rem);
    }

    .abz-public-content-grid,
    .abz-contact-options,
    .abz-affiliate-steps,
    .abz-affiliate-rates > div,
    .abz-public-values > div {
        grid-template-columns: 1fr;
    }

    .abz-public-split h2,
    .abz-contact-guidance h2,
    .abz-affiliate-rates header h2,
    .abz-public-values > header h2 {
        font-size: clamp(2.25rem, 10vw, 3.35rem);
    }

    .abz-contact-guidance > div {
        min-height: 310px;
        padding: 26px;
    }

    .abz-public-cta {
        padding: 28px;
    }

    .abz-site-footer__inner {
        padding-top: 28px;
        padding-bottom: 28px;
    }
}

/* ========================================================================
 * ABAMBUZ cinematic hero placement v2.8.2
 * Uses supplied brand photography only on the Home, About and Contact heroes.
 * The selectors are isolated from member, wallet, order and payment screens.
 * ===================================================================== */

/* Home: supplied member portrait at the centre of the hero. */
.abz-home-v2 .abz-home-hero {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    min-height: clamp(720px, 82vh, 900px);
    padding:
        clamp(88px, 9vw, 138px)
        max(42px, calc((100vw - 1500px) / 2 + 42px));
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(3, 4, 3, 0.98) 0%,
            rgba(3, 4, 3, 0.92) 27%,
            rgba(3, 4, 3, 0.54) 48%,
            rgba(3, 4, 3, 0.18) 69%,
            rgba(3, 4, 3, 0.56) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 4, 3, 0.08) 0%,
            rgba(3, 4, 3, 0.08) 68%,
            rgba(3, 4, 3, 0.82) 100%
        ),
        url('../images/home-member-hero.webp') center center / cover no-repeat;
    border-bottom: 1px solid rgba(183, 255, 0, 0.18);
}

.abz-home-v2 .abz-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 52% 44%,
            rgba(183, 255, 0, 0.08),
            transparent 31rem
        ),
        linear-gradient(
            rgba(183, 255, 0, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(183, 255, 0, 0.035) 1px,
            transparent 1px
        );
    background-size: auto, 78px 78px, 78px 78px;
}

.abz-home-v2 .abz-home-hero__copy {
    position: relative;
    z-index: 2;
    width: min(100%, 650px);
    padding: 34px 0;
}

.abz-home-v2 .abz-home-hero h1 {
    font-size: clamp(4rem, 6.6vw, 7.15rem);
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.56);
}

.abz-home-v2 .abz-home-hero__lead {
    max-width: 620px;
    color: rgba(247, 248, 243, 0.80);
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.abz-home-v2 .abz-home-member-preview {
    position: absolute;
    z-index: 3;
    right: max(42px, calc((100vw - 1500px) / 2 + 42px));
    bottom: 48px;
    width: min(370px, calc(100% - 84px));
    padding: 24px;
    border-color: rgba(183, 255, 0, 0.40);
    background:
        linear-gradient(145deg, rgba(183, 255, 0, 0.12), transparent 62%),
        rgba(7, 9, 6, 0.84);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.48),
        0 0 70px rgba(183, 255, 0, 0.08);
    backdrop-filter: blur(18px);
}

.abz-home-v2 .abz-home-member-preview__top img {
    width: 68px;
}

.abz-home-v2 .abz-home-member-preview > p {
    margin-top: 26px;
}

.abz-home-v2 .abz-home-member-preview > h2 {
    font-size: clamp(2.55rem, 4vw, 4.2rem);
}

/* About, Contact and Affiliate: supplied images sit at the top-right like the guide. */
.abz-about-page .abz-public-hero,
.abz-contact-page .abz-public-hero,
.abz-affiliate-page .abz-public-hero {
    display: flex;
    min-height: clamp(650px, 78vh, 820px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding:
        clamp(78px, 8vw, 124px)
        max(42px, calc((100vw - 1500px) / 2 + 42px));
}

.abz-about-page .abz-public-hero::before {
    background-image: url('../images/about-community-hero.webp');
    background-position: right top;
    background-size: cover;
    opacity: 1;
}

.abz-contact-page .abz-public-hero::before {
    background-image: url('../images/contact-support-hero.webp');
    background-position: right top;
    background-size: cover;
    opacity: 1;
}

.abz-affiliate-page .abz-public-hero::before {
    background-image: url('../images/affiliate-community-hero.webp');
    background-position: right top;
    background-size: cover;
    opacity: 1;
}

.abz-about-page .abz-public-hero::after,
.abz-contact-page .abz-public-hero::after,
.abz-affiliate-page .abz-public-hero::after {
    background:
        linear-gradient(
            90deg,
            #050505 0%,
            rgba(5, 5, 5, 0.98) 28%,
            rgba(5, 5, 5, 0.82) 46%,
            rgba(5, 5, 5, 0.24) 69%,
            rgba(5, 5, 5, 0.05) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 5, 5, 0.04) 0%,
            rgba(5, 5, 5, 0.04) 66%,
            rgba(5, 5, 5, 0.76) 100%
        );
}

.abz-about-page .abz-public-hero > div,
.abz-contact-page .abz-public-hero > div,
.abz-affiliate-page .abz-public-hero > div {
    position: relative;
    z-index: 2;
    width: min(100%, 720px);
}

.abz-about-page .abz-public-hero h1,
.abz-contact-page .abz-public-hero h1,
.abz-affiliate-page .abz-public-hero h1 {
    max-width: 720px;
    font-size: clamp(3.55rem, 5.55vw, 6.15rem);
    text-shadow: 0 10px 36px rgba(0, 0, 0, 0.62);
}

.abz-about-page .abz-public-hero > div > p:last-child,
.abz-contact-page .abz-public-hero > div > p:last-child,
.abz-affiliate-page .abz-public-hero > div > p:last-child {
    max-width: 670px;
    color: rgba(247, 248, 243, 0.78);
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.72);
}

.abz-about-page .abz-public-hero aside,
.abz-contact-page .abz-public-hero aside,
.abz-affiliate-page .abz-public-hero aside {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    width: min(100%, 450px);
    max-width: 450px;
    margin-top: 30px;
    padding: 20px 24px;
    background:
        linear-gradient(145deg, rgba(183, 255, 0, 0.12), transparent 72%),
        rgba(7, 9, 6, 0.76);
    backdrop-filter: blur(16px);
}

/* Keep the photography composed correctly at common breakpoints. */
@media (max-width: 1180px) {
    .abz-home-v2 .abz-home-hero {
        background-position: 56% center;
    }

    .abz-home-v2 .abz-home-hero__copy {
        width: min(100%, 590px);
    }

    .abz-home-v2 .abz-home-member-preview {
        width: 330px;
    }

    .abz-about-page .abz-public-hero::before,
    .abz-contact-page .abz-public-hero::before,
    .abz-affiliate-page .abz-public-hero::before {
        background-position: 66% top;
    }
}

@media (max-width: 900px) {
    .abz-home-v2 .abz-home-hero {
        min-height: auto;
        padding: 72px 28px 42px;
        background:
            linear-gradient(
                180deg,
                rgba(3, 4, 3, 0.18) 0%,
                rgba(3, 4, 3, 0.62) 44%,
                #050505 76%
            ),
            url('../images/home-member-hero.webp') center top / auto 620px no-repeat,
            #050505;
    }

    .abz-home-v2 .abz-home-hero__copy {
        width: 100%;
        max-width: 680px;
        margin-top: 420px;
        padding: 0;
    }

    .abz-home-v2 .abz-home-member-preview {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 680px;
        margin-top: 34px;
    }

    .abz-about-page .abz-public-hero,
    .abz-contact-page .abz-public-hero,
    .abz-affiliate-page .abz-public-hero {
        min-height: auto;
        padding: 520px 28px 54px;
    }

    .abz-about-page .abz-public-hero::before,
    .abz-contact-page .abz-public-hero::before,
    .abz-affiliate-page .abz-public-hero::before {
        background-position: 70% top;
        background-size: auto 560px;
        background-color: #050505;
    }

    .abz-about-page .abz-public-hero::after,
    .abz-contact-page .abz-public-hero::after,
    .abz-affiliate-page .abz-public-hero::after {
        background:
            linear-gradient(
                180deg,
                rgba(5, 5, 5, 0.02) 0%,
                rgba(5, 5, 5, 0.18) 35%,
                #050505 68%
            );
    }
}

@media (max-width: 640px) {
    .abz-home-v2 .abz-home-hero {
        padding-right: 20px;
        padding-left: 20px;
        background-size: auto 470px;
    }

    .abz-home-v2 .abz-home-hero__copy {
        margin-top: 320px;
    }

    .abz-home-v2 .abz-home-hero h1 {
        font-size: clamp(3.2rem, 16vw, 4.6rem);
    }

    .abz-about-page .abz-public-hero,
    .abz-contact-page .abz-public-hero,
    .abz-affiliate-page .abz-public-hero {
        padding: 390px 20px 44px;
    }

    .abz-about-page .abz-public-hero::before,
    .abz-contact-page .abz-public-hero::before,
    .abz-affiliate-page .abz-public-hero::before {
        background-position: 72% top;
        background-size: auto 430px;
    }

    .abz-about-page .abz-public-hero h1,
    .abz-contact-page .abz-public-hero h1,
    .abz-affiliate-page .abz-public-hero h1 {
        font-size: clamp(2.85rem, 14vw, 4.2rem);
    }

    .abz-about-page .abz-public-hero aside,
    .abz-contact-page .abz-public-hero aside,
    .abz-affiliate-page .abz-public-hero aside {
        padding: 18px 20px;
    }
}
