﻿
/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #200d33;
    color: #fff;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.navbar {
    height: 70px;
    background: linear-gradient(
        90deg,
        #ffd66b 0%,
        #ffb15c 22%,
        #e8649e 55%,
        #9a6bff 100%
    );

    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
}

.nav-container {
    width: 86%;
    max-width: 1350px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    width: 76px;
    height: 76px;
    background: #050505;
    border-radius: 0 0 10px 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    top: 6px;

    z-index: 5;
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
}

.logo-box .logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 10px 10px;
}

.logo-box span {
    color: white;
    font-family: Georgia, serif;
    font-weight: bold;
    font-size: 22px;
}

.logo-box small {
    position: absolute;
    bottom: 4px;
    font-size: 7px;
    color: #ffd66b;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: 20px;
    flex: 1;
}

.nav-links a {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

.nav-links a:hover {
    color: #4b002e;
}

.nav-divider {
    height: 22px;
    width: 2px;
    background: rgba(255,255,255,.7);
}

.nav-right {
    display: flex;
    gap: 25px;
}

.nav-right a {
    font-size: 14px;
    font-weight: bold;
}

.nav-right a:hover {
    color: #4b002e;
}

/* ---- Register Dropdown ---- */
.nav-drop {
    position: relative;
}
.nav-drop-toggle {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}
.nav-drop-toggle:hover {
    color: #4b002e;
}

/* ---- Login button (matches Register dropdown style) ---- */
.nav-right a.login-link {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}
.nav-right a.login-link:hover {
    color: #4b002e;
}
.nav-drop .drop-caret {
    font-size: 10px;
    vertical-align: 1px;
}
.nav-drop-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    min-width: 210px;
    background: #2b0f3a;
    border: 1px solid rgba(255,214,107,.35);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 18px 40px rgba(0,0,0,.5);
    display: none;
    z-index: 200;
}
.nav-drop-menu.show { display: block; }
.nav-drop-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}
.nav-drop-menu a:hover {
    background: rgba(255,214,107,.12);
    color: #ffd66b;
}
.nav-drop-menu a + a { margin-top: 2px; }


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-btn {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
    background: rgba(0,0,0,.25);
    padding: 4px 12px;
    border-radius: 8px;
    transition: background .2s ease;
}

.menu-btn:hover {
    background: rgba(0,0,0,.45);
}

.mobile-only {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    min-height: 480px;

    position: relative;

    padding-top: 70px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(232, 100, 158, .25),
            transparent 45%
        ),
        #2b0f3a;

    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;

    width: 650px;
    height: 260px;

    background: #3a1752;

    border-radius: 50%;

    top: -100px;
    left: -180px;

    transform: rotate(25deg);
}

.hero-section::after {
    content: "";
    position: absolute;

    width: 700px;
    height: 300px;

    background: #3a1752;

    border-radius: 50%;

    bottom: -160px;
    right: -180px;

    transform: rotate(-20deg);
}

.hero-wrapper {
    width: 76%;
    max-width: 1150px;
    margin: auto;

    position: relative;
    z-index: 2;

    padding-top: 40px;
}

.hero-slider {
    position: relative;

    margin: 0 64px;
}

.hero-slide {
    display: none;

    aspect-ratio: 1942 / 810;

    border: 2px solid #e8a91b;
    border-radius: 15px;

    overflow: hidden;
    position: relative;

    box-shadow:
        0 0 0 1px rgba(255,255,255,.2),
        0 8px 30px rgba(0,0,0,.4);
}

.hero-slide.active {
    display: block;
    animation: fadeHero .6s ease;
}

.hero-slide > picture,
.hero-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide > picture {
    display: flex;
}

.hero-slide > picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px 46px;

    background:
        linear-gradient(
            90deg,
            rgba(20, 5, 35, .9) 0%,
            rgba(20, 5, 35, .5) 55%,
            rgba(20, 5, 35, .1) 100%
        );
}

.hero-kicker {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffd66b;
    margin-bottom: 12px;
}

