:root {
    --bg: #071014;
    --bg-soft: #0b151b;
    --bg-card: rgba(13, 24, 31, 0.78);
    --white: #f7f7f7;
    --text: #d7dde0;
    --muted: #8c9aa2;
    --pink: #e13b91;
    --lime: #bfd735;
    --blue: #25b8d8;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    --radius: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 15% 20%, rgba(225, 59, 145, 0.1), transparent 28%),
        radial-gradient(circle at 85% 45%, rgba(37, 184, 216, 0.08), transparent 25%), var(--bg);
}
body.lock {
    overflow: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
select {
    font: inherit;
}
button {
    cursor: pointer;
}
.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto 0;
    padding: 22px 0;
    transition: 0.3s ease;
}
.header.scrolled {
    padding: 12px 0;
    background: rgba(5, 12, 16, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}
.header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
}
.logo {
    display: inline-flex;
    align-items: center;
    width: 92px;
    flex-shrink: 0;
}
.logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex: 1;
}
.nav a:not(.nav__icon) {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
    transition: 0.25s;
    white-space: nowrap;
}
.nav a:hover {
    color: var(--white);
}
.nav__socials {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
}
.nav__icon {
    width: 34px;
    height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    transition: 0.25s;
}
.nav__icon svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}
.nav__icon span {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.2px;
}
.nav__icon:hover {
    color: #fff;
    background: var(--pink);
    border-color: var(--pink);
}

.burger {
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 12px;
}
.burger span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
    transition: 0.25s;
}
.burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 11px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.25s ease;
}
.btn--primary {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 15px 45px rgba(225, 59, 145, 0.35);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 60px rgba(225, 59, 145, 0.5);
}
.btn--dark {
    color: var(--pink);
    border-color: rgba(225, 59, 145, 0.4);
    background: rgba(0, 0, 0, 0.28);
}
.btn--dark:hover {
    color: #fff;
    border-color: var(--pink);
}
.btn--ticket {
    color: var(--lime);
    border-color: rgba(191, 215, 53, 0.55);
    background: rgba(0, 0, 0, 0.28);
}
.btn--ticket:hover {
    color: #071014;
    background: var(--lime);
    border-color: var(--lime);
}

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg);
}
.hero__video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(7, 16, 20, 0.18) 0%, rgba(7, 16, 20, 0.34) 45%, var(--bg) 100%),
        linear-gradient(to right, rgba(7, 16, 20, 0.72) 0%, rgba(7, 16, 20, 0.35) 48%, rgba(7, 16, 20, 0.12) 100%);
}
.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 110px;
    padding-bottom: 170px;
}
.hero__label {
    max-width: 620px;
    margin: 0 0 14px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.72);
}
.hero__logo {
    display: block;
    width: clamp(300px, 22vw, 430px);
    height: auto;
    margin: 0 0 18px;
}
.hero__subtitle {
    margin: 0 0 26px;
    max-width: 620px;
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 1.05;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
}
.hero__actions {
    position: relative;
    z-index: 8;
    display: flex;
    width: fit-content;
    max-width: 100%;
    gap: 12px;
}

.hero__actions--attached {
    margin-top: 24px;
    transform: translateY(118px);
}
.hero__actions .btn {
    min-width: 190px;
    border-right-width: 1px;
}

.features {
    position: relative;
    z-index: 6;
    margin-top: -56px;
    padding-bottom: 64px;
}
.features__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 164px;
    background: rgba(5, 13, 17, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
}
.feature-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 164px;
    padding: 26px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    background: transparent;
}
.feature-card:last-child {
    border-right: none;
}
.feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    line-height: 1;
    flex-shrink: 0;
}
.feature-card__icon svg {
    width: 46px;
    height: 46px;
    display: block;
}
.feature-card__icon--pink {
    color: var(--pink);
}
.feature-card__icon--lime {
    color: var(--lime);
}
.feature-card__icon--blue {
    color: var(--blue);
}
.feature-card h3 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}
.feature-card p {
    margin: 0;
    max-width: 230px;
    color: #a2adb3;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
}

.section {
    padding: 110px 0;
}
.section__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.section__grid--wide {
    grid-template-columns: 0.8fr 1.2fr;
}
.section__head {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}
.section__head--left {
    margin-inline: 0;
    text-align: left;
}
.section__label {
    margin: 0 0 12px;
    color: var(--pink);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}
.section h1,
.section h2,
.target h1 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(22px, 2vw, 34px);
    line-height: 1.08;
    font-weight: 600;
}
.section p,
.target p {
    margin: 0;
    line-height: 1.75;
    color: var(--muted);
}
.section__lead {
    margin-bottom: 28px !important;
}

.target {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 100px 0;
    background: linear-gradient(to bottom, #071014 0%, rgba(7, 16, 20, 0.94) 45%, #071014 100%);
}
.target__inner {
    min-height: 520px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 60px;
}
.target__text {
    max-width: 560px;
}
.target__text p:last-child {
    font-size: clamp(18px, 2vw, 26px);
    color: #dce4e7;
}
.triangle-gallery {
    position: relative;
    min-height: 520px;
}
.triangle-photo {
    position: absolute;
    width: 330px;
    height: 330px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 52px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.triangle-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(7, 16, 20, 0.7));
    z-index: -1;
}
.triangle-photo--one {
    left: 0;
    top: 22px;
    background-image: url("assets/interior.jpg");
}
.triangle-photo--two {
    right: 35px;
    top: 0;
    background-image: url("assets/object-design.jpg");
    transform: scale(0.82);
    border-color: rgba(225, 59, 145, 0.55);
}
.triangle-photo--three {
    left: 190px;
    bottom: 0;
    background-image: url("assets/architecture.jpg");
    transform: scale(0.9);
    border-color: rgba(37, 184, 216, 0.55);
}

.text-panel {
    display: grid;
    gap: 18px;
    padding: 34px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
}
.text-panel h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
}
.text-panel--compact {
    gap: 14px;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
}
.opportunity-card {
    padding: 34px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.opportunity-card--accent {
    background: linear-gradient(135deg, rgba(225, 59, 145, 0.13), rgba(37, 184, 216, 0.06)), var(--bg-soft);
}
.opportunity-card h3 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 26px;
    text-transform: uppercase;
}
ul {
    margin: 0;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.75;
}
.steps {
    display: grid;
    gap: 16px;
}
.step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--border);
    border-radius: 18px;
}
.step span {
    color: var(--lime);
    font-weight: 900;
    font-size: 20px;
}
.step p {
    margin: 0;
}

.nominations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.nomination-card {
    min-height: 245px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)), var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: 0.25s ease;
}
.nomination-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 59, 145, 0.6);
}
.nomination-card span {
    color: var(--blue);
    font-weight: 900;
}
.nomination-card h3 {
    margin: 28px 0 14px;
    color: #fff;
    font-size: 23px;
}
.nomination-card p {
    font-size: 15px;
}

.partners {
    background: radial-gradient(circle at 75% 50%, rgba(225, 59, 145, 0.11), transparent 30%);
}
.jury__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.jury-card {
    text-align: left;
    padding: 24px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: inherit;
    transition: 0.25s;
}
.jury-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 59, 145, 0.55);
}
.jury-card--accent {
    border-color: rgba(225, 59, 145, 0.55);
}

.jury-card__photo {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    margin-bottom: 20px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    background-color: #16232b;
}

.jury-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 19px;
}
.jury-card p {
    font-size: 14px;
}
.jury-card {
    width: 100%;
    text-align: left;
    cursor: pointer;
    color: inherit;
}

.jury-card span {
    display: inline-block;
    margin-top: 16px;
    color: var(--pink);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
}

