:root {
    color-scheme: dark;
    --bg: #070913;
    --surface: rgba(20, 24, 42, 0.78);
    --surface-strong: rgba(25, 30, 52, 0.94);
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #f7f8ff;
    --muted: #aeb4ca;
    --purple: #7c5cff;
    --blue: #2aa8ff;
    --cyan: #45e5d1;
    --pink: #d15cff;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 15px;
    --content: 760px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--bg);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 50% -10%, rgba(124, 92, 255, 0.18), transparent 36rem),
        linear-gradient(180deg, #080b17 0%, #060812 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.32;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
}

a {
    color: inherit;
}

svg {
    width: 1.35em;
    height: 1.35em;
    color: inherit;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

svg path,
svg rect,
svg circle {
    fill: none;
    stroke: currentColor;
}

.fill-current {
    fill: currentColor;
    stroke: none;
}

.page-shell {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 54px 20px 40px;
}

.ambient {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    pointer-events: none;
}

.ambient-one {
    width: 380px;
    height: 380px;
    top: 90px;
    left: calc(50% - 520px);
    background: rgba(42, 168, 255, 0.13);
}

.ambient-two {
    width: 420px;
    height: 420px;
    top: 520px;
    right: calc(50% - 560px);
    background: rgba(209, 92, 255, 0.11);
}

.profile {
    position: relative;
    z-index: 1;
    width: min(100%, var(--content));
    margin: 0 auto;
}

.hero {
    text-align: center;
    padding: 6px 18px 34px;
}

.brand-mark {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 88px;
    height: 88px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 26px;
    text-decoration: none;
    background:
        linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.025)),
        linear-gradient(135deg, rgba(124, 92, 255, .76), rgba(42, 168, 255, .44));
    box-shadow: 0 22px 60px rgba(69, 74, 255, 0.24), inset 0 1px 0 rgba(255,255,255,.24);
    transition: transform .25s ease, border-color .25s ease;
}

.brand-mark:hover {
    transform: translateY(-3px) rotate(-1deg);
    border-color: rgba(255,255,255,.35);
}

.brand-core {
    font-weight: 850;
    font-size: 2.15rem;
    letter-spacing: -0.12em;
    transform: translateX(-.08em);
}

.brand-pulse {
    position: absolute;
    width: 9px;
    height: 9px;
    right: 17px;
    top: 17px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 20px var(--cyan);
}

.eyebrow {
    margin: 0 0 9px;
    color: #bfb7ff;
    font-size: .76rem;
    font-weight: 750;
    letter-spacing: .14em;
    text-transform: uppercase;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 11px;
    font-size: clamp(2.1rem, 7vw, 3.5rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.tagline {
    max-width: 660px;
    margin: 0 auto 12px;
    color: #d8dbeb;
    font-size: clamp(.94rem, 2.6vw, 1.08rem);
    line-height: 1.55;
}

.hero-description {
    max-width: 570px;
    margin: 0 auto;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.65;
}

.socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.social-link {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
    color: #e5e7f5;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.09);
    border-color: var(--line-strong);
}

.links {
    display: grid;
    gap: 13px;
}

.link-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 16px;
    min-height: 104px;
    padding: 19px 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    text-decoration: none;
    background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    box-shadow: 0 10px 34px rgba(0,0,0,.15);
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.link-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at 15% 0%, rgba(124,92,255,.18), transparent 45%);
    transition: opacity .22s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: rgba(164, 152, 255, 0.38);
    background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
}

.link-card:hover::after {
    opacity: 1;
}

.link-card-featured {
    min-height: 124px;
    border-color: rgba(138, 113, 255, .38);
    background:
        radial-gradient(circle at 0% 0%, rgba(124,92,255,.24), transparent 45%),
        linear-gradient(145deg, rgba(49, 44, 90, .9), rgba(20, 25, 48, .88));
    box-shadow: 0 22px 60px rgba(38, 32, 104, .22);
}

.link-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 17px;
    color: #f1efff;
    background: linear-gradient(135deg, rgba(124,92,255,.7), rgba(42,168,255,.35));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.link-icon svg {
    width: 24px;
    height: 24px;
}

.link-copy {
    position: relative;
    z-index: 1;
    display: grid;
    min-width: 0;
    gap: 3px;
}

