.about-page {
    --page-scroll-padding-bottom: 100px;
    --page-shell-max-width: 900px;
    --page-shell-padding-top: 0;
    --page-shell-padding-bottom: 0;
    --page-hero-padding-top: 30px;
    --page-hero-padding-bottom: 80px;
    --page-hero-margin-bottom: 0;
    --page-hero-title-size: clamp(3rem, 8vw, 5.5rem);
    --page-hero-desc-max-width: 600px;
    --page-hero-desc-size: 1.2rem;
}

    .about-page .page-hero__title span {
        display: block;
        font-style: italic;
        font-weight: 400;
        color: #777;
    }

.blacklist {
    background: rgba(255, 255, 255, 0.82);
    padding: 64px 44px;
    border-radius: 30px;
    box-shadow: 0 34px 90px -54px rgba(0, 0, 0, 0.16);
    position: relative;
    margin-bottom: 120px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

    .blacklist::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--color-primary), transparent);
    }

.blacklist-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.blacklist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
    font-family: var(--font-family-serif);
    font-size: 1.2rem;
    color: #ccc;
    position: relative;
    transition: 0.4s;
    cursor: default;
}

    .blacklist-item span {
        position: relative;
        z-index: 2;
        transition: 0.3s;
    }

    .blacklist-item::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 0%;
        height: 1px;
        background: var(--color-primary);
        transition: width 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .blacklist-item:hover::after {
        width: 100%;
    }

    .blacklist-item:hover span {
        color: #111;
    }

.x-mark {
    font-family: var(--font-family-sans);
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--color-primary);
    transform: rotate(45deg);
    opacity: 0.5;
}

.process-header {
    margin-bottom: 52px;
    padding-left: 24px;
    border-left: 2px solid var(--color-primary);
}

.process-title {
    font-family: var(--font-family-serif);
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--color-text-main);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.92);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
    box-shadow: 0 24px 60px -40px rgba(0, 0, 0, 0.18);
}

    .card:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 30px 70px -36px rgba(185, 28, 28, 0.16);
        border-color: rgba(185, 28, 28, 0.1);
    }

.card-num {
    position: absolute;
    top: -30px;
    right: -10px;
    font-family: var(--font-family-serif);
    font-size: 9rem;
    line-height: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    transition: 0.6s;
}

.card:hover .card-num {
    transform: translateY(10px) rotate(-5deg);
    opacity: 0.8;
}

.geo-shape {
    width: 40px;
    height: 40px;
    border: 1px solid #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.shape-fill {
    background: var(--color-primary);
}

.s-sq {
    width: 10px;
    height: 10px;
}

.s-ci {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.s-tr {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid var(--color-primary);
    background: none;
}

.s-di {
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
}

.card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--color-text-main);
    opacity: 0.6;
    display: block;
    margin-bottom: 10px;
}

.card-head {
    font-family: var(--font-family-serif);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--color-text-main);
}

.card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.match-section {
    margin-top: 120px;
    margin-bottom: 104px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.match-info {
    text-align: center;
    max-width: 450px;
}

.match-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.match-title {
    font-family: var(--font-family-serif);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-text-main);
}

.match-desc {
    margin: 0;
    max-width: 400px;
    font-size: 1rem;
    text-align: inherit;
}

.match-card {
    background: #1a1a1a;
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    padding: 30px;
    color: #fff;
    position: relative;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    overflow: hidden;
    transform: rotate(-2deg);
    transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

    .match-card:hover {
        transform: rotate(0deg) scale(1.02);
        box-shadow: 0 40px 80px -20px rgba(185, 28, 28, 0.2);
        border-color: var(--color-primary);
    }

.mc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.mc-badge {
    background: rgba(185, 28, 28, 0.2);
    color: var(--color-primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mc-fingerprint {
    color: #555;
    font-size: 1.5rem;
}

.mc-scores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    border-bottom: 1px solid #333;
    padding-bottom: 25px;
}

.score-box {
    text-align: center;
}

    .score-box.primary {
        position: relative;
    }

        .score-box.primary::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 10%;
            height: 80%;
            width: 1px;
            background: #333;
        }

.sb-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.sb-value {
    font-family: var(--font-family-serif);
    line-height: 1;
    display: block;
}

.val-vibe {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.val-look {
    font-size: 2.8rem;
    color: #aaa;
    margin-top: 5px;
}

.mc-challenges {
    text-align: left;
    width: 100%;
}

.mc-chal-title {
    font-size: 0.75rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chal-tag {
    font-size: 0.8rem;
    color: #ccc;
    border: 1px solid #444;
    padding: 6px 14px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    font-family: var(--font-family-sans);
}

.mc-footer {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mc-waiting {
    color: #fff;
    font-weight: 600;
}

.privacy-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.privacy-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 36px -28px rgba(0, 0, 0, 0.16);
}

.pb-icon {
    font-size: 1.2rem;
    color: #555;
}

.pb-text {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
    text-align: left;
    line-height: 1.5;
}

    .pb-text strong {
        color: #000;
    }

.cta-section {
    margin-top: 80px;
    padding: 80px 40px;
    text-align: center;
    background: #111;
    border-radius: 30px;
    color: #fff;
    position: relative;
}

.cta-head {
    font-family: var(--font-family-serif);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.cta-sub {
    color: #888;
    margin-bottom: 40px;
}

.magic-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    font-family: var(--font-family-sans) !important;
    background: #fff;
    color: #111;
    border: none;
    padding: 18px 45px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, letter-spacing 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

    .magic-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(255, 255, 255, 0.14);
        letter-spacing: 2.4px;
    }

    .magic-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        left: -120%;
        z-index: -1;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
        transition: left 0.55s ease;
    }

    .magic-btn:hover::before {
        left: 120%;
    }

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .card:nth-child(even) {
        margin-top: 60px;
    }

    .match-section {
        flex-direction: row;
        justify-content: center;
        gap: 80px;
        align-items: center;
        text-align: left;
    }

    .match-info {
        text-align: left;
    }

    .match-title {
        text-align: left;
    }
}

.about-further-reading {
    display: flex;
    justify-content: center;
    margin-top: 56px;
    padding-bottom: 12px;
}

.about-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.72);
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 16px 30px -24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-standard);
}

    .about-link:hover {
        color: var(--color-primary);
        border-color: rgba(185, 28, 28, 0.18);
        transform: translateY(-2px);
    }

    .about-link i {
        font-size: 0.9rem;
    }

@media (max-width: 768px) {
    .blacklist {
        padding: 40px 22px;
        border-radius: 24px;
        margin-bottom: 84px;
    }

    .cta-section {
        padding: 56px 24px;
        border-radius: 24px;
    }

    .about-further-reading {
        margin-top: 32px;
    }

    .about-links {
        width: 100%;
        flex-direction: column;
    }

    .about-link {
        width: 100%;
    }
}
