:root {
    --gold: #C9A227;
    --gold-mid: #E5B84C;
    --red-deep: #3D1010;
    --red-nav: #2A0A0A;
    --red-bg: #1E0505;
    --white: #FFFFFF;
    --light-bg: #5C1E1E;
}

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

html,
body {
    width: 100%;
    min-height: 100%;
    font-family: 'Inter', sans-serif;
    background: #1E0505;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* ─── UNIFIED SITE BACKGROUND GRADIENT ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 40% at 15% 10%, rgba(201, 162, 39, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 30% at 85% 30%, rgba(180, 40, 10, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 50% 60%, rgba(80, 10, 10, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 90% 60% at 20% 80%, rgba(201, 162, 39, 0.04) 0%, transparent 60%),
        linear-gradient(180deg,
            #1E0505 0%,
            #250707 6%,
            #2A0808 12%,
            #300A0A 18%,
            #350C0C 25%,
            #3A1010 32%,
            #3F1212 40%,
            #3A1010 48%,
            #351010 55%,
            #3A1212 62%,
            #3D1010 70%,
            #380E0E 78%,
            #300A0A 86%,
            #280808 92%,
            #1E0505 100%);
    pointer-events: none;
}

.invite-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 0, 0, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: overlayFadeIn 0.5s ease both;
}

.invite-popup-overlay.hidden {
    display: none;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.invite-popup {
    position: relative;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(160deg, #3A0C0C 0%, #2A0808 40%, #3A0C0C 100%);
    border: 1.5px solid rgba(229, 184, 76, 0.45);
    border-radius: 20px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(229, 184, 76, 0.08), inset 0 1px 0 rgba(229, 184, 76, 0.15);
    animation: popupSlideUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    scrollbar-width: none;
}

.invite-popup::-webkit-scrollbar {
    display: none;
}

@keyframes popupSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }

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

.invite-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(229, 184, 76, 0.3);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.invite-close-btn:hover {
    background: rgba(229, 184, 76, 0.15);
    color: var(--gold-mid);
    border-color: var(--gold-mid);
    transform: rotate(90deg);
}

.invite-ribbon,
.invite-bottom-ribbon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px 0;
}

.invite-bottom-ribbon {
    padding: 0 32px 16px;
}

.invite-ribbon-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 184, 76, 0.5), transparent);
}

.invite-ribbon-gem {
    color: var(--gold-mid);
    font-size: 14px;
    flex-shrink: 0;
}

.invite-popup-inner {
    padding: 8px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.invite-powered {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.invite-powered span {
    color: var(--gold-mid);
    font-weight: 600;
}

.invite-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0;
}

.invite-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: rgba(229, 184, 76, 0.85);
    margin: -4px 0 0;
}

.invite-ornament {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 200px;
}

.ornament-line {
    flex: 1;
    height: 1px;
    background: rgba(201, 162, 39, 0.4);
}

.invite-message {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    margin: 0;
}

.invite-message em {
    color: var(--gold-mid);
    font-style: italic;
}

.invite-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.invite-detail-block {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(229, 184, 76, 0.18);
    border-radius: 10px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.invite-detail-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.invite-detail-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(229, 184, 76, 0.7);
    margin: 0;
}

.invite-detail-val {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.invite-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.invite-cta-primary {
    background: linear-gradient(135deg, #C9A227 0%, #E5B84C 100%);
    color: #1a0202;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
    display: inline-block;
}

.invite-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 162, 39, 0.55);
    color: #1a0202;
}

.invite-cta-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(229, 184, 76, 0.4);
    transition: all 0.2s;
    display: inline-block;
}

.invite-cta-secondary:hover {
    border-color: var(--gold-mid);
    color: var(--gold-mid);
    transform: translateY(-2px);
}

.invite-dismiss {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

#inviteViewSite {
    color: rgba(229, 184, 76, 0.6);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

#inviteViewSite:hover {
    color: var(--gold-mid);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: transparent;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('images/herosection_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(20, 4, 4, 0.75) 0%,
            rgba(35, 8, 8, 0.58) 40%,
            rgba(35, 10, 10, 0.55) 70%,
            rgba(30, 5, 5, 0.85) 100%);
}

/* smooth fade into next section */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom, transparent, #2A0808);
    z-index: 5;
    pointer-events: none;
}

.bokeh {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.bokeh span {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, .13) 0%, transparent 70%);
    animation: floatBokeh linear infinite;
}

.bokeh span:nth-child(1) {
    width: 230px;
    height: 230px;
    top: 4%;
    left: 7%;
    animation-duration: 16s;
    animation-delay: -2s;
}

.bokeh span:nth-child(2) {
    width: 110px;
    height: 110px;
    top: 17%;
    left: 76%;
    animation-duration: 20s;
    animation-delay: -6s;
}

.bokeh span:nth-child(3) {
    width: 170px;
    height: 170px;
    top: 64%;
    left: 87%;
    animation-duration: 14s;
    animation-delay: -9s;
}

.bokeh span:nth-child(4) {
    width: 270px;
    height: 270px;
    top: 71%;
    left: 2%;
    animation-duration: 22s;
    animation-delay: -4s;
}

.bokeh span:nth-child(5) {
    width: 85px;
    height: 85px;
    top: 41%;
    left: 53%;
    animation-duration: 18s;
    animation-delay: -12s;
}

@keyframes floatBokeh {
    0% {
        transform: translateY(0) scale(1);
        opacity: .5;
    }

    50% {
        transform: translateY(-28px) scale(1.07);
        opacity: .85;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: .5;
    }
}

