:root {
    --bg: #0b0d10;
    --card: #12151a;
    --cardSoft: #0f1217;
    --border: #1f2937;
    --text: #f9fafb;
    --muted: #9ca3af;
    --hover: #1f2937;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Inter, sans-serif;
    background: radial-gradient(circle at top, #0f1217, #0b0d10);
    color: var(--text);
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--bg);
}

.container {
    width: 100%;
    max-width: 27rem;
    animation: fadeUp .6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(0.875rem)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* CARD */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.75rem;
    padding: 1.5rem;
    box-shadow: 0 1.875rem 5rem rgba(0, 0, 0, .6);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.06),
            transparent);
    opacity: 0;
    transition: .4s;
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
}


/* HEADER */

.header {
    text-align: center;
    position: relative;
    padding-bottom: 1.25rem;
}

.header::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
}


.logo {
    position: relative;
}

.logo::after {
    content: "";
    position: absolute;
    inset: -18%;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, .08),
            transparent 60%);
    opacity: .4;
    animation: logoGlow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes logoGlow {

    0%,
    100% {
        opacity: .3;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.05);
    }
}




.logo {
    width: 8.5rem;
    margin: 0 auto 0.875rem
}

.logo img {
    width: 100%;
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}


.header p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5
}























/* ===== FOUNDER PROFILE CARD ===== */

.founderCard {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Avatar */
.founderCard .avatar {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    object-fit: cover;
}

/* Ring animation stays */
.founderCard .avatarWrap {
    margin-bottom: 0.75rem;
}

.founderCard .avatarWrap::after {
    inset: -0.35rem;
    border-radius: 50%;
}

/* Name + role */
.founderInfo strong {
    font-size: 0.95rem;
    letter-spacing: .01em;
}

.founderInfo span {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.15rem;
    display: block;
}

/* Actions row */
.founderActions {
    margin-top: 0.85rem;
    display: flex;
    gap: 0.65rem;
    justify-content: center;
}

/* Buttons (already good, just minor polish) */
.founderActions a {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #0b0d10;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    transition: .25s ease;
    text-decoration: none;
}

/* Hover / tap */
.founderActions a:hover {
    transform: translateY(-2px);
    background: var(--hover);
}

/* Soft halo */
/* .founderActions a::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    opacity: 0;
    transition: .3s;
} */

.founderActions a:hover::after {
    opacity: 1;
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .3s;
}

















/* SECTION */
.section {
    margin-top: 1.375rem;
    background: var(--cardSoft);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 1rem;
    display: grid;
    gap: 0.875rem;
}

.sectionTitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: #e5e7eb;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.row {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.row i {
    color: #e5e7eb;
    margin-top: 0.125rem;
}

.row strong {
    font-size: 0.875rem
}

.row span {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.125rem;
    display: block;
}

.infoInteractive .infoRow {
    padding: 0.6rem 0.5rem;
    border-radius: 0.75rem;
    transition: .25s ease;
}

.infoInteractive .infoRow:hover {
    background: rgba(255, 255, 255, .03);
}

.infoRow i {
    transition: transform .3s ease;
}

.linkRow:hover i:first-child {
    transform: translateY(-1px);
}



.linkRow {
    text-decoration: none;
    color: inherit;
    position: relative;
}

.linkRow .arrow {
    margin-left: auto;
    font-size: 0.7rem;
    opacity: .5;
    transition: .25s;
    animation: nudge 2.5s ease-in-out infinite;
}

@keyframes nudge {

    0%,
    100% {
        transform: translateX(0);
        opacity: .6;
    }

    50% {
        transform: translateX(4px);
        opacity: 1;
    }
}

.linkRow:hover .arrow {
    opacity: 1;
    transform: translateX(0.15rem);
}




/* COMPANY WEBSITES */
.brandStack {
    display: grid;
    gap: 0.75rem;
}

.brandLink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem;
    border-radius: 1.125rem;
    background: #0b0d10;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: .25s;
}

.brandLink:hover {
    background: var(--hover);
    transform: translateY(-0.125rem);
}

.brandLeft {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.brandIcon {
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 0.875rem;
    background: var(--cardSoft);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brandIcon img {
    width: 1.25rem
}

.brandText strong {
    font-size: 0.875rem
}

.brandText span {
    font-size: 0.75rem;
    color: var(--muted);
    display: block;
}

/* BADGES */
.badges {
    margin-top: 1.375rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
}

.badge {
    padding: 0.45rem 0.875rem;
    font-size: 0.7rem;
    border-radius: 999px;
    background: var(--cardSoft);
    border: 1px solid var(--border);
    color: #d1d5db;
}

/* FOOTER */
.footer {
    margin-top: 1.375rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
}




.brandIcon i.fa-instagram {
    color: #e1306c
}

.brandIcon i.fa-linkedin-in {
    color: #0a66c2
}

.brandLink .fa-instagram {
    animation: instaFloat 4s ease-in-out infinite;
}

.brandLink .fa-linkedin-in {
    animation: linkedPulse 3.5s ease-in-out infinite;
}

@keyframes instaFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@keyframes linkedPulse {

    0%,
    100% {
        opacity: .7;
    }

    50% {
        opacity: 1;
    }
}



.brandLink,
.infoRow {
    will-change: transform;
}

.brandLink:active,
.linkRow:active {
    transform: scale(.985);
}


.extArrow {
    opacity: .45;
    font-size: .75rem;
    animation: extPulse 3s ease-in-out infinite;
}

@keyframes extPulse {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: .45;
    }

    50% {
        transform: translate(3px, -3px);
        opacity: .8;
    }
}

.brandLink:hover .extArrow {
    animation: none;
    opacity: 1;
}







/* =========================
            MOBILE OPTIMIZATION
        ========================= */
@media (max-width: 420px) {

    body {
        padding: 0rem;
    }

    .container {
        max-width: 100%;
    }

    .card {
        padding: 1.25rem;
        border-radius: 1.5rem;
    }

    /* HEADER */
    .logo {
        width: 8.5rem;
        margin-bottom: 0.75rem;
    }

    .header p {
        font-size: 0.75rem;
    }

    /* FOUNDER */
    .avatar {
        width: 4.5rem;
        height: 4.5rem;
    }

    .avatarWrap::after {
        inset: -0.2rem;
    }



    /* SECTIONS */
    .section {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .row {
        gap: 0.75rem;
    }

    .row strong {
        font-size: 0.82rem;
    }

    .row span {
        font-size: 0.72rem;
    }



    /* BADGES */
    .badge {
        font-size: 0.68rem;
        padding: 0.4rem 0.75rem;
    }

    /* FOOTER */
    .footer {
        font-size: 0.7rem;
    }
}