:root {
    --bg: #070812;
    --bg-2: #0c0f1d;

    --purple: #8b5cf6;
    --purple-light: #c4b5fd;

    --blue: #3b82f6;
    --cyan: #22d3ee;

    --text: #f8fafc;
    --text-soft: #a3a8b8;
    --text-muted: #747b8e;

    --surface: rgba(255, 255, 255, .052);
    --surface-hover: rgba(255, 255, 255, .085);

    --border: rgba(255, 255, 255, .105);
    --border-accent: rgba(139, 92, 246, .35);

    --radius: 20px;
    --radius-small: 15px;

    --smooth: cubic-bezier(.16, 1, .3, 1);
    --spring: cubic-bezier(.175, .885, .32, 1.1);

    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);

    /* JS automatically updates this */
    --hint-space: 0px;
}


/* =====================================
   RESET
===================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    color-scheme: dark;

    -webkit-text-size-adjust: 100%;

    scroll-behavior: smooth;
}


body {
    min-height: 100vh;
    min-height: 100svh;

    overflow-x: hidden;

    display: flex;

    justify-content: center;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(139, 92, 246, .13),
            transparent 32%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    -webkit-font-smoothing: antialiased;

    text-rendering: optimizeLegibility;

    -webkit-tap-highlight-color: transparent;

    overscroll-behavior-y: none;
}


a,
button {
    font: inherit;
}


button {
    color: inherit;
}


/* =====================================
   BACKGROUND
===================================== */

.aurora-bg {
    position: fixed;

    inset: 0;

    z-index: -2;

    overflow: hidden;

    pointer-events: none;

    filter: blur(60px);

    opacity: .52;

    transform: translateZ(0);
}


.orb {
    position: absolute;

    border-radius: 999px;

    will-change: transform;

    animation:
        drift 17s
        ease-in-out
        infinite alternate;
}


.orb-1 {
    width: min(75vw, 550px);

    aspect-ratio: 1;

    top: -16%;
    left: -20%;

    background:
        radial-gradient(
            circle,
            rgba(139, 92, 246, .95),
            transparent 69%
        );
}


.orb-2 {
    width: min(85vw, 620px);

    aspect-ratio: 1;

    right: -28%;
    bottom: -20%;

    background:
        radial-gradient(
            circle,
            rgba(59, 130, 246, .78),
            transparent 70%
        );

    animation-delay: -6s;
}


.orb-3 {
    width: min(55vw, 380px);

    aspect-ratio: 1;

    top: 40%;
    left: 35%;

    background:
        radial-gradient(
            circle,
            rgba(34, 211, 238, .42),
            transparent 70%
        );

    animation-delay: -11s;
}


