:root {
    --gold: #C89B3C;
    --gold-lt: #E8C97A;
    --gold-dk: #9A7428;
    --dark: #080808;
    --dark2: #101010;
    --dark3: #181818;
    --nav-bg: rgba(235, 225, 205, 0.97);
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.52);
    --border: rgba(200, 155, 60, 0.14);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --fd: 'Cormorant Garamond', Georgia, serif;
    --fb: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fb);
    background: var(--dark);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
}

.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fb);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.sec-label::before {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: var(--gold);
    opacity: .7;
}

.sec-label--center {
    justify-content: center;
}

.sec-title {
    font-family: var(--fd);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 18px;
}

.sec-title em {
    font-style: italic;
    color: var(--gold-lt);
}

.sec-body {
    font-size: 15px;
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.60);
}

.anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.anim.in {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .06s;
}

.d2 {
    transition-delay: .14s;
}

.d3 {
    transition-delay: .23s;
}

.d4 {
    transition-delay: .33s;
}

.d5 {
    transition-delay: .44s;
}

.navbar-c {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--nav-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(200, 155, 60, 0.28);
    transition: box-shadow .3s;
}

.navbar-c.s {
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.14);
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 22px;
    height: 86px;
    max-width: 1440px;
    margin: 0 auto;
    gap: 18px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 94px;
    flex-shrink: 0;
}

.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.nav-links-d {
    display: none;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 2px;
    min-width: 0;
}

.nl {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .045em;
    text-transform: uppercase;
    color: #3a3020;
    text-decoration: none;
    padding: 8px 9px;
    border-radius: 6px;
    transition: color .2s, background .2s;
    white-space: nowrap;
    border: 0;
    background: transparent;
    font-family: var(--fb);
    line-height: 1.2;
}

.nl:hover,
.nl.active,
.nav-drop:focus-within .nav-drop-btn,
.nav-drop:hover .nav-drop-btn {
    color: var(--gold-dk);
    background: rgba(200, 155, 60, 0.10);
}

.nav-drop {
    position: relative;
}

.nav-drop-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-drop-btn i {
    font-size: 9px;
}

.nav-drop-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 168px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(238, 229, 210, .99);
    border: 1px solid rgba(200, 155, 60, .22);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s, transform .2s, visibility .2s;
}

.nav-drop-menu a {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 0 11px;
    border-radius: 6px;
    color: #3a3020;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .055em;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-drop-menu a:hover {
    background: rgba(200, 155, 60, .12);
    color: var(--gold-dk);
}

.nav-drop:focus-within .nav-drop-menu,
.nav-drop:hover .nav-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.8px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #3a3020;
    background: transparent;
    border: 1.5px solid rgba(200, 155, 60, 0.45);
    border-radius: 50px;
    padding: 9px 15px;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}

.btn-login:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.btn-login.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.btn-reg-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.8px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #fff;
    background: var(--gold-dk);
    border: none;
    border-radius: 50px;
    padding: 10px 18px;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}

.btn-reg-nav:hover {
    background: var(--gold);
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1.5px solid rgba(200, 155, 60, 0.35);
    border-radius: 8px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 19px;
    height: 1.5px;
    background: #3a3020;
    border-radius: 2px;
    transition: transform .25s, opacity .2s;
}

.burger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mob-drawer {
    display: none;
    flex-direction: column;
    background: rgba(238, 229, 210, 0.99);
    border-top: 1px solid rgba(200, 155, 60, 0.18);
    padding: 8px 0 16px;
}

.mob-drawer.open {
    display: flex;
}

.dlink {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #3a3020;
    text-decoration: none;
    padding: 13px 28px;
    border-bottom: 1px solid rgba(200, 155, 60, 0.07);
    transition: color .15s, background .15s;
}

.drawer-group {
    border-bottom: 1px solid rgba(200, 155, 60, 0.07);
}

.drawer-group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #3a3020;
    padding: 13px 28px 8px;
}

.drawer-group-title i {
    font-size: 13px;
    color: var(--gold-dk);
    width: 16px;
    text-align: center;
}

.dlink-sub {
    padding-left: 56px;
    font-size: 12px;
    border-bottom: 0;
}