.hero-title {
    font-family: Georgia, serif;
    font-weight: bold;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero-title .grad {
    background: linear-gradient(90deg, #ffd66b, #ffb15c, #e8649e, #9a6bff, #ffd66b);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 5s linear infinite;
}

.hero-tagline {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-sub {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,.85);
    max-width: 56ch;
}

.hero-words {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 8px 0 4px;
}

.hero-words span {
    font-family: Georgia, serif;
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #ffd66b, #e8649e, #9a6bff, #ffd66b);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 6s linear infinite;
}

.hero-words span:nth-child(2) {
    animation-delay: 1s;
}

.hero-words span:nth-child(3) {
    animation-delay: 2s;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 26px;
    border-radius: 999px;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.hero-btn svg {
    flex-shrink: 0;
}

.hero-btn.gold {
    background: linear-gradient(90deg, #ffd66b, #ffb15c);
    color: #2a0f33;
    box-shadow: 0 6px 20px -8px rgba(255, 214, 107, .6);
    animation: pulseGold 3s ease-in-out infinite;
}

.hero-btn.gold:hover {
    transform: translateY(-3px) scale(1.03);
}

.hero-btn.ghost {
    border: 1px solid rgba(255,255,255,.55);
    color: #fff;
}

.hero-btn.ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
}

@keyframes fadeHero {
    from {
        opacity: 0;
        transform: scale(.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 250% 50%; }
}

@keyframes pulseGold {
    0%, 100% {
        box-shadow: 0 6px 20px -8px rgba(255, 214, 107, .6);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 12px 34px -6px rgba(255, 214, 107, .8);
        transform: translateY(-3px);
    }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes floatY2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}


/* Hero arrows */

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -64px;
    right: -64px;

    display: flex;
    justify-content: space-between;

    z-index: 5;

    pointer-events: none;
}

.hero-arrows .hero-arrow {
    pointer-events: auto;
}

.hero-arrow {
    width: 42px;
    height: 62px;

    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,214,107,.35);
    border-radius: 10px;

    color: #ffd66b;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: background .25s ease, transform .25s ease;
}

.hero-arrow:hover {
    background: rgba(0,0,0,.5);
    transform: scale(1.1);
}

.hero-arrow.left {
    justify-self: flex-start;
}

.hero-arrow.right {
    justify-self: flex-end;
}


/* =========================================================
   BACKGROUND MUSICAL SVG + GOLDEN ELEMENTS
========================================================= */

.bg-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bg-note {
    position: absolute;
    color: #ffd66b;
    opacity: .13;
    animation: floatY 7s ease-in-out infinite;
}

.bg-note.note-1 {
    width: 70px;
    height: 70px;
    top: 12%;
    left: 5%;
}

.bg-note.note-2 {
    width: 50px;
    height: 50px;
    top: 66%;
    left: 9%;
    animation-delay: 1.5s;
    opacity: .09;
}

.bg-note.note-3 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 6%;
    animation-delay: .8s;
}

.bg-note.note-4 {
    width: 44px;
    height: 44px;
    bottom: 12%;
    right: 9%;
    animation-delay: 2s;
    opacity: .09;
}

.bg-element {
    position: absolute;
    opacity: .55;
    user-select: none;
    pointer-events: none;
}

.bg-element.element-left {
    left: -30px;
    top: 50%;
    transform: translateY(-50%) rotate(-8deg);
    width: 340px;
    max-width: 32vw;
}

.bg-element.element-right {
    right: -30px;
    bottom: -26px;
    width: 360px;
    max-width: 34vw;
    transform: rotate(6deg);
}

.bg-element.element-center {
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    width: 420px;
    max-width: 60vw;
    opacity: .35;
}


/* =========================================================
   DOTS
========================================================= */

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;

    margin-top: 12px;
}

.dot {
    width: 12px;
    height: 12px;

    background: #9c6927;

    transform: rotate(45deg);

    cursor: pointer;

    transition: background .2s ease, transform .2s ease;
}

.dot:hover {
    background: #ffd66b;
}

.dot.active {
    background: #ffd66b;
    transform: rotate(45deg) scale(1.2);
}

.hero-meta {
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(255,255,255,.7);
    margin-top: 12px;
}

.hero-meta strong {
    color: #ffd66b;
}


/* =========================================================
   JOURNEY SECTION
========================================================= */

.journey-section {
    position: relative;

    background:
        linear-gradient(
            165deg,
            #e07000 0%,
            #c2332d 45%,
            #9a1f68 100%
        );

    padding: 30px 0 55px;

    overflow: hidden;
}

.journey-section::after {
    content: "";

    position: absolute;

    width: 100%;
    height: 200px;

    bottom: -120px;
    left: -10%;

    background: #7b160d;

    border-radius: 50%;

    transform: rotate(-7deg);
}