/* ─── NAVBAR ─── */
.navbar-vistar {
    position: relative;
    z-index: 110;
    height: 64px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background: rgba(26, 5, 5, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0px 1px 0px rgba(229, 184, 76, 0.08), 0px 8px 32px rgba(0, 0, 0, 0.4);
    gap: 20px;
}

.navbar-vistar .container-fluid {
    height: 64px;
    min-height: 64px;
    align-items: center;
}

.navbar-vistar .navbar-collapse {
    align-items: center;
}

.nav-logo-wrap {
    flex-shrink: 0;
    min-width: 0;
    padding: 0 !important;
    margin-right: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    text-decoration: none;
}

.logo-v-diamond {
    width: 45px;
    height: 40px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-img-fit {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-pipe {
    width: 1px;
    height: 28px;
    background: rgba(201, 162, 39, .3);
}

.logo-s-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-s-img {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    object-fit: contain;
}

.logo-text-col {
    gap: 2px;
    line-height: 1;
}

.logo-line1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--gold-mid);
    letter-spacing: .05em;
    display: block;
}

.logo-line2 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .07em;
    text-transform: uppercase;
    display: block;
}

.nav-links {
    gap: 26px;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-links .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s;
    padding: 0 !important;
}

.nav-links .nav-link:hover,
.nav-links .nav-link:focus {
    color: var(--gold-mid);
}

.btn-register-nav {
    background: var(--gold);
    color: #1a0202;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 24px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(201, 162, 39, .35);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-register-nav:hover {
    background: var(--gold-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(201, 162, 39, .55);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1.5px solid rgba(229, 184, 76, .4);
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color .2s;
    padding: 0;
    box-shadow: none !important;
    margin: 0;
}

.nav-hamburger:hover {
    border-color: var(--gold-mid);
}

.nav-hamburger:focus {
    box-shadow: none !important;
}

.nav-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--gold-mid);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1),
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2),
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3),
.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(22, 5, 5, 0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(229, 184, 76, .15);
    border-bottom: 1px solid rgba(229, 184, 76, .15);
    padding: 20px 24px 28px;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5);
}

.mobile-nav-drawer.open {
    display: flex;
}

.mobile-nav-drawer a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(229, 184, 76, .08);
    transition: color .2s;
}

.mobile-nav-drawer a:last-of-type {
    border-bottom: none;
}

.mobile-nav-drawer a:hover {
    color: var(--gold-mid);
}

.mobile-nav-drawer .mobile-register-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    background: var(--gold);
    color: #1a0202;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: background .2s;
}

.mobile-nav-drawer .mobile-register-btn:hover {
    background: var(--gold-mid);
    color: #1a0202;
}

/* ─── HERO CONTENT ─── */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    padding-top: 68px;
    padding-bottom: 120px;
}

.hero-powered-by {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 12px;
}

.hero-powered-gold {
    color: var(--gold-mid);
    font-weight: 600;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 128px;
    line-height: 128px;
    background: linear-gradient(180deg, #C9A227 0%, #E5B84C 50%, #C9A227 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 670px;
    max-width: 95vw;
    animation: fadeUp .85s ease both;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    color: #E5B84C;
    width: 460px;
    max-width: 95vw;
    margin-top: 14px;
    animation: fadeUp .85s ease .12s both;
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    width: 395px;
    max-width: 95vw;
    margin-top: 16px;
    animation: fadeUp .85s ease .22s both;
}

.hero-pan {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #E5B84C;
    white-space: nowrap;
    margin-top: 6px;
    animation: fadeUp .85s ease .3s both;
}

.hero-meta {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    gap: 24px;
    margin-top: 26px;
    animation: fadeUp .85s ease .38s both;
}

.hero-meta .sep {
    width: 1px;
    height: 22px;
    background: rgba(201, 162, 39, .45);
}

.meta-icon-svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    flex-shrink: 0;
}

.hero-cta {
    animation: fadeUp .85s ease .46s both;
    margin-top: 38px;
}

.btn-primary,
.btn-secondary {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    padding: 14px 36px;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
}

.btn-primary {
    background: var(--gold);
    color: #1a0202;
    border: none;
    box-shadow: 0 4px 22px rgba(201, 162, 39, .38);
}

.btn-primary:hover {
    background: var(--gold-mid);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(201, 162, 39, .55);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, .5);
}

.btn-secondary:hover {
    border-color: var(--gold-mid);
    color: var(--gold-mid);
    transform: translateY(-3px);
}

.hero-divider {
    width: 240px;
    margin-top: 48px;
    animation: fadeUp .85s ease .54s both;
}

.dline {
    flex: 1;
    height: 1px;
}

.dline.left {
    background: linear-gradient(to right, transparent, rgba(201, 162, 39, .5));
}

.dline.right {
    background: linear-gradient(to left, transparent, rgba(201, 162, 39, .5));
}

.diamond {
    width: 10px;
    height: 10px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── ABOUT ─── */
.about {
    background: transparent;
    padding: 80px 80px 90px;
    position: relative;
}

/* subtle gold shimmer unique to about */
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
}

.about-inner {
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
}

.about-left {
    flex: 1;
    gap: 28px;
}

.about-heading-wrap {
    gap: 8px;
    margin-bottom: 10px;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    color: #FFFFFF;
}

.about-heading-gold {
    color: var(--gold-mid);
}

.about-vision-line {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 24px;
    line-height: 32px;
    color: rgba(229, 184, 76, .80);
}

.about-para {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 29.25px;
    color: rgba(255, 255, 255, .898);
    max-width: 868px;
}