.dlink i {
    font-size: 13px;
    color: var(--gold-dk);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.dlink:hover {
    color: var(--gold-dk);
    background: rgba(200, 155, 60, 0.07);
}

.dlink.active {
    color: var(--gold-dk);
    background: rgba(200, 155, 60, 0.10);
}

.dcta {
    display: flex;
    gap: 10px;
    padding: 16px 24px 0;
}

.dcta a {
    flex: 1;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 12px 0;
    text-decoration: none;
    transition: all .2s;
}

.dcta .cg {
    background: var(--gold-dk);
    color: #fff;
    border: 2px solid var(--gold-dk);
}

.dcta .cg:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.dcta .co {
    background: transparent;
    color: #3a3020;
    border: 2px solid rgba(58, 48, 32, .28);
}

.dcta .co:hover {
    background: #3a3020;
    color: #fff;
    border-color: #3a3020;
}

.hero {
    position: relative;
    min-height: calc(100svh - 86px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, .18), rgba(8, 8, 8, .88)),
        var(--dark);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.4s var(--ease), transform 9s var(--ease);
    will-change: opacity, transform;
}

.hero-slide.specialslide {
    background-size: contain;
    background-position: right;
}

.hero-slide.active {
    opacity: 0.92;
    transform: scale(1);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 8, 8, 0.42);
    border: 1.5px solid rgba(200, 155, 60, 0.32);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background .25s, border-color .25s, color .25s, transform .25s;
}

.hero-arrow:hover {
    background: rgba(200, 155, 60, 0.22);
    border-color: var(--gold);
    color: var(--gold-lt);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow--prev {
    left: 28px;
}

.hero-arrow--next {
    right: 28px;
}

@media (max-width: 575px) {
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .hero-arrow--prev { left: 14px; }
    .hero-arrow--next { right: 14px; }
}

.hero-ov1 {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .78) 43%, rgba(5, 5, 5, .42) 72%, rgba(5, 5, 5, .78) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, .26) 0%, rgba(5, 5, 5, .84) 100%);
    z-index: 1;
}

.hero-ov2 {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 25% 50%, rgba(232, 201, 122, 0.13) 0%, transparent 68%),
        radial-gradient(ellipse 75% 55% at 50% 100%, rgba(200, 155, 60, 0.10) 0%, transparent 68%);
    z-index: 2;
}

.htop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-lt), var(--gold), transparent);
    z-index: 5;
    opacity: .65;
}

.hcorner-tl,
.hcorner-br {
    position: absolute;
    width: 90px;
    height: 90px;
    z-index: 3;
    pointer-events: none;
}

.hcorner-tl {
    top: 40px;
    left: 40px;
    border-left: 1px solid rgba(200, 155, 60, 0.22);
    border-top: 1px solid rgba(200, 155, 60, 0.22);
}

.hcorner-br {
    bottom: 72px;
    right: 40px;
    border-right: 1px solid rgba(200, 155, 60, 0.22);
    border-bottom: 1px solid rgba(200, 155, 60, 0.22);
}

.hcontent {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 24px;
    text-align: center;
}

.hero-logo {
    width: clamp(92px, 11vw, 145px);
    width: 240px;
    /* height: auto; */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 22px;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .42));
}

.h-edition {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* font-size: clam(.2rem, 2vw, 1.2rem); */
    font-size: clamp(0.8rem, 1vw + 0.5rem, 1rem);
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.h-edition::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: .6;
}

.h-title {
    font-family: var(--fd);
    /* font-size: clamp(3.1rem, 7.6vw, 7rem); */
    /* font-size: clamp(2.8rem, 5.8vw, 5rem); */
    font-size: 3.3rem;
    font-weight: 300;
    line-height: .95;
    letter-spacing: -.01em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 22px 52px rgba(0, 0, 0, .48);
}

.h-title em {
    font-style: italic;
    color: var(--gold-lt);
}

.h-sub {
    font-family: var(--fd);
    /* font-size: clamp(1.3rem, 3vw, 2.6rem); */
    /* font-size: clamp(1.8rem, 4.8vw, 4rem); */
    font-size: 2.3rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, .68);
    letter-spacing: .06em;
    margin-bottom: 24px;
}

.h-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* font-size: 13px; */
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 10px 18px;
    border-radius: 50px;
}

.chip-w {
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
}

.chip-g {
    /* background: rgba(255, 255, 255, .07); */
    color: rgba(255, 255, 255, .85);
    border: 2px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px);
}

.chip-g i {
    color: var(--gold);
}

.h-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.btn-gp {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    /* font-size: 12px; */
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 16px 36px;
    text-decoration: none;
    transition: all .3s var(--ease);
}

.btn-gp i,
.btn-op i {
    font-size: 11px;
}