body::after {
    content: "";

    position: fixed;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    opacity: .022;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


@keyframes drift {

    from {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    to {
        transform:
            translate3d(40px, -32px, 0)
            scale(1.08);
    }

}


/* =====================================
   MAIN CONTAINER
===================================== */

.app-container {
    position: relative;

    width: 100%;

    max-width: 520px;

    padding-top:
        calc(30px + var(--safe-top));

    padding-right: 22px;

    /*
        IMPORTANT FIX:

        --hint-space becomes the height
        of the floating browser tip.

        This prevents the footer from
        ever being covered by it.
    */
    padding-bottom:
        calc(
            50px +
            var(--safe-bottom) +
            var(--hint-space)
        );

    padding-left: 22px;

    display: flex;

    flex-direction: column;

    gap: 24px;

    transition:
        padding-bottom
        .35s
        var(--smooth);
}


/* =====================================
   SHARE BUTTON
===================================== */

.share-btn {
    position: absolute;

    top:
        calc(20px + var(--safe-top));

    right: 22px;

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .045);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

    cursor: pointer;

    z-index: 10;

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, .04),

        0 10px 30px
        rgba(0, 0, 0, .18);

    transition:
        transform .25s var(--spring),
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.share-btn svg {
    width: 18px;
    height: 18px;
}


.share-btn:hover,
.share-btn:active {
    transform:
        translateY(-2px);

    color:
        var(--purple-light);

    border-color:
        var(--border-accent);

    background:
        rgba(139, 92, 246, .12);
}


/* =====================================
   PROFILE
===================================== */

.header {
    text-align: center;

    padding-top: 3px;
}


.profile-container {
    display: inline-block;
}


.profile-img {
    width: 104px;
    height: 104px;

    object-fit: cover;

    border-radius: 31px;

    margin-bottom: 17px;

    border:
        1px solid
        rgba(255, 255, 255, .14);

    box-shadow:
        0 0 0 5px
        rgba(139, 92, 246, .08),

        0 20px 45px
        rgba(0, 0, 0, .36);

    transform:
        rotate(-2deg);

    transition:
        transform .3s var(--spring),
        box-shadow .3s ease;
}


.profile-img:hover {
    transform:
        rotate(0deg)
        scale(1.035);

    box-shadow:
        0 0 0 6px
        rgba(139, 92, 246, .12),

        0 23px 50px
        rgba(0, 0, 0, .42);
}


.profile-fallback {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 42px;

    font-weight: 800;

    color:
        var(--purple-light);

    background:
        linear-gradient(
            145deg,
            #16192d,
            #090b15
        );
}


.name {
    font-size: 27px;

    font-weight: 850;

    letter-spacing: -.65px;
}


.professional-title {
    margin-top: 7px;

    color: #c8cbd6;

    font-size: 13.5px;

    font-weight: 550;

    line-height: 1.6;
}


.professional-title span {
    margin: 0 4px;

    color:
        rgba(196, 181, 253, .65);
}


.intro {
    max-width: 340px;

    margin:
        6px auto 0;

    color:
        var(--text-soft);

    font-size: 13.5px;

    line-height: 1.6;
}


/* =====================================
   SOCIAL BUTTONS
===================================== */

.social-bar {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: -7px;
}


.social-link {
    width: 44px;
    height: 44px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    border:
        1px solid
        var(--border);

    color: var(--text);

    text-decoration: none;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .065),
            rgba(255, 255, 255, .025)
        );

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, .04),

        0 8px 22px
        rgba(0, 0, 0, .13);

    transition:
        transform .25s var(--spring),
        color .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.social-link svg {
    width: 20px;
    height: 20px;
}


.social-link:hover,
.social-link:active {
    transform:
        translateY(-3px)
        scale(1.04);

    color:
        var(--purple-light);

    border-color:
        rgba(139, 92, 246, .4);

    background:
        linear-gradient(
            145deg,
            rgba(139, 92, 246, .17),
            rgba(59, 130, 246, .08)
        );

    box-shadow:
        0 10px 27px
        rgba(79, 70, 229, .17);
}


/* =====================================
   CURRENTLY CREATING
===================================== */

.now-card {
    padding: 16px;

    border-radius:
        var(--radius);

    border:
        1px solid
        rgba(139, 92, 246, .2);

    background:
        linear-gradient(
            145deg,
            rgba(139, 92, 246, .10),
            rgba(59, 130, 246, .045)
        );

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, .04),

        0 12px 35px
        rgba(0, 0, 0, .12);
}


.now-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 14px;
}


.now-status {
    display: flex;

    align-items: center;

    gap: 7px;

    color:
        var(--purple-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .11em;
}


.live-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #a78bfa;

    box-shadow:
        0 0 12px
        rgba(167, 139, 250, .8);

    animation:
        pulse 1.8s
        ease-in-out
        infinite;
}


@keyframes pulse {

    0%,
    100% {
        opacity: 1;

        transform: scale(1);
    }

    50% {
        opacity: .45;

        transform: scale(.75);
    }

}


.now-badge {
    padding:
        5px 8px;

    border-radius: 999px;

    color: #c4b5fd;

    font-size: 9px;

    font-weight: 750;

    letter-spacing: .07em;

    background:
        rgba(139, 92, 246, .12);

    border:
        1px solid
        rgba(139, 92, 246, .15);
}


.now-content {
    display: flex;

    align-items: center;

    gap: 13px;
}


.now-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    border-radius: 14px;

    color:
        var(--purple-light);

    background:
        rgba(139, 92, 246, .11);

    border:
        1px solid
        rgba(139, 92, 246, .16);
}


.now-icon svg {
    width: 22px;
    height: 22px;
}


.now-content h2 {
    font-size: 15px;

    font-weight: 700;
}


.now-content p {
    margin-top: 3px;

    color:
        var(--text-soft);

    font-size: 12.5px;

    line-height: 1.45;
}


/* =====================================
   TABS
===================================== */

.segmented-control {
    position: relative;

    display: flex;

    padding: 5px;

    border-radius: 999px;

    border:
        1px solid
        var(--border);

    background:
        rgba(4, 5, 12, .52);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, .025);
}


