:root {
    --bg: #080a12;
    --bg-soft: #10131f;
    --surface: #151927;
    --surface-light: #1d2131;
    --text: #f8fafc;
    --muted: #a7adbf;
    --line: rgba(255,255,255,.10);

    --pink: #ff3cac;
    --purple: #784cff;
    --cyan: #00d9ff;
    --orange: #ff8a3d;
    --lime: #a7ff4f;

    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;

    --shadow:
        0 30px 80px rgba(0,0,0,.45);

    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(120,76,255,.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(255,60,172,.10),
            transparent 30%
        ),
        var(--bg);

    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(8,10,18,.78);
    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-weight: 900;
    letter-spacing: -.04em;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--pink),
            var(--purple)
        );

    box-shadow:
        0 10px 30px rgba(255,60,172,.25);
}

.logo-text {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;

    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.nav-links a {
    transition:
        color .25s ease,
        transform .25s ease;
}

.nav-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.nav-button {
    padding: 12px 18px;

    border-radius: 999px;

    background: #fff;
    color: #080a12;

    font-weight: 800;
    font-size: 14px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,255,255,.16);
}


/* HERO */

.hero {
    position: relative;
    isolation: isolate;

    padding: 110px 0 120px;

    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(400px, .82fr);

    align-items: center;
    gap: 80px;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    color: var(--cyan);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}

.eyebrow::before {
    content: "";

    width: 24px;
    height: 2px;

    border-radius: 99px;

    background:
        linear-gradient(
            90deg,
            var(--pink),
            var(--cyan)
        );
}

h1,
h2,
h3 {
    font-family: "Space Grotesk", sans-serif;
    margin-top: 0;
}

h1 {
    max-width: 850px;

    margin-bottom: 28px;

    font-size: clamp(
        48px,
        7vw,
        88px
    );

    line-height: .98;
    letter-spacing: -.065em;
}

h1 span,
h2 span {
    display: block;

    background:
        linear-gradient(
            100deg,
            var(--pink),
            var(--purple),
            var(--cyan)
        );

    background-size: 200% 200%;

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    animation: gradientMove 7s ease infinite;
}

.hero-lead {
    max-width: 700px;

    color: #e4e7ef;

    font-size: 20px;
    line-height: 1.75;
}

.hero-copy > p:not(.hero-lead) {
    max-width: 690px;

    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 35px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 999px;

    font-weight: 800;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.button:hover {
    transform: translateY(-4px);
}

.primary {
    color: #fff;

    background:
        linear-gradient(
            100deg,
            var(--pink),
            var(--purple)
        );

    box-shadow:
        0 15px 40px rgba(120,76,255,.30);
}

.primary:hover {
    box-shadow:
        0 20px 50px rgba(255,60,172,.35);
}

.secondary {
    border: 1px solid var(--line);

    background: rgba(255,255,255,.05);
}

.secondary:hover {
    background: rgba(255,255,255,.09);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;

    margin-top: 55px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 28px;
}

.hero-stats span {
    color: var(--muted);
    font-size: 12px;
}


/* HERO VISUAL */

.hero-visual {
    position: relative;

    min-height: 620px;

    display: grid;
    place-items: center;
}

.visual-backdrop {
    position: absolute;
    inset: 8%;

    border-radius: 50%;

    background:
        conic-gradient(
            from 180deg,
            var(--pink),
            var(--purple),
            var(--cyan),
            var(--orange),
            var(--pink)
        );

    filter: blur(70px);
    opacity: .35;

    animation: spinGlow 15s linear infinite;
}

.main-preview {
    position: relative;
    z-index: 2;

    width: min(100%, 500px);
    aspect-ratio: 4 / 5;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 38px;

    background: var(--surface);

    box-shadow:
        0 40px 100px rgba(0,0,0,.55);

    transform:
        rotate(2deg);

    transition:
        transform .5s ease,
        box-shadow .5s ease;
}

.main-preview:hover {
    transform:
        rotate(0deg)
        translateY(-8px);

    box-shadow:
        0 50px 120px rgba(0,0,0,.65);
}

.main-preview img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(1.15);
}

.preview-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,7,15,.96),
            rgba(5,7,15,.10) 65%
        );
}

.preview-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;

    display: flex;
    flex-direction: column;
}

.preview-label {
    margin-bottom: 8px;

    color: var(--cyan);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .15em;
}

.preview-content strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 34px;
}

.preview-content > span:not(.preview-label) {
    color: #cbd0dd;
}

.preview-button {
    align-self: flex-start;

    margin-top: 20px;
    padding: 10px 17px;

    border-radius: 999px;

    background: #fff;
    color: #090b12;

    font-size: 13px;
    font-weight: 900;
}