.btn-gp:hover {
    background: var(--gold-lt);
    border-color: var(--gold-lt);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(200, 155, 60, .38);
}

.btn-op {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    /* font-size: 12px; */
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .32);
    border-radius: 50px;
    padding: 16px 36px;
    text-decoration: none;
    transition: all .3s var(--ease);
}

.btn-op:hover {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .58);
    transform: translateY(-2px);
}

.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

.stats {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.stats-g {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.stat {
    text-align: center;
    padding: 20px 12px;
    position: relative;
}

.stat+.stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(200, 155, 60, 0.14);
}

.stat-n {
    font-family: var(--fd);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--gold-lt);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-suffix {
    font-size: 55%;
    color: var(--gold);
}

.stat-l {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

.welcome {
    padding: 110px 0;
    background:
        linear-gradient(180deg, rgba(200, 155, 60, .035), transparent 34%),
        var(--dark);
}

.welcome-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
    align-items: center;
}

.welcome-copy {
    min-width: 0;
}

.welcome-img {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--dark2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.welcome-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .36));
    pointer-events: none;
}

.welcome-img img {
    width: 100%;
    height: 100%;
    object-position: right;
    object-fit: contain;
}

.welcome-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
        var(--dark2);
    border: 1px solid rgba(200, 155, 60, .22);
    border-radius: 8px;
    padding: clamp(30px, 4vw, 50px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 3px;
    right: auto;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.welcome-quote {
    font-family: var(--fd);
    font-size: clamp(1.1rem, 2.2vw, 1.55rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 28px;
}

.welcome-sig {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--gold);
}

.expect {
    padding: 100px 0;
    background: var(--dark2);
    position: relative;
}

.expect::before,
.expect::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 155, 60, .25), transparent);
}

.expect::before {
    top: 0;
}

.expect::after {
    bottom: 0;
}

.expect-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ecard {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: border-color .25s, transform .25s;
}

.ecard:hover {
    border-color: rgba(200, 155, 60, .38);
    transform: translateY(-3px);
}

.ecard-ic {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(200, 155, 60, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
}

.ecard-title {
    font-family: var(--fd);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
}

.ecard-body {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--muted);
}

.tracks {
    padding: 100px 0;
    background: var(--dark);
}

.tracks-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.tracks-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 24px;
    margin-bottom: 48px;
}

.track-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 14px;
}

.track {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .25s;
}

.track:hover {
    border-color: rgba(200, 155, 60, .38);
}

.track-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 26px;
    cursor: pointer;
    user-select: none;
}

.track-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(200, 155, 60, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
}

.track-name {
    font-family: var(--fd);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    flex: 1;
}

.track-arrow {
    font-size: 12px;
    color: var(--muted);
    transition: transform .3s;
    flex-shrink: 0;
}

.track.open .track-arrow {
    transform: rotate(180deg);
}

.track-body {
    display: none;
    padding: 0 26px 22px 86px;
    list-style: none;
}

.track.open .track-body {
    display: block;
}

.track-body li {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .62);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.track-body li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 8px;
    opacity: .7;
}

.panels {
    padding: 80px 0;
    background: var(--dark2);
    position: relative;
}

.panels::before,
.panels::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 155, 60, .22), transparent);
}

.panels::before {
    top: 0;
}

.panels::after {
    bottom: 0;
}

.panels-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.panel-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.panel-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: border-color .25s, transform .25s;
}

.panel-card:hover {
    border-color: rgba(200, 155, 60, .38);
    transform: translateY(-3px);
}

.panel-card i {
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.panel-card-title {
    font-family: var(--fd);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.panel-card-body {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

.committee {
    padding: 100px 0;
    background: var(--dark);
}

.committee-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    gap: 28px 20px;
}

.committee-actions {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.doc-card {
    text-align: center;
}

.doc-img {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: var(--dark2);
    border: 2px solid rgba(200, 155, 60, .22);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-size: 1.7rem;
    color: var(--gold-lt);
    font-weight: 300;
}

.doc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doc-name {
    font-family: var(--fd);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

.doc-role {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
}

.people-section {
    padding: 90px 0 110px;
    background: var(--dark);
}

.people-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.people-subhead {
    margin: 70px 0 34px;
    text-align: center;
}

.faculty-grid {
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
}

.who {
    padding: 100px 0;
    background: var(--dark2);
    position: relative;
}

.who::before,
.who::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 155, 60, .22), transparent);
}

.who::before {
    top: 0;
}

.who::after {
    bottom: 0;
}

.who-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.who-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.who-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 20px;
    text-align: center;
    transition: border-color .25s, transform .25s;
}