.about-quote-ornamental {
    position: relative;
    padding: 32px 36px 28px;
    border-left: 3px solid var(--gold-mid);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.07) 0%, rgba(201, 162, 39, 0.03) 100%);
    border-radius: 0 12px 12px 0;
    max-width: 860px;
}

.about-quote-ornamental--alt {
    border-left-color: rgba(201, 162, 39, 0.6);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, transparent 100%);
}

.quote-mark-top {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    line-height: 0.5;
    color: rgba(201, 162, 39, 0.35);
    position: absolute;
    top: 20px;
    left: 16px;
    font-weight: 600;
}

.quote-mark-bottom {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    line-height: 0.5;
    color: rgba(201, 162, 39, 0.35);
    position: absolute;
    bottom: 14px;
    right: 20px;
    font-weight: 600;
}

.quote-text-body {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-size: 22px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 12px;
    padding: 0 24px;
}

.quote-source-line {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-mid);
    padding: 0 24px;
}

.quote-dash {
    margin-right: 6px;
}

.about-card-border {
    position: relative;
    z-index: 1;
    width: 545px;
    height: 455px;
    border-radius: 16px;
    padding: 3.99px;
    background: linear-gradient(180deg, #C9A227 0%, #E5B84C 100%);
}

.about-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 13px;
    overflow: hidden;
    background: rgba(42, 10, 10, .698);
}

.card-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('images/abt_bg.jpg');
    background-size: cover;
    background-position: center;
}

.card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(42, 10, 10, .698);
}

.card-stats {
    position: absolute;
    z-index: 2;
    top: 72px;
    left: 89.66px;
    width: 354.66px;
    padding: 48px;
    gap: 16px;
}

.card-number {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 96px;
    color: var(--gold-mid);
    width: 259px;
}

.card-label-businesses {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
}

.card-label-united {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: rgba(255, 255, 255, .698);
}

.card-deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1.11px solid rgba(229, 184, 76, .302);
    pointer-events: none;
    z-index: 2;
}

.card-deco-br {
    width: 96px;
    height: 96px;
    top: -24px;
    left: -24px;
}

.card-deco-bl {
    width: 96px;
    height: 96px;
    bottom: -40px;
    left: -40px;
}

.about-card-outer {
    position: relative;
    width: 545px;
    height: 455px;
    flex-shrink: 0;
}

/* ─── HIGHLIGHTS ─── */
.highlights {
    width: 100%;
    min-height: 600px;
    padding: 60px 32px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.highlights::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(60, 15, 15, 0.4) 0%, transparent 80%);
}

.highlights-inner {
    max-width: 1551px;
    gap: 48px;
    min-height: 398px;
    position: relative;
    z-index: 1;
}

.highlights-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    color: #FFFFFF;
    width: 462px;
    max-width: 100%;
    flex-shrink: 0;
}

.highlights-heading-gold {
    color: var(--gold-mid);
}

.highlights-cards {
    flex-wrap: nowrap !important;
    gap: 20px;
}

.hl-card {
    flex: 1 1 0;
    min-width: 0;
    min-height: 258px;
    flex-shrink: 1;
    border-radius: 16px;
    border-top: 1.11px solid rgba(229, 184, 76, .20);
    border-right: 1.11px solid rgba(229, 184, 76, .08);
    border-bottom: 1.11px solid rgba(229, 184, 76, .08);
    border-left: 1.11px solid rgba(229, 184, 76, .08);
    background: rgba(40, 10, 10, 0.55);
    backdrop-filter: blur(4px);
    padding: 28px;
    gap: 16px;
    transition: transform .25s, box-shadow .25s;
}

.hl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(201, 162, 39, .18);
}

.hl-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(180deg, #C9A227 0%, #E5B84C 100%);
    flex-shrink: 0;
}

.hl-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
}

.hl-card-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgba(229, 184, 76, .80);
}

/* ─── SINGH & KAUR ─── */
.singh-kaur {
    position: relative;
    background: transparent;
    padding: 72px 32px 80px;
    overflow: hidden;
}

.sk-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('images/singh&kaur1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sk-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(25, 5, 5, 0.88) 0%,
            rgba(38, 10, 10, 0.72) 20%,
            rgba(45, 12, 12, 0.65) 50%,
            rgba(38, 10, 10, 0.72) 80%,
            rgba(25, 5, 5, 0.90) 100%);
}

.sk-inner {
    position: relative;
    z-index: 2;
    max-width: 1527px;
    gap: 48px;
}

.sk-heading-wrap {
    gap: 12px;
}

.sk-crown-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.sk-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    color: #FFFFFF;
}

.sk-heading-gold {
    color: var(--gold-mid);
}

.sk-age {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: rgba(255, 255, 255, .80);
}

.sk-story-section {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sk-manifesto {
    text-align: center;
    padding: 24px 0;
}

.sk-manifesto-top-rule,
.sk-manifesto-bottom-rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 184, 76, 0.4), transparent);
    margin: 16px 0;
}

.sk-manifesto-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
}

.sk-manifesto-text em {
    color: var(--gold-mid);
    font-style: italic;
}

.sk-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sk-pillar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(229, 184, 76, 0.15);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.sk-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(201, 162, 39, 0.05);
}

.sk-pillar--featured {
    background: linear-gradient(145deg, rgba(201, 162, 39, 0.12) 0%, rgba(201, 162, 39, 0.04) 100%);
    border-color: rgba(229, 184, 76, 0.35);
}

.sk-pillar-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    color: rgba(201, 162, 39, 0.25);
}

.sk-pillar-divider {
    width: 32px;
    height: 2px;
    background: var(--gold-mid);
    margin: 4px 0;
}