.floating-card {
    position: absolute;
    z-index: 4;

    min-width: 150px;

    padding: 16px;

    display: flex;
    flex-direction: column;

    border:
        1px solid
        rgba(255,255,255,.14);

    border-radius: 18px;

    background:
        rgba(19,22,35,.86);

    backdrop-filter: blur(18px);

    box-shadow: var(--shadow);

    animation: floatCard 5s ease-in-out infinite;
}

.floating-card span {
    color: var(--cyan);

    font-size: 11px;
    font-weight: 900;
}

.floating-card strong {
    margin-top: 5px;

    font-family: "Space Grotesk", sans-serif;
}

.floating-card small {
    color: var(--muted);
}

.card-a {
    left: -20px;
    top: 18%;
}

.card-b {
    right: -20px;
    bottom: 16%;

    animation-delay: -2s;
}


/* ORBS */

.hero-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(1px);

    opacity: .65;

    z-index: -1;

    animation: orbFloat 9s ease-in-out infinite;
}

.orb-one {
    width: 180px;
    height: 180px;

    left: -60px;
    top: 25%;

    background: var(--pink);
}

.orb-two {
    width: 130px;
    height: 130px;

    right: 25%;
    top: 5%;

    background: var(--cyan);

    animation-delay: -3s;
}

.orb-three {
    width: 220px;
    height: 220px;

    right: -100px;
    bottom: 0;

    background: var(--orange);

    animation-delay: -6s;
}


/* INTRO */

.intro {
    padding: 120px 0;

    background:
        linear-gradient(
            180deg,
            #0d101a,
            #10131f
        );

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.intro-grid {
    display: grid;
    grid-template-columns: .8fr 1fr;

    gap: 100px;
}

h2 {
    margin-bottom: 25px;

    font-size: clamp(
        38px,
        5vw,
        64px
    );

    line-height: 1.05;
    letter-spacing: -.055em;
}

.intro-copy {
    color: var(--muted);
    font-size: 17px;
}

.intro-copy p {
    margin-top: 0;
    margin-bottom: 25px;
}


/* FEATURED */

.featured {
    padding: 130px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 60px;

    margin-bottom: 55px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading > p {
    max-width: 440px;

    color: var(--muted);
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: var(--radius-xl);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.025)
        );

    box-shadow: var(--shadow);
}

.feature-image {
    position: relative;

    min-height: 600px;

    overflow: hidden;
}

.feature-image a,
.feature-image img {
    width: 100%;
    height: 100%;
}

.feature-image img {
    object-fit: cover;

    transition:
        transform .8s ease,
        filter .8s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.07);
    filter: saturate(1.25);
}

.image-shine {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 30%,
            rgba(255,255,255,.14),
            transparent 70%
        );

    transform: translateX(-120%);

    transition: transform .8s ease;
}

.feature-card:hover .image-shine {
    transform: translateX(120%);
}

.feature-content {
    padding: 65px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.number {
    color: var(--pink);

    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 900;
}

.feature-label {
    margin-top: 25px;

    color: var(--cyan);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
}

.feature-content h3 {
    margin: 10px 0 20px;

    font-size: 52px;
    letter-spacing: -.05em;
}

.feature-content p {
    color: var(--muted);
}

.feature-button {
    align-self: flex-start;

    display: inline-flex;
    align-items: center;
    gap: 16px;

    margin-top: 18px;
    padding: 15px 20px;

    border-radius: 14px;

    background:
        linear-gradient(
            100deg,
            var(--pink),
            var(--purple)
        );

    font-weight: 900;

    box-shadow:
        0 15px 35px rgba(120,76,255,.25);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.feature-button:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 45px rgba(255,60,172,.30);
}


/* DESTINATIONS */

.destinations {
    padding: 130px 0;

    background:
        #f5f7fb;

    color: #111522;
}

.destinations .eyebrow {
    color: #7047e8;
}

.destinations .section-heading {
    display: block;
    text-align: center;
}

.destinations .section-heading > p {
    margin: 25px auto 0;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

.destination-card {
    position: relative;

    padding: 38px;

    min-height: 390px;

    display: flex;
    flex-direction: column;

    border: 1px solid #e0e4ed;
    border-radius: 28px;

    background: #fff;

    box-shadow:
        0 20px 60px rgba(20,25,45,.08);

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.destination-card::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -90px;
    bottom: -100px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--pink),
            var(--purple)
        );

    opacity: .08;

    transition:
        transform .5s ease;
}

.destination-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 30px 70px rgba(20,25,45,.14);
}

.destination-card:hover::after {
    transform: scale(1.5);
}

.destination-top {
    display: flex;
    justify-content: space-between;
}

.destination-index {
    color: #8a91a4;

    font-size: 12px;
    font-weight: 900;
}

.destination-arrow {
    font-size: 22px;

    transition:
        transform .25s ease;
}

.destination-card:hover .destination-arrow {
    transform: translate(5px,-5px);
}

.destination-icon {
    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    margin-top: 45px;

    border-radius: 19px;

    color: #fff;

    font-family: "Space Grotesk", sans-serif;
    font-weight: 900;
    font-size: 20px;
}