.who-card:hover {
    border-color: rgba(200, 155, 60, .4);
    transform: translateY(-3px);
}

.who-card i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.who-card-title {
    font-family: var(--fd);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.3;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(200, 155, 60, .07);
    border: 1px solid rgba(200, 155, 60, .15);
    border-radius: 10px;
    padding: 14px 18px;
}

.bonus-item i {
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

.bonus-item span {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .78);
}

.fees {
    padding: 100px 0;
    background: var(--dark);
}

.fees-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.fee-table-wrap {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid var(--border);
    margin-bottom: 40px;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.fee-table th {
    background: var(--dark3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.fee-table th span {
    display: block;
    font-weight: 400;
    opacity: .6;
}

.fee-table td {
    font-size: 14px;
    color: rgba(255, 255, 255, .78);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.fee-table tr:last-child td {
    border-bottom: none;
}

.fee-table tr:hover td {
    background: rgba(200, 155, 60, .04);
}

.fee-table .cat {
    color: var(--white);
    font-weight: 600;
}

.fee-table .eb {
    color: var(--gold);
    font-weight: 700;
}

.ws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 14px;
    margin-bottom: 32px;
}

.ws-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 22px;
}

.ws-name {
    font-family: var(--fd);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.ws-price {
    font-family: var(--fd);
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--gold-lt);
    line-height: 1;
    margin-bottom: 10px;
}

.ws-price span {
    font-size: 1.5rem;
    color: var(--muted);
    font-weight: 400;
}

.ws-topics {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.7;
}

.info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 8px;
}

.info-box {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
}

.info-box p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.9;
}

.info-box strong {
    color: var(--gold);
    letter-spacing: .07em;
    text-transform: uppercase;
    font-size: 10.5px;
    display: block;
    margin-bottom: 4px;
}

.info-box a {
    color: var(--gold);
}

.info-box--full {
    grid-column: 1 / -1;
}

.cta-sec {
    padding: 120px 0;
    background: var(--dark2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(200, 155, 60, .08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-in {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-in .h-ctas {
    justify-content: center;
}

.cta-title {
    font-family: var(--fd);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 18px;
}

.cta-title em {
    font-style: italic;
    color: var(--gold-lt);
}

.cta-body {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .58);
    margin-bottom: 34px;
}

.cta-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
    margin-bottom: 44px;
    margin-top: 8px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .60);
}

.contact-item i {
    color: var(--gold);
    font-size: 12px;
}

.contact-item a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--gold);
}

footer {
    background:
        linear-gradient(180deg, rgba(200, 155, 60, .05), transparent 42%),
        #0c0c0c;
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 34px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(200, 155, 60, .10);
}

.footer-brand {
    padding-right: 18px;
}

.footer-brand-mark {
    width: 82px;
    height: auto;
    margin-bottom: 16px;
}

.footer-logo {
    font-family: var(--fd);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: .04em;
    color: var(--white);
    margin-bottom: 6px;
}

.footer-tagline {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: .75;
    margin-bottom: 20px;
}

.footer-brand-body {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .38);
    max-width: 330px;
    margin-bottom: 24px;
}

.footer-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    /* border-radius: 50px; */
    /* padding: 1px; */
    overflow: hidden;
    border: 1px solid rgba(200, 155, 60, .38);
    color: var(--gold-lt);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    transition: background .2s, color .2s, border-color .2s;
}

.footer-register:hover {
    /* background: var(--gold); */
    border-color: var(--gold);
    color: var(--dark);
}

.footer-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: .8;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .48);
    text-decoration: none;
    transition: color .2s;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .42);
    line-height: 1.6;
}

.footer-contact-item strong {
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    display: block;
    margin-bottom: 2px;
    font-weight: 600;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .2s;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 0;
}

.footer-pco {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .28);
    line-height: 1.6;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .04em;
    text-align: right;
}

.dash-page {
    min-height: 100vh;
    background: var(--dark);
    color: var(--white);
}

.dash-page .navbar-c {
    position: sticky;
}