.sk-pillar-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #FFFFFF;
}

.sk-pillar-body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
    flex: 1;
}

.sk-pillar-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-mid);
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 20px;
    padding: 5px 12px;
    align-self: flex-start;
}

/* ─── CAMPAIGN ─── */
.campaign {
    background: transparent;
    padding: 72px 32px 80px;
}

.campaign-inner {
    max-width: 1548px;
    gap: 44px;
}

.campaign-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    color: #FFFFFF;
    width: 545px;
    max-width: 100%;
}

.campaign-heading-gold {
    color: var(--gold-mid);
}

.campaign-overview-creative {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 960px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(229, 184, 76, 0.15);
    border-radius: 20px;
    overflow: hidden;
}

.campaign-overview-left {
    width: 200px;
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-right: 1px solid rgba(229, 184, 76, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
}

.campaign-overview-left-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    color: #E5B84C;
    margin: 0;
    text-align: center;
    letter-spacing: 0.01em;
}

.campaign-overview-center-line {
    width: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(229, 184, 76, 0.1);
}

.campaign-flow-arrow {
    font-size: 20px;
    color: rgba(229, 184, 76, 0.4);
    writing-mode: vertical-rl;
    letter-spacing: 8px;
    transform: rotate(180deg);
}

.campaign-overview-right {
    flex: 1;
    padding: 36px 32px;
}

.campaign-overview-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.campaign-step-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.campaign-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(229, 184, 76, 0.5);
    flex-shrink: 0;
    margin-top: 6px;
}

.campaign-step-dot--gold {
    background: var(--gold-mid);
    box-shadow: 0 0 8px rgba(229, 184, 76, 0.5);
}

.campaign-step-item p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.timeline-wrap {
    width: 100%;
    max-width: 1026px;
    gap: 12px;
}

.tl-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(180deg, #C9A227 0%, #E5B84C 100%);
    flex-shrink: 0;
    z-index: 1;
}

.tl-dot span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
}

.tl-connector-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #E5B84C 0%, rgba(229, 184, 76, .15) 100%);
}

.tl-col {
    width: 44px;
    flex-shrink: 0;
    overflow: visible;
    min-width: 120px;
    margin-left: -38px;
}

.tl-text-row .tl-col:first-child {
    margin-left: 0;
}

.tl-col-spacer {
    flex: 1;
}

.tl-month {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--gold-mid);
}

.tl-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    margin-top: 4px;
}

.prize-card {
    position: relative;
    width: 756px;
    max-width: 100%;
    min-height: 390px;
    border-radius: 16px;
    border-top: 1.11px solid var(--gold-mid);
    border-right: 1.11px solid rgba(229, 184, 76, .3);
    border-bottom: 1.11px solid rgba(229, 184, 76, .3);
    border-left: 1.11px solid rgba(229, 184, 76, .3);
    background: linear-gradient(135deg, rgba(201, 162, 39, .20) 0%, rgba(229, 184, 76, .20) 100%);
    overflow: hidden;
}

.prize-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('images/prizepool_bg.png');
    background-size: cover;
    background-position: center;
    background-color: #2a0808;
}

.prize-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .52);
}

.prize-content {
    position: relative;
    z-index: 2;
    padding: 71px 43px 60px;
}

.prize-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: #FFFFFF;
}

.prize-amount {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: var(--gold-mid);
    margin-top: 24px;
}

.prize-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: rgba(255, 255, 255, .898);
    margin-top: 16px;
}

.prize-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background: linear-gradient(180deg, #C9A227 0%, #E5B84C 100%);
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border-radius: 9999px;
    padding: 16px 48px;
    margin-top: 36px;
    transition: opacity .2s, transform .2s;
}

.prize-btn:hover {
    opacity: .9;
    transform: translateY(-2px);
}

/* ─── HIDDEN GEMS ─── */
.hg-section {
    background: transparent;
    padding: 80px 32px;
}

.hg-section--cta {
    padding: 32px 32px 60px;
    background: transparent;
}

.section-blend-divider {
    display: none;
}

/* no longer needed */

.hg-inner {
    max-width: 1200px;
    gap: 20px;
}

.hg-diamond-icon {
    flex-shrink: 0;
    margin-bottom: 4px;
}

.hg-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 64px;
    color: #FFFFFF;
}

.hg-heading-gold {
    color: var(--gold-mid);
}

.hg-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: rgba(255, 255, 255, .80);
}

.hg-sub2 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    line-height: 26px;
    color: rgba(229, 184, 76, .85);
    margin-top: -4px;
}

.hg-bento-layout {
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 8px;
}

.hg-bento-statement {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.03) 100%);
    border: 1px solid rgba(229, 184, 76, 0.2);
    border-radius: 16px;
    padding: 36px 40px;
    position: relative;
    text-align: left;
}

.hg-statement-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 100px;
    line-height: 0.6;
    color: rgba(201, 162, 39, 0.2);
    float: left;
    margin-right: 16px;
    margin-top: 10px;
}

.hg-statement-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    font-style: italic;
    margin: 0 0 16px;
}

.hg-statement-source {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-mid);
}

.hg-bento-side {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hg-bento-card {
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    transition: transform 0.2s;
}

.hg-bento-card:hover {
    transform: translateY(-3px);
}

.hg-bento-card--problem {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(229, 184, 76, 0.12);
}

.hg-bento-card--solution {
    background: linear-gradient(145deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.04) 100%);
    border: 1px solid rgba(229, 184, 76, 0.25);
}

.hg-bento-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-mid);
}