.section-title {
    text-align: center;

    font-size: 18px;
    letter-spacing: 2px;

    color: #ffd66b;

    font-weight: bold;

    margin-bottom: 20px;

    position: relative;
    z-index: 2;
}

.section-title span {
    margin: 0 6px;
}

.section-lead {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,.88);
    max-width: 72ch;
    margin: -6px auto 22px;

    position: relative;
    z-index: 2;
}

/* Journey wrapper */
.journey-stage {
    width: 82%;
    max-width: 1200px;
    margin: 0 auto;

    position: relative;
    z-index: 2;
}

.journey-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 22px;

    perspective: 1200px;
}

/* Premium tilt card */
.show-card {
    cursor: pointer;

    position: relative;

    background: linear-gradient(160deg, #3a1557, #1a0a26);
    border: 2px solid rgba(255, 214, 107, .55);
    border-radius: 18px;

    padding: 8px;

    box-shadow:
        0 18px 40px -18px rgba(0,0,0,.7),
        0 0 0 1px rgba(255, 214, 107, .12) inset;

    will-change: transform;
}

/* Golden inner glow ring that fades in on hover */
.show-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 2px solid rgba(255, 214, 107, .75);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.show-card:hover::after {
    opacity: 1;
}

/* Inner golden framed 1:1 image */
.show-image {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background:
        radial-gradient(circle at 30% 25%, #4a1670, #1f0e33);

    border: 2px solid #ffd66b;
    border-radius: 12px;

    box-shadow: 0 10px 26px -12px rgba(0,0,0,.85);
}

.show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;

    transition: transform .55s ease, filter .55s ease;
}

.show-card:hover .show-image img {
    transform: scale(1.06);
    filter: brightness(1.08) saturate(1.1);
}

/* Premium glossy film over the image */
.show-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(135deg, rgba(255,255,255,.25) 0%, rgba(255,255,255,.04) 30%, transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(255,214,107,.25), transparent 45%);
}

/* Gold shine sweep on hover */
.show-card-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 214, 107, .38) 50%, transparent 70%);
    transform: translateX(-140%);
    transition: transform .75s ease, opacity .4s ease;
}

.show-card:hover .show-card-shine {
    opacity: 1;
    transform: translateX(140%);
}


/* =========================================================
   CITIES
========================================================= */

.cities-section {
    background: #241033;

    padding: 45px 0 55px;

    position: relative;
}

.cities-container {
    width: 72%;
    max-width: 1150px;
    margin: auto;
}

.cities-lead {
    text-align: center;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,.8);
    margin: -4px auto 6px;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;

    margin: 30px auto 6px;
}

/* ---- City image card (purple theme, golden location) ---- */
.city-card {
    position: relative;

    flex: 0 1 220px;

    background: #2a1038;
    border: 2px solid #ffd66b;
    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 26px -12px rgba(255, 214, 107, .35);

    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.city-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #ffe39b;
    box-shadow: 0 26px 48px -14px rgba(255, 214, 107, .6);
}

/* 3 cards per row on medium screens */
@media (min-width: 768px) {
    .city-card { flex-basis: 30%; }
}

/* 4 cards per row on large screens */
@media (min-width: 1100px) {
    .city-card { flex-basis: 23%; }
}

/* 5 cards per row on extra-large screens */
@media (min-width: 1400px) {
    .city-card { flex-basis: 18.4%; }
}

.city-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #1a0a26;
}

.city-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;

    transition: transform .55s ease, filter .55s ease;
}

.city-card:hover .city-card-media img {
    transform: scale(1.09);
    filter: brightness(1.1);
}

/* Shine sweep on hover */
.city-card-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 214, 107, .3) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform .7s ease, opacity .4s ease;
}

.city-card:hover .city-card-shine {
    opacity: 1;
    transform: translateX(120%);
}

.city-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    padding: 13px 16px 14px;

    background: linear-gradient(90deg, rgba(255, 214, 107, .08), rgba(154, 107, 255, .08));
    border-top: 1px solid rgba(255, 214, 107, .22);
}

.city-card-name {
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: .5px;

    color: #ffd66b;

    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.city-card-pin {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;

    background: #ffd66b;
    box-shadow: 0 0 10px rgba(255, 214, 107, .9);

    animation: cityPulse 1.6s ease-in-out infinite;
}

/* ---- Mobile: 1 card visible with auto horizontal scroll ---- */
@media (max-width: 767px) {
    .cities-grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;

        gap: 14px;
        margin: 24px -16px 6px;
        padding: 4px 16px 12px;
    }

    .cities-grid::-webkit-scrollbar {
        height: 6px;
    }

    .cities-grid::-webkit-scrollbar-thumb {
        background: rgba(255, 214, 107, .5);
        border-radius: 6px;
    }

    .city-card {
        flex: 0 0 46%;
        scroll-snap-align: center;
        border-width: 2px;
    }
}