.dash-main {
    min-height: calc(100vh - 86px - 92px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 24px;
}

.dash-payment-main {
    display: block;
    max-width: 1120px;
    margin: 0 auto;
    padding: 70px 24px 80px;
}

.auth-card,
.dash-card,
.pay-card {
    width: 100%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
        var(--dark2);
    border: 1px solid rgba(200, 155, 60, .22);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
    position: relative;
}

.auth-card {
    max-width: 760px;
}

.dash-card {
    max-width: 620px;
    padding: clamp(30px, 5vw, 52px);
}

.auth-card::before,
.dash-card::before,
.pay-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.auth-tab {
    font-family: var(--fb);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    background: transparent;
    border: none;
    padding: 18px;
    cursor: pointer;
    transition: color .2s;
    position: relative;
}

.auth-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .3s var(--ease);
}

.auth-tab.active {
    color: var(--gold-lt);
}

.auth-tab.active::after {
    transform: scaleX(1);
}

.auth-body,
.pay-card-body {
    padding: clamp(28px, 5vw, 48px) clamp(24px, 5vw, 48px);
}

.auth-panel {
    display: none;
}

.auth-panel.active {
    display: block;
}

.form-sec-label,
.sec-label-block {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}

.form-sec-label::before,
.sec-label-block::before {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: var(--gold);
    opacity: .7;
}

.dash-page .form-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 7px;
}

.req {
    color: #e05c5c;
    font-weight: 700;
    margin-left: 2px;
}

.dash-page .form-control,
.dash-page .form-select {
    background: rgba(24, 24, 24, .95);
    border: 1px solid rgba(200, 155, 60, .2);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--fb);
    font-size: 14px;
    min-height: 48px;
    padding: 12px 15px;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.dash-page .form-control:hover,
.dash-page .form-select:hover {
    border-color: rgba(200, 155, 60, .36);
}

.dash-page .form-control:focus,
.dash-page .form-select:focus {
    background: var(--dark3);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 155, 60, .12);
    color: var(--white);
    outline: none;
}

.dash-page .form-control::placeholder {
    color: rgba(255, 255, 255, .24);
}

.dash-page .form-select option {
    background: var(--dark2);
}

.input-wrap {
    position: relative;
}

.input-wrap .form-control {
    padding-right: 46px;
}

.field-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(200, 155, 60, .48);
    font-size: 13px;
    pointer-events: none;
}

.toggle-pw {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    pointer-events: all;
    cursor: pointer;
    transition: color .2s;
}

.toggle-pw:hover {
    color: var(--gold);
}

.opt-badge,
.optional-text {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(200, 155, 60, .62);
    border: 1px solid rgba(200, 155, 60, .22);
    border-radius: 4px;
    padding: 1px 6px;
    margin-left: 6px;
    vertical-align: middle;
}

.optional-text {
    text-transform: none;
    letter-spacing: .03em;
}

.form-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 155, 60, .18), transparent);
    margin: 30px 0;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    font-family: var(--fb);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 15px 22px;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s var(--ease);
    margin-top: 28px;
}

.btn-submit:hover {
    background: var(--gold-lt);
    border-color: var(--gold-lt);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(200, 155, 60, .3);
}

.dash-page .invalid-feedback {
    font-size: 11.5px;
    color: #e05c5c;
    margin-top: 5px;
}

.dash-page .was-validated .form-control:invalid,
.dash-page .was-validated .form-select:invalid,
.dash-page .form-control.is-invalid {
    border-color: #e05c5c;
}

.dash-page .was-validated .form-control:valid,
.dash-page .was-validated .form-select:valid {
    border-color: rgba(200, 155, 60, .42);
}

.switch-link {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--muted);
}

.switch-link button {
    background: none;
    border: none;
    color: var(--gold-lt);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.dash-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.6;
}

.dash-alert-error {
    background: rgba(224, 92, 92, .10);
    border: 1px solid rgba(224, 92, 92, .30);
    color: rgba(255, 255, 255, .76);
}

.dash-alert i {
    color: #e05c5c;
    margin-top: 3px;
}

.dash-card-title {
    font-family: var(--fd);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 16px;
}

.dash-card-title em {
    color: var(--gold-lt);
    font-style: italic;
}

.dash-card-copy {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.dash-actions {
    display: grid;
    gap: 14px;
}

.dash-action-primary {
    margin-top: 0;
}

.dash-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    transition: border-color .2s, color .2s, background .2s;
}

.dash-logout:hover {
    border-color: rgba(200, 155, 60, .44);
    background: rgba(200, 155, 60, .08);
    color: var(--gold-lt);
}

.checkout-list {
    display: grid;
    gap: 10px;
    margin: 26px 0 30px;
}

.checkout-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: var(--muted);
    font-size: 14px;
}

.checkout-list strong {
    color: rgba(255, 255, 255, .84);
    font-weight: 600;
    text-align: right;
}