.hg-bento-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.35;
    color: #FFFFFF;
}

.hg-bento-card-body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.hg-bento-categories {
    grid-column: 1 / -1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(229, 184, 76, 0.1);
    border-radius: 12px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hg-bento-cat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    margin: 0;
}

.hg-cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hg-cat-tag {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(229, 184, 76, 0.85);
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 20px;
    padding: 5px 14px;
}

.hg-stats {
    gap: 20px;
    margin-top: 8px;
}

.hg-stat-card {
    flex: 1;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    border: 1.11px solid rgba(229, 184, 76, .18);
    padding: 36px 28px;
    gap: 12px;
    transition: transform .25s, box-shadow .25s;
}

.hg-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, .15);
}

.hg-stat-card--featured {
    background: rgba(90, 35, 10, .45);
    border-color: rgba(229, 184, 76, .35);
}

.hg-stat-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.hg-stat-val {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    color: #FFFFFF;
}

.hg-stat-lbl {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: rgba(255, 255, 255, .65);
}

.hg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #C9A227 0%, #E5B84C 100%);
    color: #1a0202;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 16px 48px;
    border-radius: 9999px;
    white-space: nowrap;
    margin-top: 12px;
    transition: opacity .2s, transform .2s;
}

.hg-btn:hover {
    opacity: .9;
    transform: translateY(-2px);
}

/* ─── AWARDS ─── */
.awards-section {
    position: relative;
    background: transparent;
    padding: 80px 32px;
    overflow: hidden;
}

.awards-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('images/awards3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.awards-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(20, 4, 4, 0.88) 0%,
            rgba(35, 8, 8, 0.78) 15%,
            rgba(45, 12, 12, 0.70) 50%,
            rgba(35, 8, 8, 0.78) 85%,
            rgba(20, 4, 4, 0.92) 100%);
}

.awards-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    gap: 32px;
}

.awards-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    color: #FFFFFF;
}

.awards-heading-gold {
    color: var(--gold-mid);
}

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

.awards-grid-center {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.awards-grid-center .award-card {
    max-width: 380px;
    width: 100%;
}

.award-card {
    background: rgba(45, 10, 10, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    border: 1px solid rgba(229, 184, 76, .14);
    padding: 28px 26px 24px;
    gap: 12px;
    transition: transform .25s, box-shadow .25s;
}

.award-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, .15);
}

.award-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #C9A227 0%, #E5B84C 100%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(201, 162, 39, .30);
    flex-shrink: 0;
}

.award-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 26px;
    color: #FFFFFF;
    margin-top: 4px;
}

.award-card-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13.5px;
    line-height: 20px;
    color: rgba(255, 255, 255, .58);
    flex: 1;
}

.award-card-number {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #E5B84C;
    letter-spacing: 0.05em;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid rgba(229, 184, 76, 0.15);
}

.award-card-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: .08em;
    color: var(--gold-mid);
    text-decoration: none;
    margin-top: 6px;
    transition: opacity .2s;
}

.award-card-link:hover {
    opacity: .75;
}

/* ─── PRICING / NOMINATIONS / SPONSOR ─── */
.pricing-nominations-wrap {
    background: transparent;
}

.pricing-section {
    padding: 80px 32px;
}

.pricing-inner {
    max-width: 1100px;
    gap: 14px;
}

.pricing-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    color: #FFFFFF;
}

.pricing-heading-gold {
    color: var(--gold-mid);
}

.pricing-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: rgba(255, 255, 255, .70);
    margin-bottom: 20px;
}

.pricing-cards {
    gap: 20px;
}

.price-card {
    flex: 1;
    max-width: 320px;
    background: rgba(42, 10, 10, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    border: 1.11px solid rgba(229, 184, 76, .12);
    padding: 36px 28px 32px;
    transition: transform .25s, box-shadow .25s;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(201, 162, 39, .18);
}

.price-card--featured {
    background: linear-gradient(180deg, rgba(26, 5, 5, 0.8) 0%, rgba(60, 14, 14, 0.7) 50%, rgba(26, 5, 5, 0.8) 100%);
    border-color: rgba(229, 184, 76, .50);
    border-width: 1.5px;
}

.price-card-badge-corner {
    position: absolute;
    top: -16px;
    right: 16px;
    background: #2a0808;
    color: var(--gold-mid);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: .07em;
    padding: 7px 16px;
    border-radius: 9999px;
    white-space: nowrap;
    border: 1.5px solid var(--gold-mid);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5);
    z-index: 10;
    gap: 6px;
}

.price-card-badge-corner svg {
    stroke: var(--gold-mid);
    fill: none;
    flex-shrink: 0;
}

.price-card-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 8px;
}

.price-card-amount {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 44px;
    color: var(--gold-mid);
    margin-bottom: 24px;
}

.price-card-features li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: rgba(255, 255, 255, .80);
}

.price-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 9999px;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    transition: all .2s;
}

.price-card-btn--gold {
    background: linear-gradient(135deg, #C9A227 0%, #E5B84C 100%) !important;
    color: #1a0202 !important;
    border: none !important;
}

.price-card-btn--gold:hover {
    opacity: .9 !important;
    transform: translateY(-2px) !important;
}

.nominations-section {
    padding: 80px 32px;
}

.nominations-inner {
    max-width: 1100px;
    gap: 40px;
}

.nominations-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    color: #FFFFFF;
}

.nominations-heading-gold {
    color: var(--gold-mid);
}

.nominations-cards {
    gap: 24px;
}

