/* About — uses gv-page-shell from pages-shared.css */
.ab-page { /* legacy alias */ }

.ab-hero {
    position: relative;
    display: grid;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    padding-block: clamp(1.5rem, 4vw, 3rem);
}
@media (min-width: 1024px) {
    .ab-hero { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

.ab-hero__bg {
    position: absolute;
    inset: -2rem -1rem auto;
    height: 28rem;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 60% at 20% 20%, rgba(139, 92, 246, 0.18), transparent 65%),
        radial-gradient(ellipse 50% 45% at 85% 30%, rgba(6, 182, 212, 0.12), transparent 60%);
}
.dark .ab-hero__bg {
    background:
        radial-gradient(ellipse 70% 60% at 20% 20%, rgba(139, 92, 246, 0.25), transparent 65%),
        radial-gradient(ellipse 50% 45% at 85% 30%, rgba(6, 182, 212, 0.15), transparent 60%);
}

.ab-hero__content { position: relative; z-index: 1; }

.ab-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7c3aed;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.18);
}
.dark .ab-tag { color: #a78bfa; background: rgba(139, 92, 246, 0.15); }

.ab-hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 1rem;
}
.dark .ab-hero__title { color: #f8fafc; }

.ab-hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ab-hero__desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #64748b;
    max-width: 34rem;
    margin-bottom: 1.5rem;
}
.dark .ab-hero__desc { color: #94a3b8; }

.ab-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    border-radius: 0.9rem;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ab-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.35);
}
.ab-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(139, 92, 246, 0.45); }
.ab-btn--ghost {
    color: #7c3aed;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
}
.dark .ab-btn--ghost { color: #a78bfa; }

/* Hero visual — floating game cards */
.ab-hero__visual {
    position: relative;
    z-index: 1;
    min-height: 20rem;
}
@media (min-width: 1024px) { .ab-hero__visual { min-height: 24rem; } }

.ab-hero__collage {
    position: relative;
    width: min(100%, 22rem);
    margin-inline: auto;
    aspect-ratio: 4 / 5;
}
@media (min-width: 1024px) {
    .ab-hero__collage { margin-inline: auto 0; width: 100%; max-width: 24rem; }
}

.ab-hero__card {
    position: absolute;
    border-radius: 1.1rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ab-hero__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ab-hero__card--main {
    inset: 8% 12% 8% 12%;
    z-index: 2;
    animation: ab-float 5s ease-in-out infinite;
}
.ab-hero__card--tl {
    width: 38%;
    aspect-ratio: 4/5;
    top: 0;
    inset-inline-start: 0;
    z-index: 1;
    opacity: 0.85;
    animation: ab-float 6s ease-in-out infinite -1s;
}
.ab-hero__card--br {
    width: 34%;
    aspect-ratio: 4/5;
    bottom: 0;
    inset-inline-end: 0;
    z-index: 3;
    animation: ab-float 4.5s ease-in-out infinite -0.5s;
}
.ab-hero__glow {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35), transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: ab-pulse 4s ease-in-out infinite;
}

@keyframes ab-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}
@keyframes ab-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

/* ── Stats strip ── */
.ab-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 768px) { .ab-stats { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.ab-stat {
    padding: 1.25rem 1rem;
    border-radius: 1.15rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dark .ab-stat {
    background: rgba(22, 22, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.08);
}
.ab-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.12);
}
.ab-stat__icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 0.65rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.ab-stat__value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
}
.dark .ab-stat__value { color: #fff; }
.ab-stat__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 0.2rem;
}
.dark .ab-stat__label { color: #94a3b8; }

/* ── Section headers ── */
.ab-section-head {
    text-align: center;
    margin-bottom: 2rem;
}
.ab-section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
}
.dark .ab-section-head h2 { color: #f8fafc; }

/* ── Mission / Vision ── */
.ab-mv {
    display: grid;
    gap: 1.25rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 768px) { .ab-mv { grid-template-columns: 1fr 1fr; } }

.ab-mv__card {
    padding: 1.75rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(139, 92, 246, 0.12);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.dark .ab-mv__card {
    background: rgba(22, 22, 42, 0.88);
    border-color: rgba(255, 255, 255, 0.08);
}
.ab-mv__card:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.3);
}
.ab-mv__card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #7c3aed;
    margin-bottom: 0.75rem;
}
.dark .ab-mv__card h3 { color: #a78bfa; }
.ab-mv__card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #64748b;
}
.dark .ab-mv__card p { color: #94a3b8; }

/* ── Pillars ── */
.ab-pillars {
    display: grid;
    gap: 1.25rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 768px) { .ab-pillars { grid-template-columns: repeat(3, 1fr); } }

.ab-pillar {
    position: relative;
    padding: 1.75rem 1.5rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(139, 92, 246, 0.1);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.dark .ab-pillar {
    background: rgba(22, 22, 42, 0.88);
    border-color: rgba(255, 255, 255, 0.08);
}
.ab-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ab-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.12);
}
.ab-pillar:hover::before { opacity: 1; }

.ab-pillar__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #7c3aed;
    background: rgba(139, 92, 246, 0.12);
    margin-bottom: 1rem;
}
.ab-pillar h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.dark .ab-pillar h3 { color: #f8fafc; }
.ab-pillar p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: #64748b;
}
.dark .ab-pillar p { color: #94a3b8; }

/* ── Journey steps ── */
.ab-journey {
    position: relative;
    display: grid;
    gap: 1rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 768px) {
    .ab-journey { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .ab-journey::before {
        content: '';
        position: absolute;
        top: 3.5rem;
        inset-inline: 12%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.35), rgba(6, 182, 212, 0.35), transparent);
        z-index: 0;
    }
}