.jury-modal {
    position: fixed;
    z-index: 700;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.jury-modal.active {
    display: flex;
}

.jury-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(12px);
}

.jury-modal__content {
    position: relative;
    z-index: 2;
    width: min(100%, 760px);
    max-height: min(82vh, 760px);
    overflow-y: auto;
    padding: 42px;
    background: #0b151b;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.jury-modal__close {
    position: sticky;
    top: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #0b151b;
    color: #fff;
    font-size: 24px;
}

.jury-modal h2 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.15;
}

.jury-modal p {
    margin: 0 0 16px;
    color: var(--text);
    line-height: 1.75;
}

@media (max-width: 620px) {
    .jury-modal {
        padding: 14px;
    }

    .jury-modal__content {
        padding: 26px;
        border-radius: 22px;
        max-height: 88vh;
    }

    .jury-modal p {
        font-size: 14px;
        line-height: 1.65;
    }
}

.ceremony {
    background: linear-gradient(to bottom, rgba(37, 184, 216, 0.04), transparent);
}
.ceremony__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}
.ceremony-card,
.reference-box,
.support-box {
    padding: 26px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--border);
    border-radius: 22px;
}
.ceremony-card h3,
.reference-box h3,
.support-box h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 20px;
}
.reference-box {
    margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(225, 59, 145, 0.12), rgba(37, 184, 216, 0.08)), var(--bg-soft);
}
.support-box {
    display: grid;
    gap: 10px;
}

.contacts__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 60px;
    border: 1px solid var(--border);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(225, 59, 145, 0.12), rgba(37, 184, 216, 0.08)), var(--bg-soft);
}
.contacts__box > div:first-child {
    max-width: 620px;
}
.contacts__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}
.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.logo-tile {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.62);
    font-weight: 900;
    text-transform: uppercase;
}
.footer {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    background: #071014;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer p {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.5;
}

.footer__legal {
    max-width: 420px;
    text-align: right;
}

.footer__legal a {
    display: inline-block;
    margin-top: 4px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 720px) {
    .footer__inner {
        flex-direction: column;
    }

    .footer__legal {
        text-align: left;
    }
}

.modal {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal.active {
    display: flex;
}
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
}
.modal__content {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 38px;
    background: #0b151b;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
}
.modal__content--bio {
    width: min(100%, 640px);
}
.modal__close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 24px;
}
.modal h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 22px;
}
.modal p {
    margin: 0 0 28px;
    color: var(--muted);
}
.form {
    display: grid;
    gap: 16px;
}
.form label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-size: 14px;
}
.form input,
.form select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    outline: none;
}
.form select option {
    color: #111;
}
.form input:focus,
.form select:focus {
    border-color: var(--pink);
}

@media (max-width: 1180px) {
    .nav {
        gap: 14px;
    }
    .nav a:not(.nav__icon) {
        font-size: 11px;
    }
}

@media (max-width: 1040px) {
    .hero {
        min-height: 740px;
    }
    .hero__content {
        padding-top: 110px;
        padding-bottom: 96px;
    }
    .hero__logo {
        width: clamp(240px, 42vw, 420px);
    }
    .hero__actions {
        flex-wrap: wrap;
    }
    .hero__actions .btn {
        min-width: 180px;
        border-right-width: 1px;
    }
    .features {
        margin-top: -72px;
    }
    .features__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .feature-card:nth-child(2) {
        border-right: none;
    }
    .feature-card:nth-child(1),
    .feature-card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    }
    .burger {
        display: block;
        margin-left: auto;
    }
    .nav {
        position: fixed;
        top: 82px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 24px;
        background: rgba(5, 12, 16, 0.96);
        border: 1px solid var(--border);
        border-radius: 22px;
        backdrop-filter: blur(18px);
    }
    .nav.active {
        display: flex;
    }
    .nav__socials {
        margin-left: 0;
    }
    .section__grid,
    .section__grid--wide,
    .target__inner,
    .opportunity-grid {
        grid-template-columns: 1fr;
    }
    .triangle-gallery {
        min-height: 460px;
    }
    .nominations__grid,
    .jury__grid,
    .ceremony__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, var(--container));
    }
    .header {
        padding: 14px 0;
    }
    .logo {
        width: 78px;
    }
    .hero {
        min-height: 690px;
        align-items: flex-end;
    }
    .hero__content {
        padding-top: 120px;
        padding-bottom: 128px;
    }
    .hero__overlay {
        background: linear-gradient(
                to bottom,
                rgba(7, 16, 20, 0.12) 0%,
                rgba(7, 16, 20, 0.26) 35%,
                rgba(7, 16, 20, 0.86) 78%,
                var(--bg) 100%
            ),
            linear-gradient(to right, rgba(7, 16, 20, 0.52), rgba(7, 16, 20, 0.22));
    }
    .hero__label {
        font-size: 11px;
        line-height: 1.5;
        letter-spacing: 1.5px;
    }
    .hero__logo {
        width: min(100%, 310px);
    }
    .hero__subtitle {
        max-width: 340px;
        font-size: clamp(28px, 10vw, 42px);
    }
    .hero__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        transform: none;
    }
    .hero__actions .btn,
    .btn {
        width: 100%;
        min-width: 0;
        min-height: 52px;
        padding: 0 22px;
    }
    .features {
        margin-top: -70px;
    }
    .features__inner {
        grid-template-columns: 1fr;
    }
    .feature-card,
    .feature-card:nth-child(2) {
        grid-template-columns: 54px minmax(0, 1fr);
        min-height: 138px;
        padding: 24px 22px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    }
    .feature-card:last-child {
        border-bottom: none;
    }
    .feature-card p {
        max-width: 100%;
    }
    .section {
        padding: 78px 0;
    }
    .section__head {
        margin-bottom: 34px;
    }
    .target {
        min-height: auto;
        padding: 78px 0;
    }
    .target__inner {
        min-height: auto;
        gap: 34px;
    }
    .triangle-gallery {
        min-height: 340px;
    }
    .triangle-photo {
        width: 230px;
        height: 230px;
        padding-bottom: 36px;
        font-size: 13px;
    }
    .triangle-photo--one {
        left: 0;
        top: 20px;
    }
    .triangle-photo--two {
        right: -10px;
        top: 0;
    }
    .triangle-photo--three {
        left: 78px;
        bottom: 0;
    }
    .text-panel,
    .opportunity-card,
    .ceremony-card,
    .reference-box,
    .support-box {
        padding: 24px;
    }
    .nominations__grid,
    .jury__grid,
    .ceremony__grid,
    .logos-grid {
        grid-template-columns: 1fr;
    }
    .contacts__box,
    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .contacts__box {
        padding: 32px;
    }
    .contacts__actions {
        width: 100%;
        justify-content: stretch;
    }
    .modal__content {
        padding: 28px;
    }
}

@media (max-width: 420px) {
    .hero {
        min-height: 640px;
    }
    .hero__content {
        padding-bottom: 112px;
    }
    .triangle-gallery {
        min-height: 300px;
    }
    .triangle-photo {
        width: 200px;
        height: 200px;
    }
    .triangle-photo--three {
        left: 56px;
    }
}
.target {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #071014;
}

.target__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
}

.target__photo {
    width: 100%;
    max-width: 920px;
}

.target__photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.target__text {
    max-width: 760px;
    text-align: center;
}

.target__text .section__label {
    margin-bottom: 14px;
}

.target__text h1 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 700;
}

.target__text p:last-child {
    margin: 0 auto;
    max-width: 720px;
    color: #dce4e7;
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1.55;
}