.nom-card {
    flex: 1;
    max-width: 500px;
    background: rgba(42, 10, 10, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    border: 1.11px solid rgba(229, 184, 76, .12);
    padding: 36px 32px;
    gap: 8px;
    transition: transform .25s, box-shadow .25s;
}

.nom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(201, 162, 39, .15);
}

.nom-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: #FFFFFF;
}

.nom-card-price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: var(--gold-mid);
    margin-top: 4px;
}

.nom-card-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, .65);
    flex: 1;
    margin-bottom: 16px;
}

.nom-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 9999px;
    white-space: nowrap;
    border: 1.5px solid rgba(229, 184, 76, .50);
    color: var(--gold-mid);
    background: transparent;
    transition: all .2s;
    width: 100%;
}

.nom-card-btn:hover {
    background: rgba(229, 184, 76, .10);
}

.sponsor-section {
    padding: 80px 32px;
    border-top: 1px solid rgba(229, 184, 76, .08);
}

.sponsor-inner {
    max-width: 1100px;
    gap: 40px;
}

.sponsor-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 64px;
    color: #FFFFFF;
}

.sponsor-heading-gold {
    color: var(--gold-mid);
}

.sponsor-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, .75);
    max-width: 680px;
}

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

.sponsor-tile {
    background: rgba(42, 10, 10, 0.5);
    border-radius: 12px;
    border: 1.11px solid rgba(229, 184, 76, .12);
    padding: 24px 20px;
    gap: 12px;
    transition: transform .2s, box-shadow .2s;
}

.sponsor-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, .14);
}

.sponsor-tile-icon {
    width: 40px;
    height: 40px;
    background: rgba(229, 184, 76, .10);
    border-radius: 10px;
    flex-shrink: 0;
}

.sponsor-tile-lbl {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: rgba(255, 255, 255, .85);
    text-align: left;
}

.sponsor-cta-banner {
    background: linear-gradient(135deg, rgba(201, 162, 39, .10) 0%, rgba(229, 184, 76, .10) 100%);
    border: 1.5px solid rgba(229, 184, 76, .25);
    border-radius: 14px;
    padding: 28px 40px;
    gap: 20px;
}

.sponsor-cta-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, .75);
}

.sponsor-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #C9A227 0%, #E5B84C 100%);
    color: #1a0202;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 9999px;
    white-space: nowrap;
    transition: opacity .2s, transform .2s;
}

.sponsor-cta-btn:hover {
    opacity: .9;
    transform: translateY(-2px);
}

/* ─── APP SECTION ─── */
.app-section {
    position: relative;
    padding: 80px 32px;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, .28) 0%, rgba(201, 162, 39, .14) 30%, rgba(180, 100, 10, .06) 55%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.app-section::after {
    content: '';
    position: absolute;
    right: 10%;
    bottom: -60px;
    width: 500px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(180, 100, 5, .30) 0%, rgba(140, 60, 5, .10) 50%, transparent 75%);
    pointer-events: none;
    z-index: 0;
    filter: blur(18px);
}

.app-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    gap: 64px;
}

.app-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    color: #FFFFFF;
}

.app-heading-gold {
    color: var(--gold-mid);
}

.app-left {
    gap: 24px;
}

.app-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, .70);
}

.app-features {
    gap: 14px;
}

.app-features li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: rgba(255, 255, 255, .85);
    gap: 14px;
}

.app-feat-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #C9A227 0%, #E5B84C 100%);
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(201, 162, 39, 0.30);
}

.app-feat-icon svg {
    stroke: #1a0404;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #C9A227 0%, #E5B84C 100%);
    color: #1a0202;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 9999px;
    white-space: nowrap;
    transition: opacity .2s, transform .2s;
}

.app-btn:hover {
    opacity: .9;
    transform: translateY(-2px);
}

.app-screens-stack {
    position: relative;
    width: 460px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-screen {
    position: absolute;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.app-screen--main {
    width: 230px;
    height: auto;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .70));
}

.app-screen--left {
    width: 220px;
    height: auto;
    z-index: 3;
    top: 50%;
    left: -30px;
    transform: translateY(-52%) rotate(-15deg);
    transform-origin: bottom center;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .55));
}

.app-screen--right {
    width: 210px;
    height: auto;
    z-index: 3;
    top: 50%;
    right: -20px;
    transform: translateY(-52%) rotate(15deg);
    transform-origin: bottom center;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .55));
}

.app-screen-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background: transparent;
}

/* ─── FOOTER ─── */
.footer-new {
    background: linear-gradient(180deg, rgba(18, 4, 4, 0) 0%, #100202 40%, #0A0101 100%);
    border-top: 1px solid rgba(229, 184, 76, .10);
    padding: 56px 48px 0;
    font-family: 'Inter', sans-serif;
}

.footer-new-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(229, 184, 76, .08);
}

.fn-logo-wide-img {
    height: 36px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.fn-logo-wide-fallback {
    display: none;
}

.fn-tagline {
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 14px;
}

.fn-event-date {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    gap: 8px;
}

.fn-col-title {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: #FFFFFF !important;
    margin-bottom: 20px !important;
}

.fn-links {
    gap: 11px;
}

.fn-links li,
.fn-links a {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 20px;
    color: rgba(255, 255, 255, .50);
    text-decoration: none;
    transition: color .2s;
}

.fn-links a:hover {
    color: var(--gold-mid);
}

.fn-socials {
    gap: 9px;
}

.fn-social-btn {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    border: 1.5px solid rgba(229, 184, 76, .45) !important;
    background: transparent !important;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

.fn-social-btn:hover {
    background: rgba(229, 184, 76, .12) !important;
    border-color: var(--gold-mid) !important;
}

.fn-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 0 20px;
    gap: 12px;
}

.fn-copy {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .35);
}