@keyframes cityPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .55; transform: scale(.8); }
}

.city-accent {
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #ffd66b;
    margin-top: 22px;
}


/* =========================================================
   WHY KNI
========================================================= */

.why-section {
    background:
        linear-gradient(
            165deg,
            #4a1670 0%,
            #5d2a8f 60%,
            #7a3bd6 100%
        );

    padding: 50px 0 60px;
}

.why-container {
    width: 72%;
    max-width: 1150px;
    margin: auto;
}

.why-lead {
    text-align: center;
    font-size: 15px;
    color: rgba(255,255,255,.85);
    margin: -4px auto 6px;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 16px;

    margin-top: 28px;
}

.why-card {
    background: rgba(20, 8, 35, .55);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;

    padding: 24px 20px;

    transition: transform .3s ease, border-color .3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 214, 107, .55);
}

.why-icon {
    font-size: 30px;
    margin-bottom: 10px;
    animation: floatY 4s ease-in-out infinite;
}

.why-icon svg,
.promo-icon svg {
    width: 34px;
    height: 34px;
}

.why-card:nth-child(2) .why-icon { animation-delay: .5s; }
.why-card:nth-child(3) .why-icon { animation-delay: 1s; }
.why-card:nth-child(4) .why-icon { animation-delay: 1.5s; }
.why-card:nth-child(5) .why-icon { animation-delay: 2s; }

.why-card h3 {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.75);
}


/* =========================================================
   DIGITAL (PROMO SLIDER)
========================================================= */

.digital-section {
    background: #1e0b2c;

    padding: 30px 0 40px;

    position: relative;
}

.promo-slider {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 55px;

    overflow: hidden;

    position: relative;
}

.promo-card {
    flex: 0 0 240px;

    height: 140px;

    overflow: hidden;

    background:
        linear-gradient(
            160deg,
            rgba(255, 214, 107, .14),
            rgba(154, 107, 255, .14)
        );

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: transform .3s ease, border-color .3s ease;
}

.promo-card:hover {
    transform: scale(1.04);
    border-color: rgba(255, 214, 107, .55);
}

.promo-icon {
    font-size: 32px;
    animation: floatY 4s ease-in-out infinite;
}

.promo-card:nth-child(odd) .promo-icon {
    animation-duration: 4.5s;
}

.promo-card strong {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
}

.promo-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    border: none;
    background: rgba(0,0,0,.3);
    border-radius: 8px;

    color: #ffd66b;

    font-size: 34px;

    cursor: pointer;

    z-index: 4;

    transition: background .2s ease;
}

.promo-arrow:hover {
    background: rgba(0,0,0,.55);
}

.promo-arrow.left {
    left: 15px;
}

.promo-arrow.right {
    right: 15px;
}

.digital-accent {
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #ffd66b;
    margin-top: 22px;
}


/* =========================================================
   REGISTER
========================================================= */

.register-section {
    background:
        linear-gradient(
            165deg,
            #c2451e 0%,
            #9d1f44 60%,
            #6e1a6e 100%
        );

    padding: 50px 0 60px;
}

.register-container {
    width: 58%;
    max-width: 760px;
    margin: auto;
}

.register-lead {
    text-align: center;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,.85);
    margin: -4px auto 6px;
}

.updates {
    list-style: none;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px 22px;

    margin: 20px auto 6px;
    max-width: 620px;

    font-size: 15px;
    color: rgba(255,255,255,.88);
}

.updates li::before {
    content: "âœ“ ";
    color: #ffd66b;
    font-weight: bold;
}

.register-form {
    margin-top: 24px;
    background: rgba(20, 5, 30, .45);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;

    padding: 28px 30px;
}

.field {
    display: block;
    margin-bottom: 16px;
}

.field span {
    display: block;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffd66b;
    margin-bottom: 7px;
}