/* Выравнивание карточек жюри */
.jury__grid {
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.jury-card {
    height: 100%;
    min-height: 490px;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.jury-card__photo {
    flex: 0 0 252px;
    width: 100%;
    height: 252px;
    aspect-ratio: auto;
    margin-bottom: 20px;
    border-radius: 18px;
    background-size: cover;
    background-position: center top;
}

.jury-card h3 {
    min-height: 54px;
    margin: 0 0 10px;
    line-height: 1.25;
}

.jury-card p {
    min-height: 72px;
    margin: 0;
    line-height: 1.65;
}

.jury-card span {
    margin-top: auto;
    padding-top: 16px;
}

@media (max-width: 720px) {
    .jury-card {
        min-height: auto;
    }

    .jury-card__photo {
        height: auto;
        aspect-ratio: 1 / 1.1;
    }

    .jury-card h3,
    .jury-card p {
        min-height: 0;
    }
}

.phone-menu {
    position: relative;
    flex-shrink: 0;
}

.phone-menu__button {
    list-style: none;
}

.phone-menu__button::-webkit-details-marker {
    display: none;
}

.phone-menu__list {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 200;
    min-width: 190px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(5, 12, 16, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.phone-menu__list a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.2s;
}

.phone-menu__list a:hover {
    background: rgba(225, 59, 145, 0.16);
    color: var(--pink);
}

.phone-menu[open] .phone-menu__button {
    color: #fff;
    background: var(--pink);
    border-color: var(--pink);
}

@media (max-width: 1040px) {
    .phone-menu__list {
        left: 0;
        right: auto;
    }
}




.logos-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}

.logos-marquee::before,
.logos-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 2;
    width: 120px;
    height: 100%;
    pointer-events: none;
}

.logos-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.logos-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.logos-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: logosMove 32s linear infinite;
}

.logos-marquee:hover .logos-track {
    animation-play-state: paused;
}

.logo-tile {
    flex: 0 0 220px;
    height: 120px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
}

.logo-tile img {
    display: block;
    max-width: 100%;
    max-height: 76px;
    object-fit: contain;
}

@keyframes logosMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}



@media (max-width: 720px) {
    .logos-marquee::before,
    .logos-marquee::after {
        width: 54px;
    }

    .logos-track {
        gap: 12px;
        animation-duration: 24s;
    }

    .logo-tile {
        flex-basis: 170px;
        height: 92px;
        min-height: 92px;
        padding: 16px;
        border-radius: 18px;
    }

    .logo-tile img {
        max-height: 58px;
    }
}


.partner-highlight {
    margin: 28px 0;
    padding: 24px;
    border: 1px solid rgba(225, 59, 145, 0.35);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(225, 59, 145, 0.13), rgba(37, 184, 216, 0.06));
}

.partner-highlight span {
    display: block;
    margin-bottom: 10px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.partner-highlight p {
    margin: 0;
    color: #dce4e7;
    line-height: 1.65;
}

.partner-program {
    margin-top: 78px;
}

.partner-program__head {
    max-width: 760px;
    margin-bottom: 34px;
}

.partner-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.partner-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
    transition: 0.25s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: rgba(225, 59, 145, 0.5);
}

.partner-card--wide {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(225, 59, 145, 0.12), rgba(37, 184, 216, 0.08)), var(--bg-soft);
}

.partner-card span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--lime);
    font-size: 20px;
    font-weight: 900;
}

.partner-card h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 23px;
    text-transform: uppercase;
}

.partner-card ul {
    margin: 0;
    padding-left: 20px;
}

.partner-card li {
    margin-bottom: 10px;
    color: var(--muted);
    line-height: 1.65;
}

.partner-card li:last-child {
    margin-bottom: 0;
}

.partner-result {
    margin-top: 70px;
    padding: 44px;
    border: 1px solid var(--border);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(225, 59, 145, 0.1), rgba(37, 184, 216, 0.07)), var(--bg-soft);
}

.partner-result__content {
    max-width: 760px;
    margin-bottom: 34px;
}

.partner-result__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.partner-result__item {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
}

.partner-result__item h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 19px;
}

.partner-result__item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 1040px) {
    .partner-result__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .partner-program {
        margin-top: 52px;
    }

    .partner-cards,
    .partner-result__grid {
        grid-template-columns: 1fr;
    }

    .partner-card--wide {
        grid-column: auto;
    }

    .partner-card,
    .partner-result {
        padding: 24px;
    }

    .partner-result {
        margin-top: 48px;
        border-radius: 26px;
    }
}


.page-section {
    padding-top: 150px;
}

.submission-page {
    background:
        radial-gradient(circle at 18% 10%, rgba(225, 59, 145, 0.1), transparent 28%),
        radial-gradient(circle at 85% 45%, rgba(37, 184, 216, 0.08), transparent 30%);
}

.submission-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    margin-top: 46px;
}

.submission-main-card {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
}

.submission-main-card--accent {
    background: linear-gradient(135deg, rgba(225, 59, 145, 0.13), rgba(37, 184, 216, 0.06)), var(--bg-soft);
}

.submission-main-card span,
.submission-requirement span,
.nomination-detail summary > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    font-weight: 900;
}

.submission-main-card span {
    margin-bottom: 18px;
    font-size: 20px;
}

.submission-main-card h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 26px;
    text-transform: uppercase;
}

.submission-main-card p {
    margin-bottom: 14px;
}

.submission-main-card p:last-child {
    margin-bottom: 0;
}

.submission-main-card strong {
    color: #fff;
}

.submission-block {
    margin-top: 72px;
}

.submission-block__head {
    max-width: 760px;
    margin-bottom: 30px;
}

.submission-requirements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.submission-requirement {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
}

.submission-requirement span {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(191, 215, 53, 0.35);
    border-radius: 50%;
    background: rgba(191, 215, 53, 0.08);
}

.submission-requirement p {
    margin: 0;
    line-height: 1.65;
}

.submission-note {
    margin-top: 28px;
    padding: 30px;
    border: 1px solid rgba(225, 59, 145, 0.35);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(225, 59, 145, 0.12), rgba(37, 184, 216, 0.06)), var(--bg-soft);
}

.submission-note h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 24px;
}

.submission-note p {
    margin: 0;
}

.detailed-nominations {
    padding-top: 40px;
}

.nomination-accordion {
    display: grid;
    gap: 16px;
}

.nomination-detail {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
    overflow: hidden;
    transition: 0.25s ease;
}

.nomination-detail[open] {
    border-color: rgba(225, 59, 145, 0.48);
    background: linear-gradient(135deg, rgba(225, 59, 145, 0.08), rgba(37, 184, 216, 0.04)), var(--bg-soft);
}

.nomination-detail summary {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    list-style: none;
}

.nomination-detail summary::-webkit-details-marker {
    display: none;
}

.nomination-detail summary > span {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(37, 184, 216, 0.4);
    border-radius: 50%;
    color: var(--blue);
    background: rgba(37, 184, 216, 0.08);
}

.nomination-detail h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
}

.nomination-detail summary p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.nomination-detail__body {
    padding: 0 28px 28px 110px;
}

.nomination-detail__body p {
    margin: 0 0 14px;
}

.nomination-detail__body p:last-child {
    margin-bottom: 0;
}

.nomination-detail__body ul {
    margin: 12px 0 18px;
    padding-left: 22px;
}

.nomination-detail__body li {
    margin-bottom: 8px;
}

@media (max-width: 1040px) {
    .submission-intro,
    .submission-requirements {
        grid-template-columns: 1fr;
    }

    .nomination-detail__body {
        padding-left: 28px;
    }
}