.fn-bottom-links {
    gap: 24px;
}

.fn-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    transition: color .2s;
}

.fn-bottom-links a:hover {
    color: var(--gold-mid);
}

/* ─── MODAL ─── */
.modal-content {
    background: #3A1010 !important;
    border: 1px solid rgba(229, 184, 76, 0.3) !important;
    border-radius: 16px !important;
}

.modal-header {
    border-bottom: 1px solid rgba(229, 184, 76, 0.2) !important;
    padding: 20px 24px !important;
}

.modal-title {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    color: var(--gold-mid) !important;
}

.modal-body {
    padding: 24px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    line-height: 26px !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.modal-body h6 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    color: var(--gold-mid) !important;
    margin-top: 16px !important;
    margin-bottom: 8px !important;
}

.modal-body h6:first-child {
    margin-top: 0 !important;
}

.modal-body ul {
    padding-left: 20px !important;
    margin: 8px 0 !important;
}

.modal-body li {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 6px !important;
}

.btn-close {
    filter: invert(1) !important;
    opacity: 0.6 !important;
}

/* ─── MOBILE FAB ─── */
.mobile-buy-passes-fixed {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 300;
    background: #C9A227;
    color: #1a0202;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(201, 162, 39, .55);
    align-items: center;
    gap: 6px;
}