.field input {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    color: #fff;
    background: rgba(15, 5, 25, .7);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    padding: 13px 15px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field input::placeholder {
    color: rgba(255,255,255,.4);
}

.field input:focus {
    border-color: #ffd66b;
    box-shadow: 0 0 0 4px rgba(255, 214, 107, .14);
}

.interest {
    border: none;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;

    margin: 6px 0 18px;
}

.interest legend {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffd66b;
    margin-bottom: 10px;
}

.radio {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    color: rgba(255,255,255,.88);

    cursor: pointer;
}

.radio input {
    accent-color: #ffd66b;
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
}

.btn-submit {
    display: block;
    width: 100%;

    font-family: inherit;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;

    background: linear-gradient(90deg, #ffd66b, #ffb15c);
    color: #2a0f33;

    border: none;
    border-radius: 999px;

    padding: 16px 20px;

    cursor: pointer;

    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(255, 214, 107, .7);
}

.fineprint {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255,255,255,.6);
    text-align: center;
}


/* =========================================================
   ABOUT / FOUNDER
========================================================= */

.about-section {
    background: #241033;

    padding: 50px 0 30px;
}

.about-container {
    width: 58%;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-lead {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,.8);
    max-width: 60ch;
    margin: -4px auto 8px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;

    margin-top: 26px;
}

.about-card {
    background: rgba(20, 8, 35, .55);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;

    padding: 26px 20px;

    transition: transform .3s ease, border-color .3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 214, 107, .55);
}

.about-card h3 {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffd66b;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.75);
}

.founder-section {
    background: #1e0b2c;

    padding: 50px 0 55px;

    text-align: center;
}

.founder-lead {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,.82);
    max-width: 58ch;
    margin: -4px auto 10px;
}

.founder-accent {
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    color: #ffd66b;
    margin-top: 16px;
}


/* =========================================================
   READY
========================================================= */

.ready-section {
    text-align: center;

    background:
        radial-gradient(
            40rem 24rem at 50% 0%,
            rgba(154, 107, 255, .3),
            transparent 65%
        ),
        #241033;

    padding: 55px 0 60px;

    position: relative;
    overflow: hidden;
}

.ready-section > :not(.bg-layer) {
    position: relative;
    z-index: 2;
}

.ready-words {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;

    margin: 22px 0 26px;
}

