@font-face {
    font-family: Enkai;
    src: url('enkai.woff2');
}

:root {
    --color-background: #050709;
    --color-surface: rgba(14, 20, 26, 0.96);
    --color-surface-alt: rgba(8, 16, 22, 0.92);
    --color-surface-ghost: rgba(10, 18, 26, 0.6);
    --color-border: rgba(132, 255, 196, 0.42);
    --color-border-strong: rgba(255, 239, 133, 0.88);
    --color-border-subtle: rgba(104, 192, 162, 0.25);
    --color-text-primary: #f1f7ee;
    --color-text-muted: rgba(206, 232, 208, 0.72);
    --color-accent-primary: #72ff9a;
    --color-accent-secondary: #ffe170;
    --color-accent-tertiary: #78ffe6;
    --color-accent-shadow: rgba(122, 255, 144, 0.56);
}

body {
    font-family: Enkai, sans-serif;
    background:
        radial-gradient(circle at 18% -12%, rgba(83, 255, 186, 0.22), transparent 58%),
        radial-gradient(circle at 118% 24%, rgba(255, 233, 107, 0.18), transparent 55%),
        radial-gradient(circle at center, rgba(20, 30, 38, 0.82), transparent 60%),
        linear-gradient(160deg, #04080f 0%, #020408 38%, #010205 100%);
    color: var(--color-text-primary);
    margin: 0;
    min-height: 100vh;
}

[hidden] {
    display: none !important;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-shell__content {
    flex: 1 0 auto;
}

.site-footer {
    margin-top: auto;
    padding: 1.25rem 2rem;
    background: rgba(241, 247, 238, 0.08);
    border-top: 1px solid rgba(255, 225, 112, 0.06);
}

.site-footer__inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.site-footer__link {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(8, 12, 18, 0.66);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
    color: rgba(8, 12, 18, 0.82);
}

.site-footer__button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.site-footer__button:focus-visible {
    outline: 2px solid rgba(8, 12, 18, 0.66);
    outline-offset: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: min(100% - 2rem, 420px);
    max-width: 420px;
    z-index: 1000;
    transform: translateY(18px);
    opacity: 0;
    transition: opacity 0.24s ease, transform 0.24s ease;
    pointer-events: none;
}

.cookie-banner--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner__surface {
    border: 1px solid var(--color-border);
    background:
        linear-gradient(170deg, rgba(18, 28, 32, 0.96) 0%, rgba(12, 22, 26, 0.92) 60%, rgba(6, 16, 20, 0.9) 100%),
        radial-gradient(circle at 8% 0%, rgba(132, 255, 196, 0.2), transparent 60%);
    box-shadow:
        0 42px 84px rgba(0, 0, 0, 0.68),
        inset 0 0 0 1px rgba(82, 92, 210, 0.24);
    padding: 1.85rem;
    border-radius: 18px;
}

.cookie-banner__header {
    margin-bottom: 1.2rem;
}

.cookie-banner__title {
    margin: 0 0 0.6rem;
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cookie-banner__text {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-banner__link {
    color: var(--color-accent-tertiary);
    text-decoration: none;
}

.cookie-banner__link:hover,
.cookie-banner__link:focus-visible {
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cookie-banner__button {
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cookie-banner__button--primary {
    background: var(--color-accent-primary);
    color: #0a0e12;
    box-shadow: 0 12px 28px rgba(120, 255, 210, 0.45);
}

.cookie-banner__button--primary:hover,
.cookie-banner__button--primary:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(120, 255, 210, 0.58);
}

.cookie-banner__button--ghost {
    background: transparent;
    border-color: rgba(132, 255, 196, 0.4);
    color: var(--color-text-primary);
}

.cookie-banner__button--ghost:hover,
.cookie-banner__button--ghost:focus-visible {
    border-color: rgba(255, 239, 133, 0.62);
}

.cookie-banner__preferences {
    margin-top: 1.4rem;
    border-top: 1px solid rgba(132, 255, 196, 0.22);
    padding-top: 1.2rem;
}

.cookie-banner__hint {
    margin: 0 0 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(206, 232, 208, 0.68);
}

.cookie-banner__option {
    display: block;
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(132, 255, 196, 0.18);
    border-radius: 12px;
    background: rgba(14, 24, 30, 0.6);
    transition: border-color 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.cookie-banner__option:hover,
.cookie-banner__option:focus-within {
    border-color: rgba(255, 239, 133, 0.34);
    background: rgba(18, 28, 34, 0.7);
}

.cookie-banner__option--static {
    cursor: default;
}

.cookie-banner__option-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-banner__option-title {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cookie-banner__badge {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(206, 232, 208, 0.7);
}

.cookie-banner__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cookie-banner__toggle-label {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cookie-banner__option-text {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-banner__preferences-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 1.2rem;
}

.cookie-banner--expanded .cookie-banner__surface {
    box-shadow:
        0 48px 96px rgba(0, 0, 0, 0.68),
        inset 0 0 0 1px rgba(208, 255, 158, 0.22);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.link-deck {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 6vw, 6rem) clamp(1.75rem, 5vw, 5rem);
}

.link-deck__layout {
    width: min(1080px, 100%);
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(320px, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.brand-mark {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-mark__image {
    width: clamp(320px, 40vw, 480px);
    max-width: 100%;
    height: auto;
    display: block;
}

.link-surface {
    --cut-surface: clamp(12px, 2.6vw, 18px);
    --clip-surface: polygon(0 var(--cut-surface), var(--cut-surface) 0, 100% 0, 100% calc(100% - var(--cut-surface)), calc(100% - var(--cut-surface)) 100%, 0 100%);
    position: relative;
    padding: clamp(2.2rem, 4.4vw, 3.3rem);
    border: 1px solid var(--color-border);
    background:
        linear-gradient(150deg, rgba(18, 26, 32, 0.98) 0%, rgba(8, 18, 24, 0.92) 50%, rgba(4, 12, 20, 0.9) 100%),
        radial-gradient(circle at 18% 12%, rgba(98, 255, 180, 0.16), transparent 55%),
        radial-gradient(circle at 82% 86%, rgba(255, 225, 112, 0.12), transparent 60%);
    box-shadow:
        0 48px 100px rgba(0, 0, 0, 0.68),
        inset 0 0 0 1px rgba(82, 92, 210, 0.28);
    clip-path: var(--clip-surface);
    -webkit-clip-path: var(--clip-surface);
    overflow: hidden;
}

.link-surface::before {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: var(--clip-surface);
    -webkit-clip-path: var(--clip-surface);
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(122, 255, 186, 0.28), rgba(255, 225, 112, 0.16)),
        radial-gradient(circle at 12% 18%, rgba(176, 86, 255, 0.2), transparent 65%),
        radial-gradient(circle at 86% 82%, rgba(120, 255, 234, 0.2), transparent 55%);
    opacity: 0.65;
    mix-blend-mode: screen;
}

.link-stack {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 2.8vw, 1.8rem);
}

.soundcloud-embed {
    --cut-sound: clamp(12px, 2.4vw, 18px);
    --clip-sound: polygon(0 var(--cut-sound), var(--cut-sound) 0, 100% 0, 100% calc(100% - var(--cut-sound)), calc(100% - var(--cut-sound)) 100%, 0 100%);
    margin-top: clamp(1.6rem, 3vw, 2.4rem);
    overflow: hidden;
    border: 1px solid rgba(132, 255, 196, 0.28);
    background: rgba(8, 16, 22, 0.82);
    box-shadow: 0 28px 52px rgba(0, 0, 0, 0.62);
    clip-path: var(--clip-sound);
    -webkit-clip-path: var(--clip-sound);
}

.soundcloud-embed iframe {
    display: block;
    width: 100%;
    border: 0;
}

.soundcloud-embed > div {
    padding: 0.6rem 0.75rem;
}

.link-stack__item {
    position: relative;
}

.link-card {
    --cut-card: clamp(10px, 2.2vw, 16px);
    --clip-card: polygon(0 var(--cut-card), var(--cut-card) 0, 100% 0, 100% calc(100% - var(--cut-card)), calc(100% - var(--cut-card)) 100%, 0 100%);
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: clamp(1.1rem, 2.8vw, 1.8rem);
    padding: clamp(1.25rem, 3.2vw, 1.85rem) clamp(1.9rem, 3.6vw, 2.6rem);
    color: var(--color-text-primary);
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--color-border);
    background:
        linear-gradient(150deg, rgba(20, 30, 26, 0.98), rgba(12, 22, 24, 0.94) 54%, rgba(6, 14, 20, 0.9)),
        radial-gradient(circle at 0% 0%, rgba(132, 255, 196, 0.18), transparent 60%);
    box-shadow:
        0 38px 72px rgba(5, 12, 18, 0.68),
        inset 0 0 0 1px rgba(102, 164, 132, 0.18);
    clip-path: var(--clip-card);
    -webkit-clip-path: var(--clip-card);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    isolation: isolate;
    overflow: hidden;
}

.link-card::before,
.link-card::after {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: var(--clip-card);
    -webkit-clip-path: var(--clip-card);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.link-card::before {
    background:
        linear-gradient(120deg, rgba(120, 255, 180, 0.28), rgba(255, 233, 107, 0.18));
    mix-blend-mode: screen;
}

.link-card::after {
    border: 1px solid rgba(192, 255, 140, 0.34);
}

.link-card__brand {
    width: clamp(2.6rem, 6vw, 3.4rem);
    height: auto;
    align-self: center;
    justify-self: center;
    position: relative;
    z-index: 1;
    display: block;
    border-radius: 16%;
    transition: transform 0.28s ease, filter 0.28s ease;
    filter: drop-shadow(0 0 14px rgba(120, 255, 230, 0.35));
}

.link-card__label {
    position: relative;
    z-index: 1;
    font-size: clamp(1.05rem, 2.6vw, 1.4rem);
    letter-spacing: 0.13em;
}

.link-card:hover,
.link-card:focus-visible {
    transform: translateY(-6px);
    border-color: var(--color-border-strong);
    box-shadow:
        0 42px 92px rgba(8, 18, 28, 0.78),
        inset 0 0 0 1px rgba(208, 255, 158, 0.28);
}

.link-card:hover::before,
.link-card:focus-visible::before,
.link-card:hover::after,
.link-card:focus-visible::after {
    opacity: 1;
}

.link-card:hover .link-card__brand,
.link-card:focus-visible .link-card__brand {
    transform: translateY(-4px) scale(1.06);
    filter: drop-shadow(0 0 20px rgba(120, 255, 230, 0.55));
}

.legal-page {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: clamp(3rem, 7vw, 6rem) clamp(1.4rem, 6vw, 4rem);
}

.legal-page__surface {
    width: min(860px, 100%);
    border: 1px solid var(--color-border);
    background:
        linear-gradient(160deg, rgba(18, 26, 32, 0.96) 0%, rgba(12, 20, 26, 0.9) 50%, rgba(6, 14, 20, 0.88) 100%),
        radial-gradient(circle at 10% 0%, rgba(122, 255, 210, 0.18), transparent 58%);
    box-shadow:
        0 48px 88px rgba(0, 0, 0, 0.68),
        inset 0 0 0 1px rgba(82, 92, 210, 0.28);
    padding: clamp(2.4rem, 5vw, 3.5rem);
    clip-path: polygon(0 18px, 18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.legal-page__header {
    margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}

.legal-page__title {
    margin: 0;
    font-size: clamp(2.1rem, 5vw, 2.8rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.legal-page__subtitle {
    margin: 0.5rem 0 0;
    color: var(--color-text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.legal-page__section + .legal-page__section {
    margin-top: clamp(2rem, 5vw, 3rem);
}

.legal-page__heading {
    margin: 0 0 0.8rem;
    font-size: clamp(1.1rem, 2.8vw, 1.4rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.legal-page__subheading {
    margin: 1.6rem 0 0.6rem;
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.legal-page__body {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.75;
    font-size: clamp(0.95rem, 2.4vw, 1.05rem);
}

.legal-page__body + .legal-page__body {
    margin-top: 0.8rem;
}

.legal-page__link {
    color: var(--color-accent-tertiary);
    text-decoration: none;
}

.legal-page__link:hover,
.legal-page__link:focus-visible {
    text-decoration: underline;
}

@media (max-width: 960px) {
    .link-deck__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: clamp(1.8rem, 6vw, 3rem);
    }

    .brand-mark {
        justify-content: center;
    }

    .link-surface {
        --cut-surface: clamp(16px, 6vw, 24px);
    }

    .legal-page {
        padding: clamp(2.6rem, 8vw, 4rem) clamp(1.2rem, 7vw, 2.8rem);
    }

    .legal-page__surface {
        clip-path: polygon(0 16px, 16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
        padding: clamp(2.1rem, 6vw, 3rem);
    }

    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        width: auto;
    }
}

@media (max-width: 560px) {
    .link-deck {
        padding: clamp(2.6rem, 12vw, 4rem) clamp(1.2rem, 8vw, 2.1rem);
    }

    .brand-mark__image {
        width: clamp(240px, 68vw, 360px);
    }

    .link-card {
        --cut-card: clamp(9px, 5vw, 14px);
        padding: clamp(1.1rem, 6.6vw, 1.45rem) clamp(1.3rem, 8vw, 2rem);
        letter-spacing: 0.12em;
    }

    .link-card__brand {
        width: clamp(2.3rem, 9vw, 2.8rem);
    }

    .legal-page {
        padding: clamp(2.3rem, 12vw, 3.6rem) clamp(1rem, 10vw, 2rem);
    }

    .legal-page__surface {
        padding: clamp(1.8rem, 12vw, 2.4rem);
        clip-path: polygon(0 14px, 14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
    }

    .cookie-banner {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .cookie-banner__surface {
        padding: 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .link-card,
    .link-card::before,
    .link-card::after,
    .link-card__brand {
        transition-duration: 0.01ms !important;
        transition-delay: 0s !important;
    }

    .link-card:hover,
    .link-card:focus-visible {
        transform: none;
        box-shadow:
            0 32px 68px rgba(12, 12, 38, 0.62),
            inset 0 0 0 1px rgba(136, 130, 255, 0.26);
    }
}