@keyframes ripple {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width:1200px) {
    .about {
        padding: 60px 40px 70px;
    }

    .about-inner {
        gap: 48px;
    }

    .about-card-border,
    .about-card-outer {
        width: 440px !important;
        height: 380px !important;
    }

    .card-stats {
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        top: 48px;
        padding: 32px;
    }

    .sk-pillars {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hg-bento-layout {
        grid-template-columns: 1fr;
    }

    .hg-bento-side {
        grid-template-columns: 1fr;
    }

    .footer-new-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width:1080px) {
    .nav-links {
        gap: 14px !important;
    }

    .nav-links a {
        font-size: 14px;
    }

    .btn-register-nav {
        font-size: 14px;
        padding: 9px 18px;
    }
}

@media (max-width:1024px) {
    .app-inner {
        flex-direction: column !important;
        gap: 48px;
    }

    .app-left {
        align-items: center;
        text-align: center;
    }

    .app-btn {
        align-self: center !important;
    }

    .app-screens-stack {
        width: 420px;
        height: 460px;
    }

    .campaign-overview-creative {
        flex-direction: column;
    }

    .campaign-overview-left {
        width: 100%;
        flex-direction: row;
        gap: 20px;
        padding: 24px 32px;
        border-right: none;
        border-bottom: 1px solid rgba(229, 184, 76, 0.15);
    }

    .campaign-overview-center-line {
        display: none;
    }
}

@media (max-width:1000px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .price-card {
        max-width: calc(50% - 10px);
    }

    .sponsor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:900px) {
    .about-inner {
        flex-direction: column !important;
        align-items: center;
    }

    .about-card-outer,
    .about-card-border {
        width: 100% !important;
        max-width: 480px;
        height: 380px;
    }
}

@media (max-width:991.98px) {
    .navbar-vistar .navbar-collapse {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 120;
        background-color: #160505;
        background: rgba(22, 5, 5, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(229, 184, 76, .15);
        border-bottom: 1px solid rgba(229, 184, 76, .15);
        padding: 20px 24px 28px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, .5);
    }

    .navbar-vistar .navbar-collapse.collapse:not(.show) {
        display: none !important;
    }

    .navbar-vistar .navbar-collapse.collapse.show {
        display: block !important;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        flex: none;
        align-items: stretch;
    }

    .nav-links .nav-link {
        font-size: 16px;
        color: rgba(255, 255, 255, .85);
        padding: 14px 0 !important;
        border-bottom: 1px solid rgba(229, 184, 76, .08);
    }

    .nav-links .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .btn-register-nav {
        margin-top: 16px;
        width: 100%;
        display: flex !important;
        justify-content: center;
        padding: 12px 24px;
        font-weight: 700;
    }

    .nav-logo-wrap {
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(100% - 56px);
    }

    .logo-text-col {
        min-width: 0;
    }

    .logo-line1,
    .logo-line2 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-hamburger {
        display: flex !important;
    }
}

@media (max-width:860px) {
    .hero-title {
        font-size: clamp(3rem, 14vw, 96px);
        line-height: 1.0;
        width: auto;
    }

    .hero-subtitle {
        font-size: clamp(1.2rem, 4.5vw, 30px);
        line-height: 1.3;
        width: auto;
    }

    .hero-tagline {
        font-size: clamp(1rem, 3.5vw, 22px);
        width: auto;
    }

    .hero-pan {
        font-size: clamp(1rem, 3.5vw, 22px);
        white-space: normal;
    }

    .about-heading {
        font-size: clamp(1.8rem, 6vw, 48px);
        line-height: 1.15;
    }

    .sk-heading {
        font-size: clamp(1.8rem, 6vw, 44px);
    }

    .campaign-heading {
        font-size: clamp(1.8rem, 6vw, 44px);
        width: auto;
    }

    .sk-pillars {
        grid-template-columns: 1fr;
    }

    .sk-manifesto-text {
        font-size: 20px;
    }

    .tl-connector-row {
        display: none !important;
    }

    .tl-text-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 14px !important;
        width: 100%;
    }

    .tl-col-spacer {
        display: none !important;
    }

    .tl-col {
        width: 100% !important;
        min-width: unset !important;
        margin-left: 0 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 28px 20px 24px !important;
        position: relative;
        background: rgba(42, 10, 10, 0.5);
        border-radius: 14px;
        border: 1px solid rgba(229, 184, 76, .15);
        border-top: 2px solid rgba(229, 184, 76, .35);
    }

    .tl-col::before {
        content: attr(data-step);
        position: absolute;
        top: -18px;
        left: 50%;
        transform: translateX(-50%);
        width: 36px;
        height: 36px;
        background: linear-gradient(180deg, #C9A227 0%, #E5B84C 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 16px;
        color: #000;
        z-index: 2;
    }

    .prize-card {
        width: 100% !important;
    }

    .prize-content {
        padding: 56px 32px 48px !important;
    }

    .invite-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .invite-title {
        font-size: 36px;
    }
}

@media (max-width:768px) {

    .highlights-heading,
    .sk-heading,
    .campaign-heading,
    .hg-heading,
    .awards-heading,
    .pricing-heading,
    .nominations-heading,
    .sponsor-heading {
        font-size: clamp(1.8rem, 7vw, 40px);
        line-height: 1.15;
        width: auto !important;
    }

    .highlights-cards {
        flex-wrap: wrap !important;
        gap: 14px !important;
    }

    .hl-card {
        flex: 0 0 calc(50% - 7px) !important;
        min-width: 0;
        padding: 20px 16px;
    }

    .hg-stats {
        flex-direction: column !important;
        align-items: center;
    }

    .hg-stat-card {
        max-width: 100%;
        width: 100% !important;
    }

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

    .pricing-cards {
        flex-direction: column !important;
        align-items: center;
    }

    .price-card {
        max-width: 440px !important;
        width: 100%;
    }

    .nominations-cards {
        flex-direction: column !important;
        align-items: center;
    }

    .nom-card {
        max-width: 440px !important;
        width: 100%;
    }

    .app-heading {
        font-size: clamp(1.6rem, 6vw, 36px);
        line-height: 1.25;
    }

    .hg-bento-side {
        grid-template-columns: 1fr;
    }

    .campaign-overview-left {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width:640px) {
    .highlights {
        padding: 48px 16px;
        min-height: unset;
    }

    .hl-card {
        flex: 0 0 100% !important;
        width: 100% !important;
    }

    .invite-popup-inner {
        padding: 8px 24px 16px;
    }

    .invite-title {
        font-size: 30px;
    }

    .invite-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .invite-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .invite-cta-primary,
    .invite-cta-secondary {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width:600px) {
    .hero-title {
        font-size: clamp(2.6rem, 12vw, 64px);
    }

    .hero-meta {
        flex-direction: column !important;
        gap: 10px;
    }

    .hero-meta .sep {
        display: none;
    }

    .hero-cta {
        flex-direction: column !important;
        align-items: center;
        gap: 12px !important;
    }

    .btn-primary,
    .btn-secondary {
        width: min(280px, 80vw);
        justify-content: center;
    }

    .about {
        padding: 40px 16px 48px;
    }

    .about-heading {
        font-size: clamp(1.6rem, 7vw, 36px);
    }

    .about-vision-line {
        font-size: 18px;
    }

    .about-para {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-quote-ornamental {
        padding: 24px 20px 20px;
    }

    .quote-text-body {
        font-size: 18px;
        padding: 0 12px;
    }

    .quote-mark-top {
        font-size: 60px;
    }

    .about-card-outer,
    .about-card-border {
        height: 300px !important;
    }

    .card-stats {
        top: 24px;
        width: 240px;
        padding: 24px;
    }

    .card-number {
        font-size: 72px;
        line-height: 1;
        width: auto;
    }

    .sk-manifesto-text {
        font-size: 18px;
    }

    .hg-section {
        padding: 40px 16px 48px;
    }

    .hg-heading {
        font-size: clamp(1.5rem, 7vw, 32px);
        line-height: 1.2;
    }

    .hg-bento-layout {
        gap: 12px;
    }

    .hg-bento-statement {
        padding: 24px 20px;
    }

    .hg-statement-text {
        font-size: 18px;
    }

    .awards-section {
        padding: 40px 16px 48px;
    }

    .awards-heading {
        font-size: clamp(1.5rem, 7vw, 32px);
    }

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

    .pricing-section {
        padding: 40px 16px 48px;
    }

    .nominations-section {
        padding: 40px 16px 48px;
    }

    .sponsor-section {
        padding: 40px 16px 48px;
    }

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

    .sponsor-cta-banner {
        padding: 20px 16px;
        flex-direction: column;
        gap: 14px;
    }

    .sponsor-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .app-section {
        padding: 40px 16px 48px;
    }

    .app-screens-stack {
        width: 300px;
        height: 340px;
    }

    .app-screen--main {
        width: 150px;
    }

    .app-screen--left {
        width: 138px;
        left: -8px;
    }

    .app-screen--right {
        width: 132px;
        right: -8px;
    }

    .footer-new {
        padding: 36px 16px 0;
    }

    .footer-new-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fn-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width:420px) {
    .hero-title {
        font-size: clamp(2.2rem, 11vw, 48px);
    }

    .invite-details-grid {
        grid-template-columns: 1fr 1fr;
    }

    .invite-title {
        font-size: 26px;
    }

    .invite-message {
        font-size: 16px;
    }

    .app-screens-stack {
        width: 260px;
        height: 300px;
    }

    .app-screen--main {
        width: 130px;
    }

    .app-screen--left {
        width: 118px;
        left: -5px;
    }

    .app-screen--right {
        width: 112px;
        right: -5px;
    }
}
