/* =====================================================
   GLYPHERE — ABOUT PAGE STYLES
   ===================================================== */

/* ─────────────────────────────────────────
   MAIN WRAPPER
───────────────────────────────────────── */
.abt-main {
    padding: 0 2.5rem;
    background: var(--color-background);
}

/* ─────────────────────────────────────────
   HERO SECTION (two-column)
───────────────────────────────────────── */
.abt-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10rem 0 5rem;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
}

.abt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    opacity: 0.9;
}

.abt-eyebrow::before,
.abt-eyebrow::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.abt-hero__text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.abt-hero__name {
    font-family: var(--font-headline);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--color-primary);
}

.abt-hero__name span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.abt-hero__bio {
    color: var(--color-on-surface-variant);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.8;
    max-width: 520px;
}

.abt-hero__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(34, 134, 58, 0.08);
    border: 1px solid rgba(34, 134, 58, 0.2);
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #22863a;
    width: fit-content;
}

.abt-hero__status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22863a;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.abt-hero__photo-wrap {
    position: relative;
}

.abt-hero__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 1.5rem;
    filter: grayscale(0.15) contrast(1.05);
    transition: filter 0.4s;
}

.abt-hero__photo:hover {
    filter: grayscale(0) contrast(1);
}

.abt-hero__photo-frame {
    position: absolute;
    inset: -10px;
    border-radius: 1.75rem;
    border: 1px solid rgba(201, 171, 129, 0.25);
    pointer-events: none;
}

/* ─────────────────────────────────────────
   PHILOSOPHY SECTION (dark)
───────────────────────────────────────── */
.abt-philosophy {
    background: var(--color-gradient);
    padding: 5rem 0;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    position: relative;
    overflow: hidden;
}

.abt-philosophy::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201, 171, 129, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.abt-philosophy__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.abt-philosophy__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.abt-philosophy__title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.0;
    color: #f2e7d5;
    margin-top: 0.75rem;
}

.abt-philosophy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Reuse service-card style for philosophy cards */
.abt-phil-card {
    padding: 1.5px;
    border-radius: 1.25rem;
    background: linear-gradient(160deg, rgba(214, 166, 90, 0.14), rgba(255, 255, 255, 0.01));
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.abt-phil-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.abt-philosophy__grid .abt-phil-card:nth-child(1) {
    transition-delay: 0.00s;
}

.abt-philosophy__grid .abt-phil-card:nth-child(2) {
    transition-delay: 0.12s;
}

.abt-philosophy__grid .abt-phil-card:nth-child(3) {
    transition-delay: 0.24s;
}

.abt-phil-card__inner {
    height: 100%;
    background: var(--color-on-gradient);
    border-radius: 1.2rem;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 230, 190, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.3s, border-color 0.3s, transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s;
}

.abt-phil-card:hover .abt-phil-card__inner {
    background: #221e18;
    border-color: rgba(201, 171, 129, 0.18);
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 171, 129, 0.08);
}

.abt-phil-card__number {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(201, 171, 129, 0.15);
    letter-spacing: -0.05em;
    line-height: 1;
}

.abt-phil-card__title {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #f2e7d5;
}

.abt-phil-card__desc {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--body-text-on-gradient);
}

/* ─────────────────────────────────────────
   SKILLS & TOOLS SECTION
───────────────────────────────────────── */
.abt-skills {
    padding: 5rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.abt-skills__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.abt-skills__title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--color-primary);
    margin-top: 0.75rem;
}

.abt-skills__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.abt-skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 100px;
    background: var(--color-surface-container-low);
    border: 1px solid var(--color-outline-variant);
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-on-surface);
    transition: background 0.2s, border-color 0.2s, transform 0.25s;
    cursor: default;
}

.abt-skill-tag:hover {
    background: var(--color-primary);
    color: var(--color-on-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.abt-skill-tag--gold {
    background: rgba(201, 171, 129, 0.1);
    border-color: rgba(201, 171, 129, 0.3);
    color: var(--gold-dark);
}

.abt-skill-tag--gold:hover {
    background: var(--gold);
    color: var(--color-primary);
    border-color: var(--gold);
}

/* ─────────────────────────────────────────
   STATS SECTION
───────────────────────────────────────── */
.abt-stats {
    padding: 3rem 0 5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.abt-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.abt-stat {
    padding: 2rem 1rem;
    border-radius: 1.25rem;
    background: var(--color-surface-container-low);
    border: 1px solid var(--color-outline-variant);
    transition: transform 0.3s, box-shadow 0.3s;
}

.abt-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(17, 17, 17, 0.08);
}

.abt-stat__number {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--color-primary);
    line-height: 1;
}

.abt-stat__number span {
    color: var(--gold);
}

.abt-stat__label {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-on-surface-variant);
    margin-top: 0.5rem;
}

