/* WebVerse — About Page */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,900;1,300&family=DM+Sans:wght@300;400;500;600&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #F7F5F2;
    font-family: 'DM Sans', sans-serif;
}

.wa-main {
    padding: 3rem 5%;
}

.wa-container {
    max-width: 860px;
    margin: 0 auto;
}

/* Hero */
.wa-hero {
    margin-bottom: 3rem;
}

.wa-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E8430A;
    margin-bottom: 1rem;
}

.wa-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: #E8430A;
    border-radius: 50%;
    animation: waPulse 2s ease-in-out infinite;
}

.wa-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #0f0e0c;
    line-height: 1.05;
    margin-bottom: 1.2rem;
}

.wa-title em {
    font-style: italic;
    font-weight: 300;
    color: #E8430A;
}

.wa-lead {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(15, 14, 12, 0.65);
    line-height: 1.75;
    max-width: 640px;
}

/* Divider */
.wa-divider {
    height: 1px;
    background: rgba(15, 14, 12, 0.08);
    margin: 2.5rem 0;
}

/* Stats */
.wa-stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(15, 14, 12, 0.07);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 14, 12, 0.05);
}

.wa-stat {
    flex: 1;
    padding: 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 140px;
}

.wa-stat strong {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f0e0c;
    letter-spacing: -0.03em;
}

.wa-stat span {
    font-size: 0.78rem;
    color: rgba(15, 14, 12, 0.45);
}

.wa-stat-sep {
    width: 1px;
    height: 50px;
    background: rgba(15, 14, 12, 0.07);
}

/* Grid blocks */
.wa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.wa-block {
    background: #fff;
    border-radius: 16px;
    padding: 1.6rem;
    border: 1px solid rgba(15, 14, 12, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(15, 14, 12, 0.09);
}

.wa-block__icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 0.85rem;
}

.wa-block__title {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f0e0c;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.wa-block__text {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(15, 14, 12, 0.6);
    line-height: 1.75;
}

/* Contact strip */
.wa-contact {
    background: #0f0e0c;
    border-radius: 16px;
    padding: 1.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.wa-contact__left h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.wa-contact__left p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.wa-contact__right {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.wa-contact__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.55rem 1rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.wa-contact__link:hover {
    background: #E8430A;
    color: #fff;
    border-color: #E8430A;
}

/* Keyframes */
@keyframes waPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(1.6);
    }
}

/* Responsive */
@media (max-width: 640px) {
    .wa-grid {
        grid-template-columns: 1fr;
    }

    .wa-stats {
        flex-direction: column;
    }

    .wa-stat-sep {
        width: 80%;
        height: 1px;
    }

    .wa-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .wa-main {
        padding: 2rem 4%;
    }
}