@media (max-width: 720px) {
    .page-section {
        padding-top: 120px;
    }

    .submission-main-card,
    .submission-note {
        padding: 24px;
    }

    .submission-requirement {
        grid-template-columns: 1fr;
    }

    .nomination-detail summary {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .nomination-detail__body {
        padding: 0 22px 24px;
    }

    .nomination-detail h3 {
        font-size: 19px;
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(8px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease,
        filter 0.65s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.nomination-detail[open] .nomination-detail__body {
    animation: nominationBodyOpen 0.45s ease both;
}

@keyframes nominationBodyOpen {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.nomination-card {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.nomination-card__image {
    width: 100%;
    height: 170px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    background: rgba(255, 255, 255, 0.04);
}

.nomination-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.nomination-card h3,
.nomination-card p {
    padding-left: 32px;
    padding-right: 32px;
}

.nomination-card h3 {
    margin-top: 26px;
}

.nomination-card p {
    padding-bottom: 32px;
}

.nomination-card:hover .nomination-card__image img {
    transform: scale(1.06);
}


/* Общий верх для внутренних страниц */
.page-section {
    padding-top: 150px;
}

.inner-hero {
    background:
        radial-gradient(circle at 16% 12%, rgba(225, 59, 145, 0.12), transparent 30%),
        radial-gradient(circle at 86% 40%, rgba(37, 184, 216, 0.1), transparent 32%);
}

.inner-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.inner-hero h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1;
    text-transform: uppercase;
}

.inner-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.inner-hero__card {
    padding: 36px;
    border: 1px solid rgba(225, 59, 145, 0.38);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(225, 59, 145, 0.12), rgba(37, 184, 216, 0.07)),
        var(--bg-soft);
    box-shadow: var(--shadow);
}

.inner-hero__card span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--lime);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.inner-hero__card h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 28px;
}

.inner-hero__card p {
    margin: 0;
    font-size: 15px;
}


/* GALLERY PAGE */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.035);
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.35s ease;
}

.gallery-item span {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(7, 16, 20, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(7, 16, 20, 0.74));
    opacity: 0.85;
    transition: 0.25s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* CONTACTS PAGE */
.contacts-page__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 26px;
    align-items: start;
}

.contacts-page__actions {
    display: grid;
    gap: 18px;
}

.contact-action-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
    transition: 0.25s ease;
}

.contact-action-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 59, 145, 0.48);
}

.contact-action-card span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--lime);
    font-size: 20px;
    font-weight: 900;
}

.contact-action-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 26px;
}

.contact-action-card p {
    margin-bottom: 24px;
}

.contacts-panel {
    position: sticky;
    top: 110px;
    padding: 34px;
    border: 1px solid rgba(225, 59, 145, 0.4);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(225, 59, 145, 0.12), rgba(37, 184, 216, 0.06)),
        var(--bg-soft);
    box-shadow: var(--shadow);
}

.contacts-panel h3 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 28px;
}

.contacts-panel__list {
    display: grid;
    gap: 12px;
}

.contacts-panel__list a {
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    transition: 0.25s ease;
}

.contacts-panel__list a:hover {
    transform: translateY(-2px);
    border-color: rgba(225, 59, 145, 0.55);
}

.contacts-panel__list span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contacts-panel__list strong {
    color: #fff;
    font-size: 16px;
}

.contacts-panel__note {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.contacts-panel__note h4 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 19px;
}

.contacts-panel__note p {
    margin: 0;
    font-size: 14px;
}

.contacts-map__box {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: center;
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: 34px;
    background:
        radial-gradient(circle at 85% 40%, rgba(37, 184, 216, 0.12), transparent 32%),
        rgba(255, 255, 255, 0.035);
}

.contacts-map__visual {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(37, 184, 216, 0.32);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(37, 184, 216, 0.12), rgba(225, 59, 145, 0.08)),
        var(--bg-soft);
}

.contacts-map__visual span {
    color: rgba(255, 255, 255, 0.12);
    font-size: 52px;
    font-weight: 900;
    letter-spacing: 6px;
}

/* ADAPTIVE */
@media (max-width: 1040px) {
    .inner-hero__grid,
    .contacts-page__grid,
    .contacts-map__box {
        grid-template-columns: 1fr;
    }

    .jury-page__grid,
    .jury-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacts-panel {
        position: static;
    }
}

@media (max-width: 720px) {
    .page-section {
        padding-top: 120px;
    }

    .inner-hero h1 {
        font-size: clamp(34px, 12vw, 52px);
    }

    .inner-hero__card,
    .contact-action-card,
    .contacts-panel,
    .contacts-map__box {
        padding: 24px;
    }

    .jury-page__grid,
    .jury-values__grid,
    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-auto-rows: 240px;
    }

    .gallery-item--large,
    .gallery-item--wide {
        grid-column: auto;
        grid-row: auto;
    }

    .jury-person__photo {
        height: 300px;
    }

    .contacts-map__visual {
        min-height: 160px;
    }
}


/* =========================
   JURY PAGE
========================= */

.page-section {
    padding-top: 150px;
}

.jury-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 16%, rgba(225, 59, 145, 0.12), transparent 30%),
        radial-gradient(circle at 84% 36%, rgba(37, 184, 216, 0.1), transparent 32%);
}

.jury-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.jury-hero__content h1 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(40px, 5vw, 78px);
    line-height: 0.98;
    font-weight: 800;
    text-transform: uppercase;
}

.jury-hero__content p {
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.jury-hero__panel {
    padding: 38px;
    border: 1px solid rgba(225, 59, 145, 0.38);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(225, 59, 145, 0.13), rgba(37, 184, 216, 0.08)),
        var(--bg-soft);
    box-shadow: var(--shadow);
}

.jury-hero__panel span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--lime);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jury-hero__panel h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
}

.jury-hero__panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.jury-list {
    display: grid;
    gap: 28px;
}

.jury-expert {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
        var(--bg-soft);
    transition: 0.25s ease;
}

.jury-expert:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 59, 145, 0.5);
}

.jury-expert__photo {
    min-height: 100%;
    background: #16232b;
}

.jury-expert__photo img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.jury-expert__body {
    padding: 36px;
}

.jury-expert__top {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.jury-expert__top > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(37, 184, 216, 0.4);
    border-radius: 50%;
    color: var(--blue);
    background: rgba(37, 184, 216, 0.08);
    font-size: 16px;
    font-weight: 900;
}

.jury-expert h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.15;
}

.jury-expert__role {
    margin: 0;
    color: #dce4e7;
    font-size: 16px;
    line-height: 1.65;
}

.jury-expert__text {
    display: grid;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.jury-expert__text p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.jury-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.jury-values__grid article {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
    transition: 0.25s ease;
}

.jury-values__grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 184, 216, 0.45);
}

.jury-values__grid span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--lime);
    font-size: 20px;
    font-weight: 900;
}

.jury-values__grid h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 24px;
}

.jury-values__grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

/* =========================
   JURY PAGE ADAPTIVE
========================= */

@media (max-width: 1040px) {
    .jury-hero__grid {
        grid-template-columns: 1fr;
    }

    .jury-expert {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .jury-expert__photo img {
        min-height: 460px;
    }

    .jury-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .jury-expert {
        grid-template-columns: 1fr;
    }

    .jury-expert__photo img {
        height: 420px;
        min-height: 0;
    }
}

@media (max-width: 720px) {
    .page-section {
        padding-top: 120px;
    }

    .jury-hero__content h1 {
        font-size: clamp(34px, 12vw, 52px);
    }

    .jury-hero__panel,
    .jury-expert__body,
    .jury-values__grid article {
        padding: 24px;
    }

    .jury-expert {
        border-radius: 26px;
    }

    .jury-expert__photo img {
        height: 360px;
    }

    .jury-expert__top {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .jury-expert h3 {
        font-size: 24px;
    }

    .jury-values__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .jury-expert__photo img {
        height: 310px;
    }

    .jury-expert__text p {
        font-size: 14px;
    }
}


/* =========================
   JURY CLOCK BLOCK
========================= */

.jury-clock-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(225, 59, 145, 0.1), transparent 28%),
        radial-gradient(circle at 82% 48%, rgba(37, 184, 216, 0.08), transparent 30%);
}