.gonzo-icon {
    background:
        linear-gradient(
            135deg,
            #ff3cac,
            #784cff
        );
}

.free-icon {
    background:
        linear-gradient(
            135deg,
            #00bfa6,
            #00d9ff
        );
}

.destination-card h3 {
    margin: 25px 0 12px;

    font-size: 34px;
    letter-spacing: -.045em;
}

.destination-card p {
    color: #687083;

    margin-top: 0;
}

.destination-link {
    margin-top: auto;

    color: #6845df;

    font-weight: 900;
}


/* EXPERIENCE */

.experience {
    padding: 130px 0;

    background: #090b13;
}

.experience-panel {
    display: grid;
    grid-template-columns: .8fr 1.2fr;

    gap: 100px;

    padding: 70px;

    border:
        1px solid
        var(--line);

    border-radius: 34px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(0,217,255,.10),
            transparent 35%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(255,60,172,.10),
            transparent 35%
        ),
        var(--surface);
}

.experience-intro p {
    color: var(--muted);
}

.experience-list {
    display: grid;
    gap: 8px;
}

.experience-item {
    display: grid;
    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 22px 0;

    border-bottom: 1px solid var(--line);
}

.experience-item:last-child {
    border-bottom: 0;
}

.experience-item > span {
    color: var(--pink);

    font-family: "Space Grotesk", sans-serif;
    font-weight: 900;
}

.experience-item strong {
    font-size: 18px;
}

.experience-item p {
    margin: 6px 0 0;

    color: var(--muted);
    font-size: 14px;
}


/* CONTENT */

.content-section {
    padding: 130px 0;

    background: #111522;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr .65fr;

    gap: 100px;
}

.content-grid article p {
    max-width: 700px;

    color: var(--muted);
}

.quote-card {
    align-self: center;

    padding: 45px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            var(--purple),
            #3d237f
        );

    box-shadow:
        0 30px 70px rgba(0,0,0,.30);
}

.quote-mark {
    font-size: 70px;
    line-height: .5;
}

.quote-card h3 {
    font-size: 34px;
    line-height: 1.15;
}

.quote-card p {
    color: rgba(255,255,255,.75);
}

.quote-card a {
    display: inline-flex;

    margin-top: 15px;

    font-weight: 900;
}


/* CTA */

.cta {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #ff3cac,
            #784cff 45%,
            #00bcd4
        );
}

.cta-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -250px;

    border-radius: 50%;

    background: rgba(255,255,255,.20);

    filter: blur(50px);
}

.cta-inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

.cta h2 {
    max-width: 700px;

    margin-bottom: 20px;
}

.cta h2 span {
    color: #fff;

    background: none;

    animation: none;
}

.cta p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.82);
}

.cta .eyebrow {
    color: #fff;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.outline {
    border:
        1px solid
        rgba(255,255,255,.35);

    background:
        rgba(255,255,255,.10);

    color: #fff;
}

.outline:hover {
    background:
        rgba(255,255,255,.20);
}


/* FOOTER */

.footer {
    padding-top: 80px;

    background: #070911;

    border-top: 1px solid var(--line);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;

    gap: 70px;

    padding-bottom: 70px;
}

.footer-brand p {
    max-width: 430px;

    margin-top: 20px;

    color: var(--muted);
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-column strong {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--muted);

    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-bottom {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid var(--line);

    color: #70778a;

    font-size: 13px;
}


/* ANIMATIONS */

@keyframes gradientMove {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes spinGlow {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate3d(0,0,0);
    }

    50% {
        transform: translate3d(20px,-30px,0);
    }
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .hero-grid,
    .intro-grid,
    .experience-panel,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 520px;
    }

    .hero-grid {
        gap: 40px;
    }

    .experience-panel {
        gap: 50px;
    }

    .content-grid {
        gap: 50px;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 800px) {

    .nav-links {
        display: none;
    }

    .nav-button {
        display: none;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-visual {
        min-height: 470px;
    }

    .main-preview {
        width: min(100%, 420px);
    }

    .card-a {
        left: 0;
    }

    .card-b {
        right: 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 25px;
    }

    .feature-card {
        grid-template-columns: 1fr;
    }

    .feature-image {
        min-height: 430px;
    }

    .feature-content {
        padding: 40px 30px;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .experience-panel {
        padding: 40px 30px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}

@media (max-width: 560px) {

    .container {
        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 40px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-visual {
        min-height: 420px;
    }

    .floating-card {
        min-width: 125px;
        padding: 12px;
    }

    .floating-card strong {
        font-size: 13px;
    }

    .floating-card small {
        font-size: 10px;
    }

    .feature-image {
        min-height: 340px;
    }

    .feature-content h3 {
        font-size: 40px;
    }

    .destination-card {
        min-height: 350px;
        padding: 28px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        padding: 20px 0;

        flex-direction: column;
        align-items: flex-start;
    }

}