.ready-words span {
    font-family: Georgia, serif;
    font-weight: bold;
    font-size: 34px;
    letter-spacing: 3px;

    background: linear-gradient(90deg, #ffd66b, #e8649e, #9a6bff, #ffd66b);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 6s linear infinite;
}

.ready-words span:nth-child(2) { animation-delay: 1s; }
.ready-words span:nth-child(3) { animation-delay: 2s; }

.ready-btn {
    display: inline-block;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;

    background: linear-gradient(90deg, #ffd66b, #ffb15c);
    color: #2a0f33;

    padding: 16px 36px;
    border-radius: 999px;

    box-shadow: 0 12px 28px -10px rgba(255, 214, 107, .7);

    transition: transform .2s ease, box-shadow .2s ease;

    animation: pulseGold 3s ease-in-out infinite;
}

.ready-btn:hover {
    transform: translateY(-3px) scale(1.04);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    position: relative;

    background:
        radial-gradient(
            circle at 20% 100%,
            #43003b,
            transparent 40%
        ),
        #31002f;

    border-top: 1px solid rgba(255,255,255,.05);

    padding: 40px 0 10px;

    overflow: hidden;
}

footer::before {
    content: "";

    position: absolute;

    width: 850px;
    height: 320px;

    background: #43003c;

    border-radius: 50%;

    left: -450px;
    bottom: -220px;

    transform: rotate(-15deg);
}

.footer-container {
    width: 72%;
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr 1.2fr 1fr;

    gap: 35px;

    position: relative;
    z-index: 2;
}

.footer-column h3 {
    color: #ffd66b;

    font-size: 16px;

    margin-bottom: 16px;
}

.footer-column a {
    display: block;

    font-size: 13px;

    line-height: 1.9;

    color: #fff;

    transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
    color: #ffd66b;
    transform: translateX(3px);
}

.social-title {
    margin-top: 25px;
}

.socials {
    display: flex;
    gap: 10px;
}

.social {
    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #78004d;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 15px;

    font-weight: bold;

    transition: background .2s ease, transform .2s ease;
}

.social:hover {
    background: #ffbd00;
    color: #2d002a;
    transform: translateY(-3px);
}


/* =========================================================
   COPYRIGHT
========================================================= */

.copyright {
    margin-top: 35px;

    background: #ffb51a;

    color: #4b002e;

    padding: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

    font-weight: bold;

    font-style: italic;

    position: relative;
    z-index: 3;
}


/* =========================================================
   PHONE INPUT VALIDATION
========================================================= */

.phone-input.invalid {
    border-color: #ff5a5a !important;
    box-shadow: 0 0 0 4px rgba(255, 90, 90, .18) !important;
}

.phone-input.valid {
    border-color: #4ade80 !important;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, .14) !important;
}


/* =========================================================
   LEAD POPUP MODAL
========================================================= */

.modal-overlay {
    position: fixed;
    inset: 0;

    background: rgba(10, 3, 18, .78);
    backdrop-filter: blur(6px);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 1000;

    padding: 20px;

    opacity: 0;
    transition: opacity .35s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-box {
    width: 100%;
    max-width: 460px;

    max-height: 92vh;
    overflow-y: auto;

    background:
        linear-gradient(
            165deg,
            #3a1157 0%,
            #6e1a6e 60%,
            #c2451e 130%
        );

    border: 1px solid rgba(255, 214, 107, .45);
    border-radius: 20px;

    padding: 30px 28px 26px;

    position: relative;

    box-shadow: 0 30px 80px rgba(0,0,0,.6);

    transform: translateY(24px) scale(.96);
    transition: transform .35s ease;
}

.modal-overlay.show .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;

    width: 34px;
    height: 34px;

    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: background .2s ease, transform .2s ease;
}

.modal-close:hover {
    background: #ffd66b;
    color: #2a0f33;
    transform: rotate(90deg);
}

.modal-box .modal-badge {
    display: inline-block;

    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #2a0f33;
    background: linear-gradient(90deg, #ffd66b, #ffb15c);

    padding: 5px 14px;
    border-radius: 999px;

    margin-bottom: 12px;
}

.modal-box h3 {
    font-family: Georgia, serif;
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 8px;
}

.modal-box h3 .grad {
    background: linear-gradient(90deg, #ffd66b, #ffb15c, #e8649e, #9a6bff, #ffd66b);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 5s linear infinite;
}

.modal-box > p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.85);
    margin-bottom: 18px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-form input,
.lead-form select {
    width: 100%;

    font-family: inherit;
    font-size: 15px;

    color: #fff;
    background: rgba(15, 5, 25, .72);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;

    padding: 13px 15px;

    outline: none;

    transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-form input::placeholder {
    color: rgba(255,255,255,.42);
}

.lead-form input:focus,
.lead-form select:focus {
    border-color: #ffd66b;
    box-shadow: 0 0 0 4px rgba(255, 214, 107, .16);
}

.lead-form select {
    appearance: none;
    cursor: pointer;
}

.lead-form select option {
    background: #2a0f33;
    color: #fff;
}

.lead-radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.lead-radio {
    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 13px;
    color: rgba(255,255,255,.88);

    background: rgba(15, 5, 25, .55);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;

    padding: 11px 12px;

    cursor: pointer;

    transition: border-color .2s ease, background .2s ease;
}

.lead-radio input {
    accent-color: #ffd66b;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.lead-radio svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.lead-radio:has(input:checked) {
    border-color: #ffd66b;
    background: rgba(255, 214, 107, .12);
}

.lead-config-title {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin: 2px 0 -2px;
}

.lead-config-grid .lead-radio {
    padding: 9px 11px;
    font-size: 12.5px;
}

.lead-config-grid .lead-radio input {
    width: .95rem;
    height: .95rem;
}

.btn-lead {
    width: 100%;

    font-family: inherit;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;

    background: linear-gradient(90deg, #ffd66b, #ffb15c);
    color: #2a0f33;

    border: none;
    border-radius: 999px;

    padding: 16px 20px;

    cursor: pointer;

    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-lead:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(255, 214, 107, .7);
}

.modal-success {
    text-align: center;
    padding: 20px 0 6px;
}

.modal-success .success-icon {
    font-size: 52px;
    display: block;
    margin-bottom: 10px;
    animation: floatY 3s ease-in-out infinite;
}

.modal-success .success-icon svg {
    width: 54px;
    height: 54px;
    display: block;
    margin: 0 auto;
}

.modal-success h4 {
    font-family: Georgia, serif;
    font-size: 22px;
    color: #ffd66b;
    margin-bottom: 8px;
}

.modal-success p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.85);
    margin-bottom: 16px;
}

.modal-success .btn-lead {
    width: auto;
    padding: 13px 30px;
}


/* =========================================================
   SUBSCRIBE GATE (Step 1)
========================================================= */

#subscribeGate {
    text-align: center;
}

#subscribeGate h3 {
    font-family: Georgia, serif;
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.yt-channel-card {
    display: flex;
    align-items: center;
    gap: 12px;

    background: rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;

    padding: 14px 16px;
    margin-bottom: 14px;
}

.yt-channel-icon {
    flex-shrink: 0;

    width: 50px;
    height: 50px;

    background: #ff0000;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
}

.yt-channel-info {
    text-align: left;
    line-height: 1.4;
}

.yt-channel-info strong {
    display: block;
    font-size: 15px;
    color: #fff;
}

.yt-channel-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
}

.gate-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 18px;
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-family: inherit;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;

    background: #ff0000;
    color: #fff;

    border: none;
    border-radius: 999px;

    padding: 14px 28px;

    cursor: pointer;

    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn-subscribe:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -6px rgba(255, 0, 0, .5);
}