.jury-clock {
    --clock-size: 680px;
    --clock-radius: 290px;
    --clock-speed: 48s;

    position: relative;
    width: var(--clock-size);
    height: var(--clock-size);
    margin: 10px auto 0;
    border-radius: 50%;
}

.jury-clock::before {
    content: "";
    position: absolute;
    inset: 42px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    box-shadow:
        inset 0 0 70px rgba(37, 184, 216, 0.05),
        0 0 90px rgba(225, 59, 145, 0.05);
}

.jury-clock::after {
    content: "";
    position: absolute;
    inset: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow:
        0 0 24px rgba(225, 59, 145, 0.85),
        0 0 60px rgba(37, 184, 216, 0.35);
    transform: translate(-50%, -50%);
}

.jury-clock__center {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 260px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    border: 1px solid rgba(225, 59, 145, 0.38);
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(225, 59, 145, 0.12), rgba(37, 184, 216, 0.07)),
        rgba(7, 16, 20, 0.86);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    text-align: center;
    transform: translate(-50%, -50%);
}

.jury-clock__center span {
    display: block;
    margin-bottom: 10px;
    color: var(--lime);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jury-clock__center h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
}

.jury-clock__center p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.jury-clock__center .btn {
    min-height: 44px;
    width: auto;
    align-self: center;
    padding: 0 18px;
    font-size: 11px;
}

.jury-clock__orbit {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: 50%;
    animation: juryClockOrbit var(--clock-speed) linear infinite;
}

.jury-clock:hover .jury-clock__orbit,
.jury-clock:hover .jury-clock__card {
    animation-play-state: paused;
}

.jury-clock__item {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    transform: rotate(var(--angle)) translateY(calc(var(--clock-radius) * -1));
    transform-origin: 0 0;
}

.jury-clock__card {
    width: 142px;
    min-height: 178px;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 12px;
    padding: 14px 12px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(7, 16, 20, 0.76);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -50%) rotate(var(--angle-reverse));
    animation: juryClockCard var(--clock-speed) linear infinite;
}

.jury-clock__card img {
    width: 92px;
    height: 92px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid rgba(255, 255, 255, 0.16);
    background: #16232b;
}

.jury-clock__card h3 {
    margin: 0;
    color: #fff;
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
}

@keyframes juryClockOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes juryClockCard {
    from {
        transform: translate(-50%, -50%) rotate(var(--angle-reverse));
    }

    to {
        transform: translate(-50%, -50%) rotate(calc(var(--angle-reverse) - 360deg));
    }
}

/* =========================
   JURY CLOCK ADAPTIVE
========================= */

@media (max-width: 820px) {
    .jury-clock {
        --clock-size: 540px;
        --clock-radius: 225px;
    }

    .jury-clock__center {
        width: 220px;
        min-height: 220px;
        padding: 24px;
    }

    .jury-clock__center h3 {
        font-size: 24px;
    }

    .jury-clock__center p {
        font-size: 13px;
    }

    .jury-clock__card {
        width: 118px;
        min-height: 158px;
        border-radius: 20px;
    }

    .jury-clock__card img {
        width: 74px;
        height: 74px;
    }

    .jury-clock__card h3 {
        font-size: 11px;
    }
}

@media (max-width: 560px) {
    .jury-clock {
        --clock-size: 390px;
        --clock-radius: 162px;
        --clock-speed: 40s;
    }

    .jury-clock__center {
        width: 160px;
        min-height: 160px;
        padding: 18px;
    }

    .jury-clock__center span {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .jury-clock__center h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .jury-clock__center p {
        display: none;
    }

    .jury-clock__center .btn {
        min-height: 36px;
        padding: 0 12px;
        font-size: 9px;
    }

    .jury-clock__card {
        width: 86px;
        min-height: 122px;
        gap: 8px;
        padding: 9px 7px;
        border-radius: 16px;
    }

    .jury-clock__card img {
        width: 54px;
        height: 54px;
    }

    .jury-clock__card h3 {
        font-size: 9px;
        line-height: 1.2;
    }
}

.nav__icon--account {
    color: #fff;
    border-color: rgba(191, 215, 53, 0.45);
    background: rgba(191, 215, 53, 0.06);
}

.nav__icon--account:hover {
    color: #071014;
    background: var(--lime);
    border-color: var(--lime);
}

.nav__icon--account svg {
    width: 18px;
    height: 18px;
}


/* =========================
   ACCOUNT PAGE
========================= */

.account-page {
    min-height: calc(100vh - 160px);
    background:
        radial-gradient(circle at 18% 12%, rgba(225, 59, 145, 0.12), transparent 30%),
        radial-gradient(circle at 86% 34%, rgba(37, 184, 216, 0.1), transparent 32%);
}

.account-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 42px;
}

.account-hero__content {
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.035);
}

.account-hero__content h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(38px, 5vw, 74px);
    line-height: 0.98;
    font-weight: 800;
    text-transform: uppercase;
}

.account-hero__content p {
    max-width: 820px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.account-hero__note {
    padding: 38px;
    border: 1px solid rgba(191, 215, 53, 0.38);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(191, 215, 53, 0.1), rgba(37, 184, 216, 0.06)),
        var(--bg-soft);
    box-shadow: var(--shadow);
}

.account-hero__note span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--lime);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.account-hero__note h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
}

.account-hero__note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.account-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: start;
}

.account-card {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
        var(--bg-soft);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.account-card--register {
    border-color: rgba(225, 59, 145, 0.34);
}

.account-card__head {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.account-card__head > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(37, 184, 216, 0.42);
    border-radius: 50%;
    color: var(--blue);
    background: rgba(37, 184, 216, 0.08);
    font-weight: 900;
}

.account-card__head h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 30px;
    line-height: 1.15;
}

.account-card__head p {
    margin: 0;
    color: var(--muted);
}

.account-form {
    display: grid;
    gap: 16px;
}

.account-form label {
    display: grid;
    gap: 8px;
}

.account-form label > span {
    color: #dce4e7;
    font-size: 13px;
    font-weight: 800;
}

.account-form input[type="text"],
.account-form input[type="email"],
.account-form input[type="tel"],
.account-form input[type="password"] {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    outline: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
    transition: 0.25s ease;
}

.account-form input:focus {
    border-color: rgba(225, 59, 145, 0.75);
    box-shadow: 0 0 0 4px rgba(225, 59, 145, 0.08);
}

.account-form__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 4px 0 8px;
}

.account-checkbox {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px !important;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.account-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--pink);
    flex-shrink: 0;
}

.account-checkbox span {
    color: var(--muted) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.account-checkbox--full {
    margin-top: 4px;
}

.account-link {
    color: var(--pink);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.account-link:hover {
    color: #fff;
}

.account-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.account-info article {
    min-height: 305px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
    transition: 0.25s ease;
}

.account-info article p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.account-info article .btn {
    width: fit-content;
    margin-top: auto;
}
.account-info__empty-action {
    width: fit-content;
    margin-top: auto;
    color: var(--lime);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    pointer-events: none;
}
.account-info article:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 184, 216, 0.45);
}

.account-info span {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--lime);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.account-info h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 22px;
    line-height: 1.25;
}