.link-label {
    color: #b7b0f5;
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.link-copy strong {
    font-size: 1.06rem;
    line-height: 1.25;
}

.link-copy > span:last-child {
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.45;
}

.link-arrow {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #c9c6dd;
    background: rgba(255,255,255,.055);
    transition: transform .22s ease, color .22s ease;
}

.link-card:hover .link-arrow {
    transform: translateX(3px);
    color: white;
}

.section-card {
    margin-top: 22px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 19px;
}

.section-heading h2 {
    margin: 0;
    font-size: 1.35rem;
    letter-spacing: -.025em;
}

.section-heading > a {
    color: #c8c3ff;
    font-size: .84rem;
    font-weight: 700;
    text-underline-offset: 4px;
}

.article {
    display: grid;
    grid-template-columns: minmax(170px, .8fr) minmax(0, 1.2fr);
    gap: 22px;
    color: inherit;
    text-decoration: none;
}

.article-media {
    position: relative;
    display: block;
    min-height: 210px;
    overflow: hidden;
    border-radius: 18px;
    background: #13182a;
}

.article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.article:hover .article-media img {
    transform: scale(1.045);
}

.article-media-placeholder {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(69,229,209,.3), transparent 30%),
        linear-gradient(135deg, rgba(124,92,255,.95), rgba(42,168,255,.4));
}

.article-media-placeholder::before,
.article-media-placeholder::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 34px;
    transform: rotate(28deg);
}

.article-media-placeholder::after {
    transform: rotate(-16deg) scale(.72);
}

.article-media-placeholder span {
    position: relative;
    z-index: 1;
    font-size: 2.2rem;
    font-weight: 850;
    letter-spacing: -.08em;
}

.article-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
}

.article-copy time {
    margin-bottom: 8px;
    color: #aaa4dc;
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.article-copy strong {
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    line-height: 1.16;
    letter-spacing: -.025em;
}

.article-copy > span {
    margin-top: 10px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.58;
}

.article-copy em {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #d1cdff;
    font-size: .84rem;
    font-style: normal;
    font-weight: 750;
}

.article-copy em svg {
    width: 17px;
    height: 17px;
    transition: transform .2s ease;
}

.article:hover .article-copy em svg {
    transform: translateX(3px);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.instagram-item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
    background: #111526;
}

.instagram-item::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(to top, rgba(4,5,12,.45), transparent 55%);
    transition: opacity .25s ease;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease, filter .4s ease;
}

.instagram-item:hover img {
    transform: scale(1.055);
    filter: saturate(1.08);
}

.instagram-item:hover::after {
    opacity: 1;
}

.media-badge {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    color: white;
    background: rgba(7,9,19,.58);
    backdrop-filter: blur(8px);
}

.media-badge svg {
    width: 17px;
    height: 17px;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 5px 2px;
    color: #777e96;
    font-size: .76rem;
}

.footer a {
    color: #aeb4ca;
    text-underline-offset: 4px;
}

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 4px;
}

@media (max-width: 620px) {
    .page-shell {
        padding: 35px 14px 28px;
    }

    .hero {
        padding-inline: 5px;
    }

    .brand-mark {
        width: 78px;
        height: 78px;
        border-radius: 23px;
    }

    .link-card {
        grid-template-columns: 48px minmax(0, 1fr) 28px;
        gap: 13px;
        padding: 17px 15px;
        border-radius: 18px;
    }

    .link-icon {
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }

    .link-arrow {
        width: 28px;
        height: 28px;
    }

    .link-copy > span:last-child {
        display: none;
    }

    .section-card {
        padding: 18px;
        border-radius: 22px;
    }

    .article {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .article-media {
        min-height: 190px;
        aspect-ratio: 16 / 9;
    }

    .article-copy strong {
        font-size: 1.23rem;
    }

    .instagram-grid {
        gap: 7px;
    }

    .instagram-item {
        border-radius: 12px;
    }

    .media-badge {
        top: 7px;
        right: 7px;
        width: 26px;
        height: 26px;
        border-radius: 8px;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 390px) {
    .link-copy strong {
        font-size: .95rem;
    }

    .section-heading h2 {
        font-size: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