.checkout-list .checkout-total {
    border-top: 1px solid rgba(200, 155, 60, .24);
    border-bottom: 0;
    margin-top: 4px;
    padding-top: 18px;
}

.checkout-list .checkout-total strong {
    color: var(--gold-lt);
    font-family: var(--fd);
    font-size: 1.6rem;
    font-weight: 500;
}

.dash-page-header {
    text-align: center;
    padding: 0 0 52px;
}

.dash-page-header h1 {
    font-family: var(--fd);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
}

.dash-page-header h1 em {
    color: var(--gold-lt);
    font-style: italic;
}

.dash-section {
    padding-bottom: 64px;
}

.dash-col-category {
    width: 22%;
}

.dash-col-workshop {
    width: 36%;
}

.fee-table th small {
    display: block;
    font-weight: 400;
    font-size: 9px;
    color: var(--muted);
    letter-spacing: .08em;
    margin-top: 2px;
}

.fee-table .price-eb {
    color: var(--gold);
    font-weight: 700;
}

.fee-table .price-reg {
    color: rgba(255, 255, 255, .78);
}

.fee-table .is-active-fee {
    position: relative;
    background: rgba(200, 155, 60, .075);
    color: var(--gold-lt);
    font-weight: 700;
}

.fee-table th.is-active-fee::after {
    content: 'Current';
    display: inline-flex;
    width: max-content;
    margin-top: 7px;
    padding: 3px 7px;
    border: 1px solid rgba(232, 201, 122, .32);
    color: var(--gold-lt);
    font-size: 9px;
    line-height: 1;
    letter-spacing: .12em;
}

.fee-table .price-sp,
.table-muted,
.table-note {
    color: var(--muted);
}

.table-muted,
.table-note {
    font-family: var(--fb);
    font-size: 13px;
    font-weight: 400;
}

.table-note {
    font-size: 12px;
    line-height: 1.7;
    margin-top: 4px;
}

.dash-price-gap {
    margin-bottom: 10px;
}

.ws-topics {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.8;
}

.ws-topics strong {
    display: block;
    color: rgba(255, 255, 255, .64);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.ws-topics span {
    display: block;
    padding-left: 8px;
}

.ws-topics span::before {
    content: '- ';
    color: var(--gold);
}

.gold-divider {
    height: 1px;
    max-width: 1060px;
    background: linear-gradient(90deg, transparent, rgba(200, 155, 60, .25), transparent);
    margin: 0 auto 64px;
}

.hod-notice {
    display: none;
    align-items: flex-start;
    gap: 12px;
    background: rgba(200, 155, 60, .08);
    border: 1px solid rgba(200, 155, 60, .28);
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 12px;
}

.hod-notice.show,
.hod-upload-wrap.show {
    display: flex;
}

.hod-upload-wrap.show {
    display: block;
    margin-top: 10px;
}

.hod-notice i,
.combo-note i {
    color: var(--gold);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.hod-notice p {
    font-size: 13px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.7;
    margin: 0;
}

.hod-notice p strong {
    color: var(--gold-lt);
    display: block;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.hod-upload-wrap,
.combo-note,
.total-row#row-ws {
    display: none;
}

.ws-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ws-check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 18px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}

.ws-check-item:hover {
    border-color: rgba(200, 155, 60, .35);
}

.ws-check-item.selected {
    border-color: var(--gold);
    background: rgba(200, 155, 60, .07);
}

.ws-check-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: pointer;
}

.ws-check-label {
    flex: 1;
}

.ws-check-label .ws-name {
    font-family: var(--fd);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 3px;
}

.ws-check-label .ws-name em {
    font-style: italic;
    color: var(--gold-lt);
}

.ws-check-label .ws-price {
    font-size: 13px;
    color: var(--gold);
    font-weight: 700;
}

.ws-check-label .ws-price .usd {
    display: none;
}

.ws-check-label .ws-price .inr {
    display: inline;
}

body.foreign .ws-check-label .ws-price .usd {
    display: inline;
}

body.foreign .ws-check-label .ws-price .inr {
    display: none;
}

.ws-check-label .ws-desc {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
    line-height: 1.6;
}

.combo-note {
    align-items: flex-start;
    gap: 10px;
    background: rgba(200, 155, 60, .06);
    border: 1px dashed rgba(200, 155, 60, .3);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

.combo-note.show,
.total-row#row-ws.show {
    display: flex;
}

.combo-note strong {
    color: var(--gold-lt);
}