.segment-btn {
    flex: 1;

    position: relative;

    z-index: 2;

    padding: 11px 0;

    border: 0;

    background:
        transparent;

    color:
        var(--text-soft);

    cursor: pointer;

    font-size: 14px;

    font-weight: 650;

    transition:
        color .25s ease;
}


.segment-btn.active {
    color:
        var(--text);
}


.slider {
    position: absolute;

    z-index: 1;

    top: 5px;
    left: 5px;

    width:
        calc(50% - 5px);

    height:
        calc(100% - 10px);

    border-radius:
        999px;

    border:
        1px solid
        rgba(139, 92, 246, .2);

    background:
        linear-gradient(
            135deg,
            rgba(139, 92, 246, .24),
            rgba(59, 130, 246, .17)
        );

    box-shadow:
        0 7px 20px
        rgba(0, 0, 0, .2),

        inset 0 1px 0
        rgba(255, 255, 255, .05);

    transition:
        transform .38s
        var(--spring);
}


/* =====================================
   VIEWS
===================================== */

.view-section {
    display: none;

    flex-direction: column;

    gap: 26px;
}


.view-section.active-view {
    display: flex;

    animation:
        slideUp .45s
        var(--smooth)
        both;
}


.view-section[hidden] {
    display:
        none !important;
}


@keyframes slideUp {

    from {
        opacity: 0;

        transform:
            translateY(10px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =====================================
   SECTION TITLES
===================================== */

.content-section {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.section-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;
}


.section-label {
    color:
        var(--text-soft);

    font-size: 10.5px;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.section-note {
    color:
        var(--text-muted);

    font-size: 11px;
}


/* =====================================
   FEATURED WORK
===================================== */

.featured-grid {
    display: grid;

    gap: 12px;
}


.project-card {
    overflow: hidden;

    border-radius:
        var(--radius);

    border:
        1px solid
        var(--border);

    background:
        rgba(255, 255, 255, .045);

    text-decoration: none;

    color:
        var(--text);

    transition:
        transform .3s var(--smooth),
        border-color .3s ease,
        box-shadow .3s ease;
}


.project-card:hover,
.project-card:active {
    transform:
        translateY(-3px);

    border-color:
        rgba(139, 92, 246, .34);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, .18);
}


.project-visual {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 8.4;

    overflow: hidden;

    display: flex;

    align-items: flex-end;

    isolation: isolate;
}


.project-visual::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;
}


.project-visual::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(5, 6, 14, .82),
            rgba(5, 6, 14, .05) 62%
        );
}


.project-visual img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -1;
}


.theme-documentary::before {
    background:
        radial-gradient(
            circle at 28% 20%,
            rgba(167, 139, 250, .95),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #17132c,
            #161f46 55%,
            #070812
        );
}


.theme-bali::before {
    background:
        radial-gradient(
            circle at 70% 22%,
            rgba(34, 211, 238, .72),
            transparent 28%
        ),

        radial-gradient(
            circle at 20% 70%,
            rgba(59, 130, 246, .68),
            transparent 34%
        ),

        linear-gradient(
            145deg,
            #081321,
            #132b47,
            #070812
        );
}


.theme-thailand::before {
    background:
        radial-gradient(
            circle at 70% 15%,
            rgba(139, 92, 246, .8),
            transparent 28%
        ),

        radial-gradient(
            circle at 25% 70%,
            rgba(59, 130, 246, .52),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #170d2c,
            #142039,
            #080912
        );
}


.project-visual-label {
    position: relative;

    z-index: 2;

    padding: 15px;

    color:
        rgba(255, 255, 255, .78);

    font-size: 9.5px;

    font-weight: 800;

    letter-spacing: .1em;

    text-transform: uppercase;
}


.project-body {
    padding:
        14px 15px 15px;
}


.project-meta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}


.project-category {
    color:
        var(--purple-light);

    font-size: 10.5px;

    font-weight: 700;

    letter-spacing: .04em;
}


.project-status {
    color:
        var(--text-muted);

    font-size: 10.5px;
}


.project-title {
    margin-top: 7px;

    font-size: 17px;

    font-weight: 700;

    letter-spacing: -.2px;
}


.project-description {
    margin-top: 5px;

    color:
        var(--text-soft);

    font-size: 12.5px;

    line-height: 1.5;
}


/* =====================================
   EXPLORE
===================================== */

.explore-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}