.account-info p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* ADAPTIVE */

@media (max-width: 1040px) {
    .account-hero,
    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .account-hero__content,
    .account-hero__note,
    .account-card,
    .account-info article {
        padding: 24px;
    }

    .account-hero__content h1 {
        font-size: clamp(34px, 12vw, 52px);
    }

    .account-card__head {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .account-form__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .account-info {
        grid-template-columns: 1fr;
    }
}


/* =========================
   NOMINATIONS CARDS + MODALS
========================= */

.nominations-page {
    background:
        radial-gradient(circle at 14% 12%, rgba(225, 59, 145, 0.08), transparent 30%),
        radial-gradient(circle at 88% 38%, rgba(37, 184, 216, 0.08), transparent 32%);
}

.nominations-page__grid {
    align-items: stretch;
}

.nominations-page .nomination-card {
    position: relative;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
        var(--bg-soft);
    color: inherit;
    cursor: pointer;
    transition: 0.28s ease;
}

.nominations-page .nomination-card:hover {
    transform: translateY(-7px);
    border-color: rgba(225, 59, 145, 0.58);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.nominations-page .nomination-card:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 4px;
}

.nominations-page .nomination-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(135deg, rgba(225, 59, 145, 0.12), rgba(37, 184, 216, 0.08));
    opacity: 0;
    pointer-events: none;
    transition: 0.28s ease;
}

.nominations-page .nomination-card:hover::before {
    opacity: 1;
}

.nominations-page .nomination-card__image {
    width: 100%;
    height: 190px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 26px 26px 0 0;
    background: #16232b;
}

.nominations-page .nomination-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.38s ease;
}

.nominations-page .nomination-card:hover .nomination-card__image img {
    transform: scale(1.06);
}

.nominations-page .nomination-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.04), rgba(7, 16, 20, 0.42)),
        rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

.nominations-page .nomination-card h3 {
    position: relative;
    z-index: 4;
    margin: 0;
    padding: 30px 32px 0;
    color: #fff;
    font-size: 26px;
    line-height: 1.18;
}

.nominations-page .nomination-card p {
    position: relative;
    z-index: 4;
    margin: 0;
    padding: 18px 32px 32px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.nomination-modal {
    position: fixed;
    z-index: 900;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.nomination-modal.is-open {
    display: flex;
}

.nomination-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(12px);
}

.nomination-modal__content {
    position: relative;
    z-index: 2;
    width: min(100%, 860px);
    max-height: min(84vh, 760px);
    overflow-y: auto;
    padding: 42px;
    border: 1px solid rgba(225, 59, 145, 0.45);
    border-radius: 30px;
    background:
        radial-gradient(circle at 12% 10%, rgba(225, 59, 145, 0.13), transparent 28%),
        radial-gradient(circle at 92% 20%, rgba(37, 184, 216, 0.1), transparent 30%),
        #0b151b;
    box-shadow: var(--shadow);
    animation: nominationModalOpen 0.28s ease both;
}

.nomination-modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #0b151b;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: 0.25s ease;
}

.nomination-modal__close:hover {
    background: var(--pink);
    border-color: var(--pink);
}

.nomination-modal h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    text-transform: uppercase;
}

.nomination-modal p {
    margin: 0 0 16px;
    color: var(--text);
    line-height: 1.75;
}

.nomination-modal ul {
    margin: 8px 0 22px;
    padding-left: 22px;
}

.nomination-modal li {
    margin-bottom: 8px;
    color: var(--muted);
    line-height: 1.65;
}

@keyframes nominationModalOpen {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 720px) {
    .nominations-page .nomination-card {
        min-height: auto;
    }

    .nominations-page .nomination-card__image {
        height: 175px;
    }

    .nominations-page .nomination-card h3 {
        padding: 24px 24px 0;
        font-size: 23px;
    }

    .nominations-page .nomination-card p {
        padding: 16px 24px 24px;
        font-size: 15px;
    }

    .nomination-modal {
        padding: 14px;
    }

    .nomination-modal__content {
        padding: 26px;
        border-radius: 24px;
        max-height: 88vh;
    }

    .nomination-modal__close {
        top: 18px;
        right: 18px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .nomination-modal h2 {
        padding-right: 48px;
        font-size: 26px;
    }
}

/* =========================
   APPLICATION PAGE
========================= */

.application-page {
    min-height: calc(100vh - 160px);
    background:
        radial-gradient(circle at 16% 12%, rgba(225, 59, 145, 0.12), transparent 30%),
        radial-gradient(circle at 86% 38%, rgba(37, 184, 216, 0.1), transparent 32%);
}

.application-page__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: start;
}

.application-page__content {
    position: sticky;
    top: 120px;
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.035);
}

.application-page__content h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 0.98;
    text-transform: uppercase;
}

.application-page__content p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.application-info {
    margin-top: 30px;
    padding: 26px;
    border: 1px solid rgba(191, 215, 53, 0.35);
    border-radius: 24px;
    background: rgba(191, 215, 53, 0.06);
}

.application-info h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 22px;
}

.application-info ul {
    margin: 0;
    padding-left: 20px;
}

.application-info li {
    margin-bottom: 10px;
    color: var(--muted);
    line-height: 1.55;
}

.application-info li:last-child {
    margin-bottom: 0;
}

.application-form-card {
    padding: 38px;
    border: 1px solid rgba(225, 59, 145, 0.4);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(225, 59, 145, 0.12), rgba(37, 184, 216, 0.06)),
        var(--bg-soft);
    box-shadow: var(--shadow);
}

.application-form-card h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 36px;
    line-height: 1.15;
}

.application-form-card > p {
    margin: 0 0 28px;
    color: var(--muted);
    line-height: 1.7;
}

.application-form {
    display: grid;
    gap: 17px;
}

.application-form label {
    display: grid;
    gap: 8px;
}

.application-form label > span {
    color: #dce4e7;
    font-size: 13px;
    font-weight: 800;
}

.application-form input,
.application-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    outline: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
    transition: 0.25s ease;
}

.application-form input {
    height: 54px;
    padding: 0 16px;
}

.application-form textarea {
    min-height: 130px;
    resize: vertical;
    padding: 16px;
}

.application-form input:focus,
.application-form textarea:focus {
    border-color: rgba(225, 59, 145, 0.75);
    box-shadow: 0 0 0 4px rgba(225, 59, 145, 0.08);
}

/* SELECT */
.application-form select {
    width: 100%;
    height: 54px;
    padding: 0 48px 0 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    outline: none;
    color: #fff;
    background:
        linear-gradient(45deg, transparent 50%, var(--pink) 50%),
        linear-gradient(135deg, var(--pink) 50%, transparent 50%),
        rgba(255, 255, 255, 0.045);
    background-position:
        calc(100% - 23px) 24px,
        calc(100% - 17px) 24px,
        0 0;
    background-size:
        6px 6px,
        6px 6px,
        100% 100%;
    background-repeat: no-repeat;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: 0.25s ease;
}

.application-form select:focus {
    border-color: rgba(225, 59, 145, 0.75);
    box-shadow: 0 0 0 4px rgba(225, 59, 145, 0.08);
}

.application-form select option {
    color: #fff;
    background: #0b151b;
}

.application-form select option:checked {
    color: #fff;
    background: #e13b91;
}

/* CHECKBOX */
.application-checkbox {
    display: flex !important;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px !important;
    margin-top: 6px;
}

.application-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--pink);
    flex-shrink: 0;
}

.application-checkbox span {
    color: var(--muted) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.55;
}

.application-form .btn {
    width: 100%;
    margin-top: 8px;
}

/* ADAPTIVE */