/* ─────────────────────────────────────────
   CONNECT SECTION (dark)
───────────────────────────────────────── */
.abt-connect {
    background: var(--color-gradient);
    padding: 5rem 0;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    position: relative;
    overflow: hidden;
}

.abt-connect::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201, 171, 129, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.abt-connect__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.abt-connect__title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    color: #f2e7d5;
}

.abt-connect__desc {
    color: var(--body-text-on-gradient);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 480px;
}

.abt-connect__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 0.5rem;
}

.abt-connect__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 171, 129, 0.2);
    color: #f2e7d5;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.abt-connect__link:hover {
    background: rgba(201, 171, 129, 0.12);
    border-color: rgba(201, 171, 129, 0.4);
    transform: translateY(-2px);
}

.abt-connect__link .material-symbols-outlined {
    font-size: 18px;
    color: var(--gold);
}

/* ─────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────── */
.abt-cta {
    padding: 4rem 0;
}

.abt-cta__banner {
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
}

.abt-cta__title {
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-family: var(--font-headline);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    color: var(--color-primary);
}

.abt-cta__subtitle {
    font-size: clamp(1rem, 2vw, 1.375rem);
    color: var(--color-secondary);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* ─────────────────────────────────────────
   FREELANCE PROFILES SECTION
───────────────────────────────────────── */
.abt-freelance {
    padding: 5rem 0;
    max-width: 1100px;
    margin: 0 auto;
}

.abt-freelance__header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.abt-freelance__title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--color-primary);
    line-height: 1.05;
    margin-top: 0.25rem;
}

.abt-freelance__subtitle {
    color: var(--color-on-surface-variant);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 520px;
}

.abt-freelance__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* ── Platform Cards ── */
.abt-fl-card {
    border-radius: 1.5rem;
    padding: 2px;
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.abt-fl-card--upwork {
    background: linear-gradient(145deg, rgba(46, 39, 32, 0.45) 0%, rgba(46, 39, 32, 0.08) 60%, transparent 100%);
}

.abt-fl-card--fiverr {
    background: linear-gradient(145deg, rgba(201, 171, 129, 0.55) 0%, rgba(201, 171, 129, 0.08) 60%, transparent 100%);
}

.abt-fl-card:hover {
    transform: translateY(-6px);
}

.abt-fl-card__inner {
    height: 100%;
    border-radius: 1.35rem;
    background: var(--color-surface-container-low);
    border: 1px solid var(--color-outline-variant);
    padding: 2rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: border-color 0.3s, box-shadow 0.35s;
}

.abt-fl-card--upwork:hover .abt-fl-card__inner {
    border-color: rgba(46, 39, 32, 0.35);
    box-shadow: 0 20px 60px rgba(46, 39, 32, 0.08), 0 0 0 1px rgba(46, 39, 32, 0.1);
}

.abt-fl-card--fiverr:hover .abt-fl-card__inner {
    border-color: rgba(201, 171, 129, 0.4);
    box-shadow: 0 20px 60px rgba(201, 171, 129, 0.12), 0 0 0 1px rgba(201, 171, 129, 0.15);
}

/* ── Card Header ── */
.abt-fl-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.abt-fl-card__logo-wrap {
    flex-shrink: 0;
}

.abt-fl-card__logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    filter: grayscale(1) contrast(0.9) opacity(0.85);
    transition: filter 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-fl-card:hover .abt-fl-card__logo {
    filter: grayscale(0) contrast(1) opacity(1);
}

.abt-fl-card__platform-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.abt-fl-card__platform-name {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--color-primary);
    line-height: 1;
}

/* ── Badges ── */
.abt-fl-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 100px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
}

.abt-fl-badge svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.abt-fl-badge--toprated {
    background: rgba(46, 39, 32, 0.06);
    border: 1px solid rgba(46, 39, 32, 0.2);
    color: var(--color-on-primary-fixed-variant);
}

