/* Homepage About — premium brand section */
.home-about {
    --ha-pink: #e31c79;
    --ha-purple: #702082;
    --ha-deep: #4a1560;
    --ha-ink: #1c1028;
    --ha-muted: rgba(28, 16, 40, 0.7);
    --ha-line: rgba(112, 32, 130, 0.12);
    position: relative;
    isolation: isolate;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 64px 0 72px;
    overflow: hidden;
    color: var(--ha-ink);
}

@media (min-width: 992px) {
    .home-about {
        margin-top: 180px;
        padding: 80px 0 96px;
    }
}

.home-about__atmosphere {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(90% 70% at 8% 20%, rgba(227, 28, 121, 0.1), transparent 55%),
        radial-gradient(70% 60% at 92% 10%, rgba(112, 32, 130, 0.12), transparent 50%),
        linear-gradient(160deg, #fffafc 0%, #f7eef8 45%, #faf6fb 100%);
}

.home-about__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.home-about__orb--a {
    width: 340px;
    height: 340px;
    top: -80px;
    right: 4%;
    background: radial-gradient(circle, rgba(227, 28, 121, 0.28), transparent 70%);
    animation: ha-float 11s ease-in-out infinite;
}

.home-about__orb--b {
    width: 260px;
    height: 260px;
    bottom: -70px;
    left: 2%;
    background: radial-gradient(circle, rgba(112, 32, 130, 0.25), transparent 70%);
    animation: ha-float 13s ease-in-out infinite reverse;
}

.home-about__grain {
    position: absolute;
    inset: -10%;
    opacity: 0.35;
    background-image: repeating-linear-gradient(
        -18deg,
        transparent 0 16px,
        rgba(112, 32, 130, 0.03) 16px 17px
    );
    pointer-events: none;
}

.home-about__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 40px 56px;
    align-items: center;
}

.home-about__visual {
    position: relative;
}

.home-about__frame {
    position: relative;
    overflow: hidden;
    border-radius: 32px 10px 32px 10px;
    aspect-ratio: 4 / 5;
    max-width: 460px;
    margin: 0 auto;
    background: linear-gradient(145deg, #702082, #e31c79);
    box-shadow:
        0 28px 60px rgba(112, 32, 130, 0.22),
        0 2px 0 rgba(227, 28, 121, 0.25);
}

.home-about__frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: inherit;
    z-index: 2;
    pointer-events: none;
}

.home-about__frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-about__visual:hover .home-about__frame img {
    transform: scale(1.08);
}

.home-about__shine {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.28) 48%, transparent 62%);
    transform: translateX(-120%);
    animation: ha-shine 7s ease-in-out infinite;
    pointer-events: none;
}

.home-about__badge {
    position: absolute;
    left: -6px;
    bottom: 36px;
    max-width: 210px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(84, 0, 100, 0.16);
    z-index: 3;
}

.home-about__badge strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
    color: var(--ha-purple);
}

.home-about__badge span {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--ha-muted);
}

.home-about__ring {
    position: absolute;
    top: -18px;
    right: 8%;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 1px dashed rgba(227, 28, 121, 0.45);
    z-index: 0;
    animation: ha-spin 22s linear infinite;
    pointer-events: none;
}

.home-about__eyebrow {
    display: inline-flex;
    margin: 0 0 14px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(227, 28, 121, 0.2);
    background: rgba(227, 28, 121, 0.08);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ha-pink);
}

.home-about__name {
    margin: 0 0 8px;
    font-family: Saira, Quicksand, sans-serif;
    font-size: clamp(1.9rem, 3.6vw, 2.75rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--ha-deep);
}

.home-about__role {
    margin: 0 0 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ha-pink);
}

.home-about__lead {
    margin: 0 0 24px;
    max-width: 38rem;
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--ha-muted);
}

.home-about__milestone {
    position: relative;
    display: inline-flex;
    margin: 0 0 26px;
    padding: 2px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(227, 28, 121, 0.85), rgba(112, 32, 130, 0.9));
    box-shadow: 0 18px 40px rgba(112, 32, 130, 0.22);
    overflow: hidden;
}