@media (max-width: 1040px) {
    .application-page__grid {
        grid-template-columns: 1fr;
    }

    .application-page__content {
        position: static;
    }
}

@media (max-width: 720px) {
    .application-page__content,
    .application-form-card {
        padding: 24px;
        border-radius: 26px;
    }

    .application-page__content h1 {
        font-size: clamp(34px, 12vw, 52px);
    }

    .application-form-card h2 {
        font-size: 30px;
    }

    .application-form select,
    .application-form input {
        height: 52px;
    }
}


.application-field {
    display: grid;
    gap: 8px;
}

.application-field__label {
    color: #dce4e7;
    font-size: 13px;
    font-weight: 800;
}

.custom-select {
    position: relative;
    z-index: 20;
}

.custom-select__button {
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    outline: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
    cursor: pointer;
    transition: 0.25s ease;
}

.custom-select__button:hover,
.custom-select.is-open .custom-select__button {
    border-color: rgba(225, 59, 145, 0.75);
    box-shadow: 0 0 0 4px rgba(225, 59, 145, 0.08);
}

.custom-select__button i {
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--pink);
    border-bottom: 2px solid var(--pink);
    transform: rotate(45deg) translateY(-3px);
    transition: 0.25s ease;
    flex-shrink: 0;
}

.custom-select.is-open .custom-select__button i {
    transform: rotate(225deg) translateY(-1px);
}

.custom-select__dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 50;
    display: grid;
    max-height: 285px;
    overflow-y: auto;
    padding: 8px;
    border: 1px solid rgba(225, 59, 145, 0.45);
    border-radius: 18px;
    background:
        radial-gradient(circle at 10% 0%, rgba(225, 59, 145, 0.12), transparent 34%),
        #0b151b;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.22s ease;
}

.custom-select.is-open .custom-select__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select__dropdown button {
    width: 100%;
    padding: 13px 14px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: #dce4e7;
    text-align: left;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

.custom-select__dropdown button:hover {
    color: #fff;
    background: rgba(225, 59, 145, 0.18);
}

.custom-select__dropdown button.is-selected {
    color: #071014;
    background: var(--lime);
    font-weight: 800;
}
.custom-select-error {
    min-height: 18px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 700;
}
.form-field-error {
    min-height: 18px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 700;
}

/* =========================
   APPLICATION FILE FIELD
========================= */

.application-file-field small {
    margin-top: -2px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.application-file-field input[type="file"] {
    height: auto;
    padding: 16px;
    cursor: pointer;
}

.application-file-field input[type="file"]::file-selector-button {
    margin-right: 14px;
    padding: 10px 14px;
    border: none;
    border-radius: 12px;
    background: var(--pink);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

/* =========================
   APPLICATION SUCCESS PAGE
========================= */

.application-success-page {
    min-height: calc(100vh - 160px);
    background:
        radial-gradient(circle at 18% 12%, rgba(225, 59, 145, 0.12), transparent 30%),
        radial-gradient(circle at 86% 38%, rgba(37, 184, 216, 0.1), transparent 32%);
}

.application-success-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: stretch;
    padding: 38px;
    border: 1px solid rgba(225, 59, 145, 0.4);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(225, 59, 145, 0.12), rgba(37, 184, 216, 0.06)),
        var(--bg-soft);
    box-shadow: var(--shadow);
}

.application-success-card__content h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 0.98;
    text-transform: uppercase;
}

.application-success-card__content p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.application-success-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 30px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
}

.application-success-status span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.application-success-status strong {
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.application-success-status .is-paid {
    color: var(--lime);
}

.application-success-status .is-unpaid {
    color: var(--pink);
}

.application-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.application-success-preview {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.035);
}

.application-success-preview img {
    width: 100%;
    height: 340px;
    display: block;
    object-fit: cover;
    background: #16232b;
}

.application-success-preview div {
    padding: 26px;
}

.application-success-preview span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--lime);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.application-success-preview h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 26px;
    line-height: 1.2;
}

.application-success-preview p {
    margin: 0;
    color: var(--muted);
}

@media (max-width: 1040px) {
    .application-success-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .application-success-card {
        padding: 24px;
        border-radius: 26px;
    }

    .application-success-card__content h1 {
        font-size: clamp(34px, 12vw, 52px);
    }

    .application-success-status {
        align-items: flex-start;
        flex-direction: column;
    }

    .application-success-actions {
        flex-direction: column;
    }

    .application-success-actions .btn {
        width: 100%;
    }

    .application-success-preview img {
        height: 240px;
    }
}

/* =========================
   CEREMONY MAIN PHOTO
========================= */

.ceremony-main-photo {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: clamp(260px, 42vw, 520px);
    margin-bottom: 54px;
    border: 1px solid rgba(225, 59, 145, 0.36);
    border-radius: 34px;
    background: #16232b;
    box-shadow: var(--shadow);
}

.ceremony-main-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(7, 16, 20, 0.08), rgba(7, 16, 20, 0.62)),
        radial-gradient(circle at 20% 20%, rgba(225, 59, 145, 0.18), transparent 34%),
        radial-gradient(circle at 82% 42%, rgba(37, 184, 216, 0.14), transparent 36%);
    pointer-events: none;
}

.ceremony-main-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: 0.45s ease;
}

.ceremony-main-photo:hover img {
    transform: scale(1.035);
}

@media (max-width: 720px) {
    .ceremony-main-photo {
        height: 240px;
        margin-bottom: 36px;
        border-radius: 24px;
    }
}

.contacts-map__visual--image {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 0;
    border: 1px solid rgba(37, 184, 216, 0.32);
    border-radius: 28px;
    background: #16232b;
}

.contacts-map__visual--image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(7, 16, 20, 0.08), rgba(7, 16, 20, 0.48)),
        radial-gradient(circle at 20% 20%, rgba(225, 59, 145, 0.16), transparent 34%),
        radial-gradient(circle at 82% 42%, rgba(37, 184, 216, 0.14), transparent 36%);
    pointer-events: none;
}

.contacts-map__visual--image img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: 0.4s ease;
}

.contacts-map__visual--image:hover img {
    transform: scale(1.04);
}

@media (max-width: 720px) {
    .contacts-map__visual--image {
        min-height: 210px;
        border-radius: 22px;
    }

    .contacts-map__visual--image img {
        min-height: 210px;
    }
}


/* =========================
   PROFILE PAGE
========================= */

.profile-page {
    background:
        radial-gradient(circle at 14% 12%, rgba(225, 59, 145, 0.1), transparent 30%),
        radial-gradient(circle at 86% 32%, rgba(37, 184, 216, 0.08), transparent 32%);
}

.profile-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 34px;
    padding: 38px;
    border: 1px solid rgba(225, 59, 145, 0.36);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(225, 59, 145, 0.1), rgba(37, 184, 216, 0.05)),
        var(--bg-soft);
    box-shadow: var(--shadow);
}

.profile-hero h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 0.98;
    text-transform: uppercase;
}

.profile-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.profile-card,
.profile-section,
.profile-empty {
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.035);
}

.profile-card {
    padding: 28px;
}

.profile-card__head {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.profile-card__head span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    font-weight: 900;
}

.profile-card__head h2,
.profile-section__head h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
}

.profile-info-list,
.profile-status-list {
    display: grid;
    gap: 14px;
}

.profile-info-list div,
.profile-status-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.profile-info-list div:last-child,
.profile-status-list div:last-child {
    border-bottom: none;
}

.profile-info-list span,
.profile-status-list span {
    color: var(--muted);
    font-size: 14px;
}

.profile-info-list strong,
.profile-status-list strong {
    color: #fff;
    text-align: right;
}

.profile-status-list .is-active {
    color: var(--lime);
}