.explore-card {
    min-height: 118px;

    padding: 14px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-radius:
        var(--radius-small);

    border:
        1px solid
        var(--border);

    color:
        var(--text);

    text-decoration: none;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .055),
            rgba(255, 255, 255, .025)
        );

    transition:
        transform .25s var(--smooth),
        background .25s ease,
        border-color .25s ease;
}


.explore-card:hover,
.explore-card:active {
    transform:
        translateY(-2px);

    border-color:
        rgba(139, 92, 246, .28);

    background:
        linear-gradient(
            145deg,
            rgba(139, 92, 246, .09),
            rgba(59, 130, 246, .04)
        );
}


.explore-icon {
    width: 37px;
    height: 37px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color:
        var(--purple-light);

    background:
        rgba(139, 92, 246, .10);
}


.explore-icon svg {
    width: 19px;
    height: 19px;
}


.explore-card h3 {
    margin-top: 16px;

    font-size: 14px;

    font-weight: 650;
}


.explore-card p {
    margin-top: 3px;

    color:
        var(--text-muted);

    font-size: 11.5px;

    line-height: 1.4;
}


/* =====================================
   ABOUT
===================================== */

.about-card {
    padding: 18px;

    border-radius:
        var(--radius);

    border:
        1px solid
        var(--border);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .055),
            rgba(255, 255, 255, .025)
        );

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);
}


.about-card h3 {
    font-size: 16px;

    font-weight: 700;
}


.about-card p {
    margin-top: 8px;

    color:
        var(--text-soft);

    font-size: 13px;

    line-height: 1.65;
}


.availability {
    margin-top: 14px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #cbd5e1;

    font-size: 11.5px;

    font-weight: 600;
}


.availability-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #34d399;

    box-shadow:
        0 0 11px
        rgba(52, 211, 153, .52);
}


/* =====================================
   WORK WITH ME
===================================== */

.contact-card {
    position: relative;

    overflow: hidden;

    padding: 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 16px;

    border-radius:
        var(--radius);

    border:
        1px solid
        rgba(139, 92, 246, .25);

    text-decoration: none;

    color:
        var(--text);

    background:
        linear-gradient(
            135deg,
            rgba(139, 92, 246, .17),
            rgba(59, 130, 246, .09)
        );

    transition:
        transform .28s var(--smooth),
        border-color .28s ease,
        background .28s ease;
}


.contact-card:hover,
.contact-card:active {
    transform:
        translateY(-3px);

    border-color:
        rgba(139, 92, 246, .45);

    background:
        linear-gradient(
            135deg,
            rgba(139, 92, 246, .23),
            rgba(59, 130, 246, .13)
        );
}


.contact-card small {
    display: block;

    color:
        var(--purple-light);

    font-size: 9.5px;

    font-weight: 800;

    letter-spacing: .11em;

    text-transform: uppercase;
}


.contact-card h3 {
    margin-top: 5px;

    font-size: 19px;

    letter-spacing: -.25px;
}


.contact-card p {
    margin-top: 4px;

    color:
        var(--text-soft);

    font-size: 12px;
}


.contact-arrow {
    width: 42px;
    height: 42px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .08);

    border:
        1px solid
        rgba(255, 255, 255, .08);
}


.contact-arrow svg {
    width: 18px;
    height: 18px;

    transition:
        transform .25s
        var(--spring);
}


.contact-card:hover
.contact-arrow svg {
    transform:
        translateX(3px);
}


/* =====================================
   UPDATES
===================================== */

.updates-wrapper {
    display: flex;

    flex-direction: column;
}


.timeline-item {
    position: relative;

    padding:
        0 0 25px 24px;

    border-left:
        1px solid
        rgba(255, 255, 255, .11);
}


.timeline-item:last-child {
    padding-bottom: 0;

    border-left-color:
        transparent;
}


.timeline-dot {
    position: absolute;

    left: -5px;
    top: 1px;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background:
        var(--purple);

    box-shadow:
        0 0 0 4px
        rgba(139, 92, 246, .08),

        0 0 18px
        rgba(139, 92, 246, .65);
}


.update-date {
    margin-bottom: 7px;

    color:
        var(--text-muted);

    font-size: 10.5px;

    font-weight: 750;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.update-card {
    padding: 16px;

    border-radius:
        var(--radius);

    border:
        1px solid
        var(--border);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .055),
            rgba(255, 255, 255, .025)
        );
}


.update-top {
    display: flex;

    justify-content:
        space-between;

    gap: 12px;
}


.update-title {
    font-size: 15px;

    font-weight: 650;
}