.subscribe-timer {
    margin-top: 16px;
    margin-bottom: 6px;
}

.timer-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, .15);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 8px;
}

.timer-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ffd66b, #ffb15c);
    border-radius: 999px;
    transition: width 1s linear;
}

.subscribe-timer span {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
}

.subscribe-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    font-size: 13px;
    font-weight: 600;
    color: #ff6b6b;

    margin-top: 14px;
    animation: shakeX .4s ease;
}

.btn-continue {
    margin-top: 16px;
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-continue.active {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
    animation: pulseGold 2s ease-in-out infinite;
}

@keyframes shakeX {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}


/* =========================================================
   FLOATING CTA
========================================================= */

.float-cta {
    position: fixed;
    bottom: 22px;
    right: 22px;

    z-index: 900;

    display: flex;
    align-items: center;
    gap: 10px;

    font-family: inherit;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: linear-gradient(90deg, #ffd66b, #ffb15c);
    color: #2a0f33;

    border: none;
    border-radius: 999px;

    padding: 15px 24px;

    cursor: pointer;

    box-shadow: 0 14px 34px -8px rgba(255, 214, 107, .75);

    animation: pulseGold 3s ease-in-out infinite;

    transition: transform .2s ease;
}

.float-cta:hover {
    transform: translateY(-4px) scale(1.04);
}

.float-cta .mic-icon {
    font-size: 20px;
    animation: floatY 2.5s ease-in-out infinite;
}

.float-cta .mic-icon svg {
    width: 20px;
    height: 20px;
}


/* =========================================================
   SECTION CTAs
========================================================= */

.section-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;

    margin-top: 30px;

    position: relative;
    z-index: 2;
}

.link-btn {
    font-family: inherit;
    font-size: inherit;
    font-weight: bold;
    color: #ffd66b;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    transition: color .2s ease;
}

.link-btn:hover {
    color: #fff;
}

/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }
.reveal.delay-4 { transition-delay: .48s; }
.reveal.delay-5 { transition-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-btn.gold,
    .ready-btn,
    .hero-title .grad,
    .hero-words span,
    .ready-words span,
    .why-icon,
    .promo-icon {
        animation: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .nav-container {
        width: 92%;
    }

    .nav-links,
    .nav-right {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .nav-links.mobile-open {
        display: flex;

        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        background: #32002f;

        flex-direction: column;

        padding: 24px 20px;

        gap: 22px;

        border-top: 2px solid rgba(255,214,107,.4);
        box-shadow: 0 20px 40px rgba(0,0,0,.45);
    }

    .nav-links.mobile-open a {
        font-size: 17px;
    }

    .nav-links.mobile-open .nav-divider {
        display: none;
    }

    .nav-links.mobile-open .mobile-only {
        display: inline;
    }

    .nav-links.mobile-open .mobile-only.nav-divider {
        display: none;
    }

    .hero-wrapper {
        width: 88%;
    }

    .hero-section {
        min-height: 420px;
    }

    .hero-slider {
        margin: 0;
    }

    .hero-arrows {
        position: static;
        transform: none;
        left: auto;
        right: auto;

        justify-content: center;
        gap: 14px;

        margin-top: 14px;
    }

    .bg-note.note-1 { left: 2%; width: 46px; }
    .bg-note.note-2 { left: 4%; width: 34px; }
    .bg-note.note-3 { right: 2%; width: 40px; }
    .bg-note.note-4 { right: 4%; width: 32px; }

    .bg-element.element-left { width: 190px; opacity: .4; left: -60px; }
    .bg-element.element-right { width: 210px; opacity: .4; right: -60px; }
    .bg-element.element-center { width: 260px; }

    .journey-stage {
        width: 88%;
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .cities-container,
    .why-container,
    .register-container,
    .about-container {
        width: 88%;
    }

    .promo-slider {
        gap: 20px;
        justify-content: flex-start;
        padding-left: 55px;
        padding-right: 55px;
    }

    .promo-card {
        flex-basis: 210px;
    }

    .footer-container {
        width: 88%;
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 550px) {

    .modal-box {
        padding: 26px 20px 22px;
        border-radius: 16px;
    }

    .modal-box h3 {
        font-size: 21px;
    }

    #subscribeGate h3 {
        font-size: 21px;
    }

    .btn-subscribe {
        font-size: 13px;
        padding: 12px 22px;
    }

    .yt-channel-card {
        padding: 12px 14px;
    }

    .lead-radio-group {
        grid-template-columns: 1fr;
    }

    .float-cta {
        bottom: 14px;
        right: 14px;
        padding: 13px 18px;
        font-size: 12px;
    }

    .float-cta .mic-icon {
        font-size: 17px;
    }

    .section-cta {
        flex-direction: column;
        align-items: center;
    }

}


@media (max-width: 550px) {

    .navbar {
        height: 60px;
    }

    .logo-box {
        width: 62px;
        height: 64px;
        top: 4px;
    }

    .logo-box span {
        font-size: 18px;
    }

    .logo-box small {
        font-size: 6px;
    }

    .hero-section {
        min-height: 420px;
    }

    .hero-wrapper {
        padding-top: 25px;
    }

    .hero-slide {
        aspect-ratio: 1 / 1;
        max-height: 85vw;
    }

    .hero-content {
        padding: 24px 26px;
    }

    .hero-kicker {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 27px;
    }

    .hero-tagline {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .hero-words span {
        font-size: 20px;
    }

    .hero-cta {
        gap: 8px;
    }

    .hero-btn {
        font-size: 11px;
        padding: 11px 16px;
    }

    .hero-arrow {
        width: 40px;
        height: 46px;
        border-radius: 8px;
    }

    .hero-arrow svg {
        width: 18px;
        height: 18px;
    }

    .section-title {
        font-size: 15px;
    }

    .section-lead {
        font-size: 14px;
    }

    .journey-section {
        padding-top: 18px;
        padding-bottom: 35px;
    }

    .journey-section::after {
        height: 120px;
        bottom: -80px;
    }

    .journey-stage {
        width: 90%;
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .show-card {
        padding: 5px;
        border-radius: 14px;
        box-shadow:
            0 10px 24px -12px rgba(0,0,0,.6),
            0 0 0 1px rgba(255, 214, 107, .10) inset;
    }

    .show-card::after {
        border-radius: 14px;
    }

    .show-image {
        aspect-ratio: 1 / 1;
        border-radius: 9px;
        border-width: 1.5px;
        box-shadow: 0 6px 16px -8px rgba(0,0,0,.75);
    }

    .city-card {
        flex-basis: 30%;
    }

    .city-card-name {
        font-size: 12px;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

    .promo-slider {
        justify-content: flex-start;
        padding-left: 44px;
        padding-right: 44px;
    }

    .promo-card {
        flex-basis: 170px;
        height: 105px;
    }

    .promo-card strong {
        font-size: 12px;
    }

    .register-form {
        padding: 22px 18px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-column h3 {
        font-size: 15px;
    }

    .footer-column a {
        font-size: 13px;
    }

    .copyright {
        font-size: 11px;
        padding: 10px;
        text-align: center;
    }

    .lead-form input,
    .lead-form select,
    .field input,
    .field select,
    .field textarea {
        font-size: 16px;
    }
}


@media (max-width: 400px) {

    .hero-title {
        font-size: 23px;
    }

    .hero-sub {
        font-size: 13px;
    }

    .modal-box {
        padding: 24px 16px 20px;
    }

    .float-cta {
        padding: 11px 14px;
        font-size: 11px;
        letter-spacing: .5px;
    }

    .journey-stage {
        width: 94%;
    }

    .journey-grid {
        gap: 10px;
    }
}


/* Disable hover-only effects on touch devices */
@media (hover: none) {
    .show-card::after {
        opacity: .6;
    }

    .show-card-shine {
        display: none;
    }

    .show-image img {
        transition: none;
    }

    .show-card:hover .show-image img {
        transform: none;
        filter: none;
    }
}