.profile-status-list .is-muted {
    color: var(--muted);
}

.profile-section {
    margin-top: 28px;
    padding: 28px;
}

.profile-section__head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.profile-table {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
}

.profile-table__row {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.8fr 0.7fr;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
}

.profile-table__row:last-child {
    border-bottom: none;
}

.profile-table__row--head {
    background: rgba(255, 255, 255, 0.055);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-table__row span {
    color: #fff;
    line-height: 1.4;
}

.profile-badge {
    display: inline-flex;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.profile-badge--paid {
    color: #071014;
    background: var(--lime);
}

.profile-badge--unpaid {
    color: #fff;
    background: rgba(225, 59, 145, 0.85);
}

.profile-empty {
    padding: 28px;
}

.profile-empty h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 24px;
}

.profile-empty p {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .profile-hero,
    .profile-section__head {
        flex-direction: column;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-table {
        overflow-x: auto;
    }

    .profile-table__row {
        min-width: 760px;
    }
}

@media (max-width: 720px) {
    .profile-hero,
    .profile-card,
    .profile-section,
    .profile-empty {
        padding: 24px;
        border-radius: 24px;
    }

    .profile-info-list div,
    .profile-status-list div {
        flex-direction: column;
        gap: 6px;
    }

    .profile-info-list strong,
    .profile-status-list strong {
        text-align: left;
    }
}

.account-messages {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.account-message {
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid var(--border);
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
}

.account-message--error {
    border-color: rgba(225, 59, 145, 0.6);
    background: rgba(225, 59, 145, 0.12);
}

.account-message--success {
    border-color: rgba(191, 215, 53, 0.55);
    background: rgba(191, 215, 53, 0.1);
}

.form-field-error {
    min-height: 18px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 700;
}

/* =========================
   PROFILE APPLICATIONS PAYMENT
========================= */

.profile-table--applications .profile-table__row {
    grid-template-columns: 1.35fr 1fr 0.55fr 0.75fr 0.7fr;
}

.profile-project-title {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
}

.profile-table__row small {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.profile-badge--pending {
    color: #071014;
    background: #25b8d8;
}

.profile-badge--failed {
    color: #fff;
    background: #777;
}

.profile-pay-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(225, 59, 145, 0.65);
    border-radius: 999px;
    color: #fff;
    background: rgba(225, 59, 145, 0.18);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.25s ease;
}

.profile-pay-link:hover {
    background: var(--pink);
    border-color: var(--pink);
    box-shadow: 0 14px 34px rgba(225, 59, 145, 0.28);
}

.profile-action-done {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    color: var(--lime);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .profile-table--applications .profile-table__row {
        min-width: 920px;
    }
}
.application-success-status .is-pending {
    color: #25b8d8;
}

.application-success-status .is-failed {
    color: #ff7777;
}

.application-success-info {
    display: grid;
    gap: 12px;
    margin-top: 26px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
}

.application-success-info div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.application-success-info div:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.application-success-info span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.application-success-info strong {
    color: #fff;
    text-align: right;
}

@media (max-width: 720px) {
    .application-success-info div {
        flex-direction: column;
        gap: 6px;
    }

    .application-success-info strong {
        text-align: left;
    }
}


/* =========================
   PURCHASE PAGES
========================= */

.purchase-page {
    background:
        radial-gradient(circle at 14% 12%, rgba(225, 59, 145, 0.11), transparent 30%),
        radial-gradient(circle at 86% 34%, rgba(37, 184, 216, 0.09), transparent 32%);
}

.purchase-hero {
    margin-bottom: 30px;
    padding: 38px;
    border: 1px solid rgba(225, 59, 145, 0.36);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(225, 59, 145, 0.1), rgba(37, 184, 216, 0.05)),
        var(--bg-soft);
    box-shadow: var(--shadow);
}

.purchase-hero h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 0.98;
    text-transform: uppercase;
}

.purchase-hero p {
    max-width: 820px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.purchase-form {
    display: grid;
    gap: 28px;
}

.purchase-user-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.035);
}

.purchase-user-card h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 30px;
}

.purchase-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.purchase-fields label,
.purchase-comment {
    display: grid;
    gap: 8px;
}

.purchase-fields span,
.purchase-comment span {
    color: #dce4e7;
    font-size: 13px;
    font-weight: 800;
}

.purchase-fields input,
.purchase-comment textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    outline: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
    transition: 0.25s ease;
}

.purchase-fields input {
    height: 54px;
    padding: 0 16px;
}

.purchase-comment {
    margin-top: 16px;
}

.purchase-comment textarea {
    min-height: 120px;
    padding: 16px;
    resize: vertical;
}

.purchase-fields input:focus,
.purchase-comment textarea:focus {
    border-color: rgba(225, 59, 145, 0.75);
    box-shadow: 0 0 0 4px rgba(225, 59, 145, 0.08);
}

.purchase-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.purchase-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--pink);
    flex-shrink: 0;
}

.purchase-cards {
    display: grid;
    gap: 22px;
    align-items: stretch;
}

.purchase-cards--two {
    grid-template-columns: repeat(2, 1fr);
}

.purchase-cards--three {
    grid-template-columns: repeat(3, 1fr);
}

.purchase-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
        var(--bg-soft);
    transition: 0.25s ease;
}

.purchase-card--accent {
    border-color: rgba(225, 59, 145, 0.48);
    box-shadow: 0 24px 70px rgba(225, 59, 145, 0.08);
}

.purchase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(225, 59, 145, 0.58);
}

.purchase-card__top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.purchase-card__top span {
    color: var(--lime);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.purchase-card__top strong {
    color: #fff;
    font-size: 24px;
    white-space: nowrap;
}

.purchase-card h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 30px;
    line-height: 1.12;
}

.purchase-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.purchase-card ul {
    margin: 0 0 24px;
    padding-left: 20px;
}

.purchase-card li {
    margin-bottom: 9px;
    color: var(--muted);
    line-height: 1.55;
}

.purchase-card .btn {
    width: 100%;
    margin-top: auto;
}

.purchase-card button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 1100px) {
    .purchase-cards--three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .purchase-cards--two {
        grid-template-columns: 1fr;
    }

    .purchase-fields {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .purchase-hero,
    .purchase-user-card,
    .purchase-card {
        padding: 24px;
        border-radius: 24px;
    }

    .purchase-hero h1 {
        font-size: clamp(34px, 12vw, 52px);
    }

    .purchase-card h2 {
        font-size: 26px;
    }

    .purchase-card__top {
        flex-direction: column;
    }
}

.application-messages {
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
    margin-bottom: 4px;
}

.application-message {
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
}

.application-message--error {
    border-color: rgba(225, 59, 145, 0.6);
    background: rgba(225, 59, 145, 0.12);
}

.application-message--success {
    border-color: rgba(191, 215, 53, 0.55);
    background: rgba(191, 215, 53, 0.1);
}


.profile-badge--refunded {
    color: #fff;
    background: #6f6f6f;
}

.profile-badge--canceled {
    color: #fff;
    background: #555;
}

.profile-action-refunded {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

/* =========================
   PROFILE TICKETS + PARTNERS
========================= */

.profile-table--tickets .profile-table__row,
.profile-table--partners .profile-table__row {
    grid-template-columns: 1.25fr 0.55fr 0.85fr 0.75fr 0.7fr;
}

.profile-badge--refunded {
    color: #fff;
    background: #6f6f6f;
}

.profile-badge--canceled {
    color: #fff;
    background: #555;
}

.profile-action-refunded {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .profile-table--tickets .profile-table__row,
    .profile-table--partners .profile-table__row {
        min-width: 960px;
    }
}