.update-tag {
    flex: 0 0 auto;

    height:
        max-content;

    padding:
        4px 7px;

    border-radius:
        999px;

    color:
        var(--purple-light);

    font-size: 8.5px;

    font-weight: 750;

    letter-spacing: .05em;

    background:
        rgba(139, 92, 246, .1);
}


.update-desc {
    margin-top: 6px;

    color:
        var(--text-soft);

    font-size: 12.5px;

    line-height: 1.5;
}


/* =====================================
   FOOTER
===================================== */

.footer {
    padding-top: 8px;

    text-align: center;

    color:
        var(--text-muted);
}


.footer-line {
    width: 46px;
    height: 1px;

    margin:
        0 auto 15px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(139, 92, 246, .7),
            transparent
        );
}


.footer p {
    font-size: 11.5px;

    line-height: 1.5;
}


.footer > span {
    display: block;

    margin-top: 5px;

    font-size: 10px;

    opacity: .65;
}


/* =====================================
   IN-APP BROWSER TIP
===================================== */

.hint {
    position: fixed;

    left: 50%;

    bottom:
        calc(
            14px +
            var(--safe-bottom)
        );

    transform:
        translateX(-50%)
        translateY(24px);

    width:
        calc(100vw - 28px);

    max-width: 420px;

    z-index: 50;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 12px;

    padding:
        13px 12px
        13px 15px;

    border-radius: 16px;

    border:
        1px solid
        rgba(255, 255, 255, .12);

    background:
        rgba(11, 13, 25, .95);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    color:
        var(--text-soft);

    font-size: 12px;

    line-height: 1.45;

    box-shadow:
        0 14px 38px
        rgba(0, 0, 0, .48);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        transform .4s var(--smooth),
        opacity .3s ease,
        visibility .3s;
}


.hint.show {
    transform:
        translateX(-50%)
        translateY(0);

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


.hint-text {
    min-width: 0;

    flex: 1;
}


.hint b {
    color:
        var(--text);

    font-weight: 650;
}


.hint-close {
    width: 38px;
    height: 38px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .04);

    color:
        var(--text-soft);

    cursor: pointer;

    font-size: 22px;

    font-weight: 300;

    line-height: 1;

    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}


.hint-close:hover,
.hint-close:active {
    color:
        var(--text);

    background:
        rgba(255, 255, 255, .08);

    transform:
        scale(.96);
}


/* =====================================
   TOAST
===================================== */

.toast {
    position: fixed;

    left: 50%;

    top:
        calc(
            16px +
            var(--safe-top)
        );

    transform:
        translateX(-50%)
        translateY(-160%);

    z-index: 60;

    padding:
        11px 17px;

    border-radius: 999px;

    border:
        1px solid
        rgba(255, 255, 255, .09);

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #2563eb
        );

    color: #fff;

    font-size: 13px;

    font-weight: 750;

    box-shadow:
        0 10px 30px
        rgba(67, 56, 202, .34);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        transform .38s var(--smooth),
        opacity .28s ease,
        visibility .28s;
}


.toast.show {
    transform:
        translateX(-50%)
        translateY(0);

    opacity: 1;

    visibility: visible;
}


/* =====================================
   ACCESSIBILITY
===================================== */

a:focus-visible,
button:focus-visible {
    outline:
        2px solid
        #a78bfa;

    outline-offset: 3px;
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 390px) {

    .app-container {
        padding-left: 16px;
        padding-right: 16px;

        gap: 22px;
    }


    .share-btn {
        right: 16px;
    }


    .profile-img {
        width: 94px;
        height: 94px;
    }


    .professional-title {
        max-width: 290px;

        margin-left: auto;
        margin-right: auto;
    }


    .explore-grid {
        gap: 8px;
    }


    .explore-card {
        min-height: 112px;

        padding: 13px;
    }


    .contact-card {
        padding: 17px;
    }


    .hint {
        width:
            calc(100vw - 24px);

        bottom:
            calc(
                10px +
                var(--safe-bottom)
            );

        padding:
            12px 10px
            12px 14px;

        font-size: 11.8px;
    }

}


/* =====================================
   VERY SMALL MOBILE
===================================== */

@media (max-width: 340px) {

    .explore-grid {
        grid-template-columns: 1fr;
    }


    .now-top {
        align-items: flex-start;
    }


    .now-badge {
        white-space: nowrap;
    }

}


/* =====================================
   REDUCED MOTION
===================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration:
            .001ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .001ms !important;

        scroll-behavior:
            auto !important;
    }

}