.ab-step {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    border-radius: 1.25rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}
.dark .ab-step {
    background: rgba(22, 22, 42, 0.88);
    border-color: rgba(255, 255, 255, 0.08);
}
.ab-step:hover {
    transform: scale(1.03);
    background: rgba(139, 92, 246, 0.06);
}
.ab-step__num {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #8b5cf6;
    margin-bottom: 0.65rem;
}
.ab-step__icon {
    width: 3.25rem;
    height: 3.25rem;
    margin: 0 auto 0.85rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}
.ab-step h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.35rem;
}
.dark .ab-step h3 { color: #f8fafc; }
.ab-step p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
}
.dark .ab-step p { color: #94a3b8; }

/* ── Payment logos ── */
.ab-payments {
    margin-bottom: clamp(3rem, 6vw, 5rem);
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(14px);
}
.dark .ab-payments {
    background: rgba(22, 22, 42, 0.88);
    border-color: rgba(255, 255, 255, 0.08);
}

.ab-payments__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}
@media (min-width: 640px) { .ab-payments__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .ab-payments__grid { grid-template-columns: repeat(5, 1fr); } }

.ab-pay-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.85rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dark .ab-pay-logo { background: rgba(255, 255, 255, 0.95); }
.ab-pay-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}
.ab-pay-logo img {
    max-width: 100%;
    max-height: 2.25rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ── Security band ── */
.ab-security {
    display: grid;
    gap: 2rem;
    align-items: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #1a1030 0%, #0c0c18 50%, #101828 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}
@media (min-width: 768px) { .ab-security { grid-template-columns: 1.2fr 0.8fr; } }

.ab-security__orb {
    position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
    inset-inline-end: -5rem;
    top: -5rem;
    pointer-events: none;
}

.ab-security__title {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
}
.ab-security__desc {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 1.25rem;
}
.ab-security__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}
.ab-security__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.9rem;
    font-weight: 600;
}
.ab-security__list i { color: #34d399; margin-top: 0.15rem; }

.ab-security__shield {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(5rem, 12vw, 8rem);
    color: rgba(139, 92, 246, 0.35);
    animation: ab-pulse 3s ease-in-out infinite;
}

/* ── Numbers ── */
.ab-numbers {
    display: grid;
    gap: 1.25rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.12);
}
@media (min-width: 768px) { .ab-numbers { grid-template-columns: repeat(3, 1fr); } }

.ab-number {
    text-align: center;
    padding: 1rem;
}
.ab-number__value {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 900;
    color: #7c3aed;
    line-height: 1;
}
.dark .ab-number__value { color: #a78bfa; }
.ab-number__value span { font-size: 0.55em; opacity: 0.85; }
.ab-number__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 0.5rem;
}
.dark .ab-number__label { color: #94a3b8; }

/* ── Testimonial ── */
.ab-quote {
    position: relative;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    padding: 2rem 1.75rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(139, 92, 246, 0.12);
    text-align: center;
}
.dark .ab-quote {
    background: rgba(22, 22, 42, 0.88);
    border-color: rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) { .ab-quote { padding: 2.5rem 3rem; } }

.ab-quote__icon {
    font-size: 2rem;
    color: rgba(139, 92, 246, 0.25);
    margin-bottom: 1rem;
}
.ab-quote p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.85;
    font-weight: 600;
    color: #334155;
    max-width: 42rem;
    margin: 0 auto 1.25rem;
}
.dark .ab-quote p { color: #e2e8f0; }
.ab-quote cite {
    font-style: normal;
    font-weight: 800;
    color: #0f172a;
    display: block;
}
.dark .ab-quote cite { color: #fff; }
.ab-quote span {
    font-size: 0.82rem;
    color: #64748b;
}

/* ── Bento services ── */
.ab-bento {
    display: grid;
    gap: 1rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 640px) { .ab-bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ab-bento { grid-template-columns: repeat(4, 1fr); } }

.ab-bento__card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
    background: rgba(255, 255, 255, 0.78);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}
.dark .ab-bento__card {
    background: rgba(22, 22, 42, 0.88);
    border-color: rgba(255, 255, 255, 0.08);
}
.ab-bento__card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.12);
}
.ab-bento__card i {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
}
.ab-bento__card--purple i { color: #7c3aed; background: rgba(139, 92, 246, 0.12); }
.ab-bento__card--cyan i { color: #0891b2; background: rgba(6, 182, 212, 0.12); }
.ab-bento__card--emerald i { color: #059669; background: rgba(16, 185, 129, 0.12); }
.ab-bento__card--amber i { color: #d97706; background: rgba(245, 158, 11, 0.12); }

.ab-bento__card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.35rem;
}
.dark .ab-bento__card h3 { color: #f8fafc; }
.ab-bento__card p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #64748b;
}
.dark .ab-bento__card p { color: #94a3b8; }

/* ── CTA ── */
.ab-cta {
    text-align: center;
    padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
    border-radius: 1.75rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 45%, #4c1d95 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.ab-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15), transparent 50%);
    pointer-events: none;
}
.ab-cta h2 {
    position: relative;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    margin-bottom: 0.65rem;
}
.ab-cta p {
    position: relative;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 28rem;
    margin-inline: auto;
}
.ab-cta .ab-btn {
    position: relative;
    background: #fff;
    color: #6d28d9;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.ab-cta .ab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

@media (max-width: 479px) {
    .ab-hero__collage { max-width: 16rem; }
    .ab-payments__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
    .ab-hero__card, .ab-hero__glow, .ab-security__shield { animation: none; }
    .ab-pillar:hover, .ab-step:hover, .ab-bento__card:hover { transform: none; }
}