.home-about__milestone-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 45%);
    animation: ha-milestone-glow 4.5s ease-in-out infinite;
    pointer-events: none;
}

.home-about__milestone-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 280px;
    padding: 18px 22px;
    border-radius: 20px;
    background: linear-gradient(145deg, #5a1768 0%, #702082 42%, #a02070 100%);
    color: #fff;
}

.home-about__milestone-value {
    display: inline-flex;
    align-items: baseline;
    font-family: Saira, Quicksand, sans-serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.home-about__milestone-value em {
    margin-left: 2px;
    font-style: normal;
    font-size: 0.72em;
    color: rgba(255, 255, 255, 0.92);
}

.home-about__milestone-label {
    display: block;
    max-width: 9rem;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
}

.home-about__milestone.is-counting .home-about__milestone-inner {
    animation: ha-milestone-pulse 0.7s ease;
}

@keyframes ha-milestone-glow {
    0%, 100% { transform: translate(-8%, -4%) scale(1); opacity: 0.7; }
    50% { transform: translate(10%, 6%) scale(1.08); opacity: 1; }
}

@keyframes ha-milestone-pulse {
    0% { transform: scale(1); }
    40% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.home-about__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.home-about__stats li {
    padding: 14px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--ha-line);
    text-align: center;
    box-shadow: 0 8px 20px rgba(112, 32, 130, 0.05);
}

.home-about__stats strong {
    display: block;
    font-family: Saira, Quicksand, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ha-purple);
    line-height: 1.2;
}

.home-about__stats span {
    display: block;
    margin-top: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ha-muted);
}

.home-about__skills-title {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ha-purple);
}

.home-about__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.home-about__skills li {
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--ha-line);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ha-ink);
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-about__skills li:hover {
    border-color: rgba(227, 28, 121, 0.35);
    color: var(--ha-pink);
    transform: translateY(-1px);
}

.home-about__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.home-about__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-about__btn:hover {
    transform: translateY(-1px);
}

.home-about__btn--primary {
    background: linear-gradient(137deg, #e31c79 0%, #702082 100%);
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(227, 28, 121, 0.28);
}

.home-about__btn--ghost {
    background: rgba(255, 255, 255, 0.75);
    color: var(--ha-deep) !important;
    border: 1px solid rgba(112, 32, 130, 0.18);
}

.home-about__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-about__links a {
    color: var(--ha-purple) !important;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none !important;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.home-about__links a:hover {
    color: var(--ha-pink) !important;
    border-bottom-color: rgba(227, 28, 121, 0.45);
}

[data-ha-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-ha-reveal].is-inview {
    opacity: 1;
    transform: none;
}

.home-about__visual[data-ha-reveal] {
    transform: translateY(28px) scale(0.98);
}

.home-about__visual[data-ha-reveal].is-inview {
    transform: none;
}

@keyframes ha-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(16px); }
}

@keyframes ha-shine {
    0%, 55%, 100% { transform: translateX(-120%); }
    70% { transform: translateX(120%); }
}

@keyframes ha-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 991.98px) {
    .home-about__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .home-about__frame {
        max-width: 380px;
    }

    .home-about__badge {
        left: 12px;
        right: 12px;
        max-width: none;
        bottom: 20px;
    }

    .home-about__ring {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .home-about {
        padding: 40px 0 48px;
    }

    .home-about__stats {
        grid-template-columns: 1fr;
    }

    .home-about__milestone,
    .home-about__milestone-inner {
        width: 100%;
        min-width: 0;
    }

    .home-about__milestone-inner {
        justify-content: flex-start;
    }

    .home-about__actions {
        flex-direction: column;
    }

    .home-about__btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-about__orb,
    .home-about__shine,
    .home-about__ring,
    [data-ha-reveal],
    .home-about__frame img {
        animation: none !important;
        transition: none !important;
    }

    [data-ha-reveal] {
        opacity: 1;
        transform: none;
    }
}