.total-box {
    background: var(--dark3);
    border: 1px solid rgba(200, 155, 60, .22);
    border-radius: 12px;
    padding: 22px 26px;
    margin-top: 32px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    color: var(--muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.total-row:last-child {
    border-bottom: none;
}

.total-row.grand {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    padding-top: 14px;
    margin-top: 6px;
    border-top: 1px solid rgba(200, 155, 60, .22);
    border-bottom: none;
}

.total-row .amount {
    font-family: var(--fd);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold-lt);
    white-space: nowrap;
}

.total-row.grand .amount {
    font-size: 1.8rem;
}

.dash-footer {
    border-top: 1px solid var(--border);
    background: #0c0c0c;
    color: rgba(255, 255, 255, .42);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    padding: 24px;
}

.page-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, .35), rgba(8, 8, 8, .88)),
        var(--dark);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(5, 5, 5, .88), rgba(5, 5, 5, .38), rgba(5, 5, 5, .88)),
        var(--page-hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: saturate(.9) contrast(1.08);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 50% 42%, rgba(232, 201, 122, .14), transparent 70%),
        linear-gradient(0deg, rgba(8, 8, 8, .86), transparent 42%);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    width: min(960px, calc(100% - 48px));
    text-align: center;
    padding: 90px 0;
}

.page-title {
    font-family: var(--fd);
    font-size: clamp(3.1rem, 8vw, 7rem);
    font-weight: 300;
    line-height: .95;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 24px 55px rgba(0, 0, 0, .55);
}

.coming-soon-section {
    padding: 90px 24px;
    background:
        linear-gradient(180deg, var(--dark), var(--dark2));
}

.coming-soon-card {
    max-width: 720px;
    min-height: 260px;
    margin: 0 auto;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .035);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 56px 24px;
}

.coming-soon-mark {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(200, 155, 60, .3);
    color: var(--gold);
    margin-bottom: 20px;
}

.coming-soon-card h2 {
    font-family: var(--fd);
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    font-weight: 300;
    color: var(--gold-lt);
    margin: 0;
}

.page-stats {
    border-top: 0;
}

.catalogue-section {
    padding: 96px 24px 118px;
    background:
        linear-gradient(180deg, rgba(232, 201, 122, .045), transparent 22%),
        linear-gradient(135deg, var(--dark), #111 46%, var(--dark));
}

.catalogue-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.catalogue-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.catalogue-head .sec-title {
    margin-bottom: 0;
}

.catalogue-count {
    flex: 0 0 auto;
    min-width: 132px;
    padding: 13px 18px;
    border: 1px solid rgba(232, 201, 122, .22);
    background: rgba(255, 255, 255, .035);
    color: var(--gold-lt);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-align: center;
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: dense;
    gap: 22px;
}

.catalogue-item {
    position: relative;
    grid-column: span 4;
    border: 1px solid rgba(200, 155, 60, .20);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018)),
        #050505;
    padding: 0;
    overflow: hidden;
    cursor: zoom-in;
    text-align: left;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
    transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.catalogue-item::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(232, 201, 122, .22), transparent 28%),
        linear-gradient(315deg, rgba(255, 255, 255, .09), transparent 30%);
    opacity: 0;
    transition: opacity .35s var(--ease);
}

.catalogue-photo {
    position: relative;
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #000;
}

.catalogue-item--feature {
    grid-column: span 8;
}

.catalogue-item--feature .catalogue-photo {
    aspect-ratio: 16 / 9;
}

.catalogue-item--wide {
    grid-column: span 6;
}

.catalogue-item--wide .catalogue-photo {
    aspect-ratio: 21 / 10;
}

.catalogue-item--slim {
    grid-column: span 3;
}

.catalogue-item--slim .catalogue-photo {
    aspect-ratio: 4 / 5;
}

.catalogue-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease), opacity .35s, filter .35s;
}

.catalogue-number {
    position: absolute;
    right: 14px;
    bottom: 12px;
    z-index: 2;
    min-width: 42px;
    padding: 7px 10px;
    border: 1px solid rgba(232, 201, 122, .36);
    background: rgba(5, 5, 5, .66);
    backdrop-filter: blur(10px);
    font-family: var(--fd);
    color: var(--gold-lt);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    letter-spacing: 0;
}

.catalogue-item:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 201, 122, .44);
    box-shadow: 0 32px 72px rgba(0, 0, 0, .36);
}

.catalogue-item:hover::before {
    opacity: 1;
}