.abt-fl-badge--level2 {
    background: rgba(201, 171, 129, 0.12);
    border: 1px solid rgba(201, 171, 129, 0.3);
    color: var(--gold-dark);
}

/* ── Card Body ── */
.abt-fl-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.abt-fl-card__title {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-primary);
    line-height: 1.2;
}

.abt-fl-card__desc {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.84375rem;
    line-height: 1.7;
    color: var(--color-on-surface-variant);
    font-weight: 400;
}

/* ── Card Meta ── */
.abt-fl-card__meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 0.5rem;
    margin-top: auto;
}

.abt-fl-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.abt-fl-meta-item__stars {
    color: #f5a623;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.abt-fl-meta-item__label {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-on-surface-variant);
    letter-spacing: 0.02em;
}

/* ── CTA Button ── */
.abt-fl-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 22px;
    border-radius: 100px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: opacity 0.2s, transform 0.25s, box-shadow 0.25s;
    width: 100%;
    text-align: center;
}

.abt-fl-card__cta--upwork {
    background: var(--color-primary);
    color: var(--color-on-primary);
    box-shadow: 0 4px 20px rgba(17, 17, 17, 0.15);
}

.abt-fl-card__cta--upwork:hover {
    background: var(--color-primary-container);
    color: var(--color-on-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(46, 39, 32, 0.25);
}

.abt-fl-card__cta--fiverr {
    background: var(--gold);
    color: var(--color-on-primary-fixed);
    box-shadow: 0 4px 20px rgba(201, 171, 129, 0.25);
}

.abt-fl-card__cta--fiverr:hover {
    background: var(--gold-dark);
    color: var(--color-on-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(138, 108, 62, 0.35);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
    .abt-hero {
        grid-template-columns: 1fr 320px;
        gap: 3rem;
    }

    .abt-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abt-freelance {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .abt-main {
        padding: 0 1.5rem;
    }

    .abt-philosophy,
    .abt-connect {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .abt-philosophy__inner,
    .abt-connect__inner {
        padding: 0 1.5rem;
    }

    .abt-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 7rem 0 3rem;
    }

    .abt-hero__text {
        align-items: center;
    }

    .abt-hero__bio {
        max-width: 100%;
    }

    .abt-hero__photo-wrap {
        max-width: 280px;
        margin: 0 auto;
        order: -1;
    }

    .abt-philosophy__grid {
        grid-template-columns: 1fr;
    }

    .abt-freelance__grid {
        grid-template-columns: 1fr;
    }

    .abt-freelance__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .abt-glyphs-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 560px) {
    .abt-main {
        padding: 0 1rem;
    }

    .abt-philosophy,
    .abt-connect {
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .abt-philosophy__inner,
    .abt-connect__inner {
        padding: 0 1rem;
    }

    .abt-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .abt-hero__name {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .abt-fl-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ═══════════════════════════════════════
   PREMIUM HIGH-FIDELITY INTERACTIVE STYLES
═══════════════════════════════════════ */
.abt-sound-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(201, 171, 129, 0.05);
    border: 1px solid rgba(201, 171, 129, 0.25);
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gold-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.abt-sound-btn:hover {
    background: rgba(201, 171, 129, 0.14);
    border-color: rgba(201, 171, 129, 0.45);
    transform: scale(1.03);
}

.abt-sound-btn.active {
    background: var(--gold);
    color: var(--color-primary);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(201, 171, 129, 0.3);
}

.abt-glyph-select-btn {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid var(--color-outline-variant);
    background: var(--color-surface-container-low);
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abt-glyph-select-btn:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.abt-glyph-select-btn.active {
    background: var(--gold);
    color: var(--color-primary);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(201, 171, 129, 0.25);
}

.abt-hero__photo-wrap {
    perspective: 1000px;
}

.abt-hero__photo {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s;
}

.abt-hero__photo-wrap:hover .abt-hero__photo {
    transform: scale(1.025) rotateY(4deg) rotateX(2deg);
}

@keyframes breatheGlow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0px rgba(34, 134, 58, 0.4);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(34, 134, 58, 0);
    }
}

.abt-hero__status-dot {
    animation: breatheGlow 2s infinite cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Upwork/Fiverr cards shine reflection overlay style */
.abt-fl-card {
    position: relative;
    overflow: hidden;
}

.abt-fl-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(201, 171, 129, 0.08), transparent 40%);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.abt-fl-card:hover::after {
    opacity: 1;
}