.catalogue-item:hover .catalogue-photo img {
    transform: scale(1.045);
    opacity: .9;
    filter: saturate(1.06) contrast(1.04);
}

.catalogue-modal .modal-dialog {
    max-width: min(96vw, 1120px);
}

.catalogue-modal .modal-content {
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.catalogue-modal img {
    width: 100%;
    max-height: 92vh;
    object-fit: contain;
    background: #000;
    animation: catalogueZoomOut .22s var(--ease);
}

.catalogue-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(0, 0, 0, .62);
}

.catalogue-close:hover {
    background: rgba(0, 0, 0, .86);
}

@keyframes catalogueZoomOut {
    from {
        opacity: .45;
        transform: scale(1.08);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (min-width: 768px) {
    .stats-g {
        grid-template-columns: repeat(4, 1fr);
    }

    .welcome-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1240px) {
    .nav-links-d {
        display: flex;
    }

    .burger {
        display: none;
    }
}

@media (min-width: 1100px) {

    .committee-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .ws-grid {
        /* grid-template-columns: repeat(2, 1fr); */
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hcontent {
        text-align: center;
    }

    .hero-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .h-chips,
    .h-ctas {
        justify-content: center;
    }

    .h-edition::before {
        content: '';
        display: block;
        width: 30px;
        height: 1px;
        background: var(--gold);
        opacity: .6;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-copy {
        text-align: left;
    }

    .tracks-header {
        grid-template-columns: 1fr;
    }

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



    .info-boxes {
        grid-template-columns: 1fr;
    }

    .catalogue-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .catalogue-item,
    .catalogue-item--slim {
        grid-column: span 3;
    }

    .catalogue-item--feature,
    .catalogue-item--wide {
        grid-column: span 6;
    }
}

@media (max-width: 575px) {
    .expect-grid {
        grid-template-columns: 1fr;
    }

    .hcorner-tl,
    .hcorner-br {
        display: none;
    }

    .page-hero {
        min-height: 340px;
    }

    .page-hero-inner {
        width: min(100% - 32px, 960px);
        padding: 72px 0;
    }

    .coming-soon-section,
    .catalogue-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .catalogue-head {
        display: block;
    }

    .catalogue-count {
        display: inline-flex;
        min-width: 0;
        margin-top: 6px;
    }

    .catalogue-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .catalogue-item,
    .catalogue-item--feature,
    .catalogue-item--wide,
    .catalogue-item--slim {
        grid-column: auto;
    }

    .catalogue-item--feature .catalogue-photo,
    .catalogue-item--wide .catalogue-photo,
    .catalogue-item--slim .catalogue-photo {
        aspect-ratio: 3 / 2;
    }
}

/* ADDON ------ */
.combo-toggle-wrap {
    margin-top: 14px;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s;
}

.combo-toggle-wrap:has(#combo-enable:checked) {
    border-color: var(--gold);
}

.combo-toggle-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    cursor: pointer;
}

.combo-toggle-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}

.combo-toggle-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .78);
}

.combo-toggle-label i {
    color: var(--gold);
}

.combo-toggle-label em {
    font-style: normal;
    font-size: 11px;
    font-weight: 400;
    color: var(--gold);
    background: rgba(200, 155, 60, .1);
    border: 1px solid rgba(200, 155, 60, .22);
    border-radius: 4px;
    padding: 1px 7px;
    margin-left: 4px;
}

.combo-radios {
    display: none;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
    padding: 10px 14px 14px;
}

.combo-radios.show {
    display: flex;
}

.combo-radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    transition: background .15s;
}

.combo-radio-item:has(input:checked) {
    background: rgba(200, 155, 60, .07);
    color: var(--white);
}

.combo-radio-item input[type="radio"] {
    accent-color: var(--gold);
    width: 15px;
    height: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

.combo-radio-item strong {
    color: var(--gold);
    font-weight: 700;
    margin: 0 4px;
}

.combo-radio-item s {
    font-size: 11px;
    color: var(--muted);
    text-decoration: line-through;
}

.ws-check-item.ws-disabled {
    opacity: .35;
    pointer-events: none;
}

.foreign-ws-note {
    display: none;
    align-items: flex-start;
    gap: 10px;
    background: rgba(200, 155, 60, .06);
    border: 1px solid rgba(200, 155, 60, .22);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--muted);
    margin-top: 14px;
}

.foreign-ws-note.show {
    display: flex;
}

.foreign-ws-note i {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.foreign-ws-note strong {
    color: var(--gold-lt);
}
