/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #07070B;
    color: #F8FAFC;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================
   LOADING
========================================= */

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #07070B;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-equalizer {
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    margin-bottom: 25px;
}

.loader-equalizer span {
    width: 4px;
    height: 18px;

    border-radius: 10px;

    background: #8B5CF6;

    box-shadow:
        0 0 15px rgba(139, 92, 246, 0.65);

    animation:
        loaderBars 0.8s ease-in-out infinite;
}

.loader-equalizer span:nth-child(1) {
    animation-delay: 0s;
}

.loader-equalizer span:nth-child(2) {
    animation-delay: .1s;
}

.loader-equalizer span:nth-child(3) {
    animation-delay: .2s;
}

.loader-equalizer span:nth-child(4) {
    animation-delay: .3s;
}

.loader-equalizer span:nth-child(5) {
    animation-delay: .2s;
}

.loader-equalizer span:nth-child(6) {
    animation-delay: .1s;
}

.loader-equalizer span:nth-child(7) {
    animation-delay: 0s;
}

@keyframes loaderBars {

    0%,
    100% {
        height: 14px;
        opacity: .4;
    }

    50% {
        height: 45px;
        opacity: 1;
    }
}

.loader-title {
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 5px;

    color: #F8FAFC;
}

.loader-line {
    width: 120px;
    height: 2px;

    margin: 18px auto 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #8B5CF6,
            #22D3EE,
            transparent
        );

    animation: loaderLine 1.3s ease-in-out infinite;
}

@keyframes loaderLine {

    0%,
    100% {
        transform: scaleX(.3);
        opacity: .25;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}


/* =========================================
   BACKGROUND
========================================= */

.ambient {
    position: fixed;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    filter: blur(110px);

    pointer-events: none;

    z-index: -5;
}

.ambient-one {
    top: 10%;
    left: -200px;

    background:
        rgba(139, 92, 246, .09);
}

.ambient-two {
    top: 55%;
    right: -200px;

    background:
        rgba(34, 211, 238, .045);
}

.particles {
    position: fixed;
    inset: 0;

    pointer-events: none;

    overflow: hidden;

    z-index: -4;
}

.particle {
    position: absolute;

    width: 2px;
    height: 2px;

    border-radius: 50%;

    background: #8B5CF6;

    opacity: .3;

    animation:
        floatParticle linear infinite;
}

@keyframes floatParticle {

    from {
        transform: translateY(110vh);
    }

    to {
        transform: translateY(-10vh);
    }

}


/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 82px;

    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 1000;

    background:
        rgba(7, 7, 11, .55);

    border-bottom:
        1px solid rgba(255,255,255,.04);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}

.logo {
    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 3px;
}

.logo-mark {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 3px;
}

.logo-mark i {
    width: 3px;

    display: block;

    border-radius: 10px;

    background: #8B5CF6;

    box-shadow:
        0 0 8px rgba(139,92,246,.7);
}

.logo-mark i:nth-child(1) {
    height: 10px;
}

.logo-mark i:nth-child(2) {
    height: 20px;
}

.logo-mark i:nth-child(3) {
    height: 14px;
}

.nav {
    display: flex;
    align-items: center;

    gap: 38px;
}

.nav a {
    position: relative;

    color: #A1A1AA;

    font-size: 13px;

    transition:
        color .3s ease;
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: #8B5CF6;

    box-shadow:
        0 0 8px rgba(139,92,246,.8);

    transition:
        width .3s ease;
}

.nav a:hover {
    color: #F8FAFC;
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.08);

    background:
        rgba(255,255,255,.03);

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 4px;
}

.menu-toggle span {
    width: 16px;
    height: 1px;

    background: #F8FAFC;
}

.mobile-menu {
    position: fixed;

    top: 82px;
    left: 0;

    width: 100%;

    padding: 25px 7%;

    display: none;

    flex-direction: column;

    gap: 22px;

    background:
        rgba(7,7,11,.96);

    border-bottom:
        1px solid rgba(255,255,255,.06);

    z-index: 999;

    backdrop-filter:
        blur(20px);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #A1A1AA;

    font-size: 14px;
}


/* =========================================
   GENERAL
========================================= */

.section {
    position: relative;

    padding: 130px 8%;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: #22D3EE;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}

.section-heading {
    max-width: 620px;

    margin-bottom: 65px;
}

.section-heading h2,
.showcase-content h2,
.contact-content h2 {
    font-size:
        clamp(38px, 5vw, 68px);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 800;
}

.section-heading p {
    max-width: 500px;

    margin-top: 24px;

    color: #A1A1AA;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;

    padding-top: 150px;

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    align-items: center;

    gap: 40px;
}

.hero-content {
    position: relative;

    z-index: 2;
}

.hero h1 {
    max-width: 800px;

    font-size:
        clamp(60px, 8vw, 110px);

    line-height: .91;

    letter-spacing: -7px;

    font-weight: 800;

    opacity: 0;

    transform:
        translateY(35px);

    animation:
        heroTitle 1s
        cubic-bezier(.16,1,.3,1)
        .3s forwards;
}

.hero h1 span {
    display: block;

    color: #8B5CF6;

    text-shadow:
        0 0 30px
        rgba(139,92,246,.25);
}

.hero p {
    max-width: 510px;

    margin-top: 30px;

    color: #A1A1AA;

    font-size: 16px;

    line-height: 1.8;

    opacity: 0;

    transform:
        translateY(20px);

    animation:
        heroText .8s
        ease .7s forwards;
}

.hero-button {
    width: fit-content;

    margin-top: 38px;

    padding:
        15px 20px 15px 23px;

    display: flex;

    align-items: center;

    gap: 20px;

    border-radius: 50px;

    background: #8B5CF6;

    border:
        1px solid rgba(255,255,255,.15);

    box-shadow:
        0 10px 35px
        rgba(139,92,246,.2),

        inset 0 1px 0
        rgba(255,255,255,.18);

    font-size: 13px;

    font-weight: 700;

    opacity: 0;

    transform:
        translateY(20px);

    animation:
        heroText .8s
        ease .9s forwards;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.hero-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 15px 45px
        rgba(139,92,246,.35),

        inset 0 1px 0
        rgba(255,255,255,.18);
}

.hero-button svg {
    width: 19px;

    transition:
        transform .3s ease;
}

.hero-button:hover svg {
    transform:
        translateX(4px);
}

.hero-sound-effect {
    position: absolute;

    left: -45px;
    top: 31%;

    display: flex;

    align-items: center;

    gap: 4px;

    opacity: 0;

    animation:
        soundBarsAppear .7s
        ease .2s forwards;
}

.hero-sound-effect span {
    width: 3px;

    border-radius: 20px;

    background: #8B5CF6;

    box-shadow:
        0 0 10px
        rgba(139,92,246,.5);

    animation:
        soundBars .7s
        ease-in-out
        infinite alternate;
}

.hero-sound-effect span:nth-child(1) {
    height: 9px;
}

.hero-sound-effect span:nth-child(2) {
    height: 18px;

    animation-delay: .1s;
}

.hero-sound-effect span:nth-child(3) {
    height: 30px;

    animation-delay: .2s;
}

.hero-sound-effect span:nth-child(4) {
    height: 15px;

    animation-delay: .3s;
}

@keyframes soundBarsAppear {

    to {
        opacity: 1;
    }

}

@keyframes soundBars {

    from {
        transform: scaleY(.45);
    }

    to {
        transform: scaleY(1);
    }

}


/* =========================================
   HERO SPEAKER
========================================= */

.hero-speaker-wrapper {
    position: relative;

    min-height: 510px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.speaker-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        rgba(139,92,246,.12);

    filter:
        blur(70px);

    animation:
        glowPulse 5s
        ease-in-out
        infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(.9);
        opacity: .5;
    }

    50% {
        transform: scale(1.1);
        opacity: .9;
    }

}

.speaker {
    position: relative;

    width: 320px;
    height: 410px;

    padding: 25px;

    border-radius: 30px;

    border:
        1px solid
        rgba(255,255,255,.09);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.012)
        );

    box-shadow:
        0 35px 90px
        rgba(0,0,0,.45),

        inset 0 1px 0
        rgba(255,255,255,.06);

    backdrop-filter:
        blur(15px);

    animation:
        speakerFloat 5s
        ease-in-out
        infinite;

    overflow: hidden;
}

@keyframes speakerFloat {

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

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

}

.speaker::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    background:
        rgba(139,92,246,.08);

    filter:
        blur(30px);
}

.speaker-top {
    position: relative;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #71717A;

    font-size: 8px;

    letter-spacing: 2px;
}

.speaker-top span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #22D3EE;

    box-shadow:
        0 0 10px
        rgba(34,211,238,.7);

    animation:
        livePulse 1.5s
        infinite;
}

@keyframes livePulse {

    50% {
        opacity: .3;
        transform: scale(.7);
    }

}

.speaker-body {
    height: 250px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.speaker-ring {
    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;
}

.outer-ring {
    width: 190px;
    height: 190px;

    border:
        1px solid
        rgba(139,92,246,.15);

    box-shadow:
        0 0 35px
        rgba(139,92,246,.08);

    animation:
        ringPulse 3s
        ease-in-out
        infinite;
}

.middle-ring {
    width: 145px;
    height: 145px;

    border:
        1px solid
        rgba(139,92,246,.22);

    background:
        rgba(139,92,246,.025);
}

.inner-ring {
    width: 105px;
    height: 105px;

    border:
        2px solid
        rgba(139,92,246,.35);

    background:
        radial-gradient(
            circle,
            rgba(139,92,246,.18),
            rgba(10,10,15,.9)
        );
}

.speaker-center {
    width: 35px;
    height: 35px;

    border-radius: 50%;

    background: #8B5CF6;

    box-shadow:
        0 0 30px
        rgba(139,92,246,.55);

    animation:
        centerPulse 1.4s
        ease-in-out
        infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(.96);
    }

    50% {
        transform: scale(1.04);
    }

}

@keyframes centerPulse {

    0%,
    100% {
        transform: scale(.8);
        opacity: .7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

}

.speaker-equalizer {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 5px;

    height: 45px;
}

.speaker-equalizer i {
    width: 4px;

    border-radius: 10px;

    background: #8B5CF6;

    box-shadow:
        0 0 10px
        rgba(139,92,246,.45);

    animation:
        speakerEqualizer .7s
        ease-in-out
        infinite alternate;
}

.speaker-equalizer i:nth-child(1) {
    height: 12px;
}

.speaker-equalizer i:nth-child(2) {
    height: 23px;
    animation-delay: .1s;
}

.speaker-equalizer i:nth-child(3) {
    height: 32px;
    animation-delay: .2s;
}

.speaker-equalizer i:nth-child(4) {
    height: 39px;
    animation-delay: .3s;
}

.speaker-equalizer i:nth-child(5) {
    height: 26px;
    animation-delay: .2s;
}

.speaker-equalizer i:nth-child(6) {
    height: 18px;
    animation-delay: .1s;
}

.speaker-equalizer i:nth-child(7) {
    height: 11px;
}

@keyframes speakerEqualizer {

    from {
        transform: scaleY(.45);
    }

    to {
        transform: scaleY(1);
    }

}


/* =========================================
   SCROLL
========================================= */

.scroll-indicator {
    position: absolute;

    bottom: 35px;
    left: 8%;

    display: flex;

    align-items: center;

    gap: 12px;

    color: #52525B;

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.scroll-indicator span {
    width: 35px;
    height: 1px;

    background: #8B5CF6;

    box-shadow:
        0 0 10px
        rgba(139,92,246,.6);
}


/* =========================================
   FEATURE
========================================= */

.experience {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(139,92,246,.025),
            transparent
        );
}

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;
}

.feature-card {
    min-height: 260px;

    padding: 35px;

    border-radius: 22px;

    border:
        1px solid
        rgba(255,255,255,.07);

    background:
        rgba(255,255,255,.025);

    transition:
        transform .4s ease,
        border-color .4s ease,
        background .4s ease;
}

.feature-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(139,92,246,.35);

    background:
        rgba(139,92,246,.045);
}

.feature-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 55px;

    border-radius: 15px;

    background:
        rgba(139,92,246,.08);

    border:
        1px solid
        rgba(139,92,246,.15);

    color: #8B5CF6;

    font-size: 21px;

    box-shadow:
        0 0 25px
        rgba(139,92,246,.06);
}

.feature-card h3 {
    margin-bottom: 12px;

    font-size: 19px;
}

.feature-card p {
    color: #71717A;

    line-height: 1.7;

    font-size: 13px;
}


/* =========================================
   SHOWCASE
========================================= */

.experience-showcase {
    min-height: 650px;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    align-items: center;

    gap: 50px;
}

.showcase-content {
    max-width: 600px;
}

.showcase-content h2 span {
    color: #8B5CF6;
}

.showcase-content p {
    max-width: 480px;

    margin-top: 28px;

    color: #A1A1AA;

    line-height: 1.8;
}

.showcase-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;
}

.showcase-tags span {
    padding: 9px 14px;

    border-radius: 50px;

    border:
        1px solid
        rgba(255,255,255,.07);

    background:
        rgba(255,255,255,.025);

    color: #A1A1AA;

    font-size: 11px;
}

.showcase-visual {
    min-height: 520px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;
}

.speaker-glow.large {
    width: 380px;
    height: 380px;
}

.big-speaker {
    position: relative;

    width: 270px;
    height: 400px;

    padding: 25px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.012)
        );

    border:
        1px solid
        rgba(255,255,255,.08);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.45),

        inset 0 1px 0
        rgba(255,255,255,.06);

    animation:
        speakerFloat 5s
        ease-in-out
        infinite;
}

.big-speaker-top {
    display: flex;

    gap: 6px;
}

.big-speaker-top span {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #52525B;
}

.big-speaker-circle {
    height: 270px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.big-speaker-ring {
    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;
}

.ring-one {
    width: 190px;
    height: 190px;

    border:
        1px solid
        rgba(139,92,246,.2);
}

.ring-two {
    width: 145px;
    height: 145px;

    border:
        1px solid
        rgba(139,92,246,.3);

    background:
        rgba(139,92,246,.03);
}

.ring-three {
    width: 105px;
    height: 105px;

    border:
        2px solid
        rgba(139,92,246,.4);

    background:
        radial-gradient(
            circle,
            rgba(139,92,246,.16),
            rgba(7,7,11,.9)
        );
}

.big-speaker-center {
    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: #8B5CF6;

    box-shadow:
        0 0 30px
        rgba(139,92,246,.6);

    animation:
        centerPulse 1.4s
        ease-in-out
        infinite;
}

.big-equalizer {
    height: 45px;

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 5px;
}

.big-equalizer i {
    width: 4px;

    border-radius: 10px;

    background: #8B5CF6;

    box-shadow:
        0 0 9px
        rgba(139,92,246,.5);

    animation:
        speakerEqualizer .7s
        ease-in-out
        infinite alternate;
}

.big-equalizer i:nth-child(1) {
    height: 10px;
}

.big-equalizer i:nth-child(2) {
    height: 19px;
    animation-delay: .1s;
}

.big-equalizer i:nth-child(3) {
    height: 28px;
    animation-delay: .2s;
}

.big-equalizer i:nth-child(4) {
    height: 38px;
    animation-delay: .3s;
}

.big-equalizer i:nth-child(5) {
    height: 30px;
    animation-delay: .2s;
}

.big-equalizer i:nth-child(6) {
    height: 23px;
    animation-delay: .15s;
}

.big-equalizer i:nth-child(7) {
    height: 34px;
    animation-delay: .25s;
}

.big-equalizer i:nth-child(8) {
    height: 19px;
    animation-delay: .1s;
}

.big-equalizer i:nth-child(9) {
    height: 11px;
}

.floating-note {
    position: absolute;

    color: #8B5CF6;

    font-size: 25px;

    text-shadow:
        0 0 20px
        rgba(139,92,246,.6);

    animation:
        noteFloat 4s
        ease-in-out
        infinite;
}

.note-one {
    top: 20%;
    left: 18%;
}

.note-two {
    top: 35%;
    right: 15%;

    color: #22D3EE;

    animation-delay: 1s;
}

.note-three {
    bottom: 17%;
    left: 25%;

    animation-delay: 2s;
}

@keyframes noteFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-5deg);

        opacity: .4;
    }

    50% {
        transform:
            translateY(-18px)
            rotate(8deg);

        opacity: 1;
    }

}


/* =========================================
   EVENTS
========================================= */

.events {
    padding-top: 100px;
}

.event-grid {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 15px;
}

.event-card {
    min-height: 130px;

    padding: 30px;

    display: flex;

    align-items: center;

    gap: 25px;

    border-radius: 20px;

    border:
        1px solid
        rgba(255,255,255,.06);

    background:
        rgba(255,255,255,.02);

    transition:
        .35s ease;
}

.event-card:hover {
    transform:
        translateX(7px);

    border-color:
        rgba(139,92,246,.3);

    background:
        rgba(139,92,246,.035);
}

.event-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    color: #8B5CF6;

    border:
        1px solid
        rgba(139,92,246,.15);

    background:
        rgba(139,92,246,.06);
}

.event-card h3 {
    margin-bottom: 7px;

    font-size: 17px;
}

.event-card p {
    color: #71717A;

    font-size: 12px;
}


/* =========================================
   CONTACT
========================================= */

.contact {
    min-height: 750px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;
}

.contact-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background:
        rgba(139,92,246,.075);

    filter:
        blur(100px);

    pointer-events: none;
}

.contact-content {
    position: relative;

    z-index: 2;

    max-width: 900px;
}

.contact-content h2 span {
    display: block;

    color: #8B5CF6;
}

.contact-content p {
    max-width: 520px;

    margin: 25px auto 45px;

    color: #A1A1AA;

    line-height: 1.8;

    font-size: 14px;
}

.contact-buttons {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 15px;

    width: 100%;
}

.contact-button {
    position: relative;

    min-height: 105px;

    padding: 17px;

    display: flex;

    align-items: center;

    text-align: left;

    gap: 13px;

    border-radius: 20px;

    border:
        1px solid
        rgba(255,255,255,.09);

    background:
        rgba(255,255,255,.035);

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.contact-button::before {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    top: -50px;
    right: -40px;

    border-radius: 50%;

    background:
        rgba(139,92,246,.12);

    filter:
        blur(25px);

    transition:
        .4s ease;
}

.contact-button:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(139,92,246,.45);

    box-shadow:
        0 18px 45px
        rgba(139,92,246,.14);
}

.contact-button:hover::before {
    transform:
        scale(2);
}

.contact-button.whatsapp:hover {
    border-color:
        rgba(74,222,128,.45);

    box-shadow:
        0 18px 45px
        rgba(74,222,128,.12);
}

.contact-button.instagram:hover {
    border-color:
        rgba(236,72,153,.4);

    box-shadow:
        0 18px 45px
        rgba(236,72,153,.1);
}

.contact-button.tiktok:hover {
    border-color:
        rgba(34,211,238,.4);

    box-shadow:
        0 18px 45px
        rgba(34,211,238,.1);
}

.contact-icon {
    position: relative;

    z-index: 2;

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        rgba(139,92,246,.09);

    border:
        1px solid
        rgba(139,92,246,.18);

    color: #8B5CF6;

    box-shadow:
        0 0 20px
        rgba(139,92,246,.07);

    transition:
        .3s ease;
}

.contact-button:hover .contact-icon {
    transform:
        scale(1.07);

    box-shadow:
        0 0 25px
        rgba(139,92,246,.18);
}

.contact-icon svg {
    width: 22px;
    height: 22px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.6;
}

.contact-icon svg path {
    fill: none;
}

.contact-icon svg .fill-dot {
    fill: currentColor;
    stroke: none;
}

.contact-text {
    position: relative;

    z-index: 2;

    min-width: 0;
}

.contact-text small {
    display: block;

    margin-bottom: 5px;

    color: #71717A;

    font-size: 7px;

    letter-spacing: 1.5px;
}

.contact-text strong {
    display: block;

    font-size: 13px;
}

.contact-arrow {
    position: relative;

    z-index: 2;

    margin-left: auto;

    color: #52525B;

    font-size: 17px;

    transition:
        .3s ease;
}

.contact-button:hover .contact-arrow {
    color: #8B5CF6;

    transform:
        translate(3px,-3px);
}

.contact-note {
    margin-top: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    color: #52525B;

    font-size: 9px;
}

.contact-note span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #22D3EE;

    box-shadow:
        0 0 8px
        rgba(34,211,238,.5);
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 35px 8%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-top:
        1px solid
        rgba(255,255,255,.05);

    color: #52525B;

    font-size: 10px;
}

.footer-logo {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #A1A1AA;

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;
}

.footer .logo-mark {
    transform:
        scale(.75);
}

.footer p {
    position: absolute;

    left: 50%;

    transform:
        translateX(-50%);
}


/* =========================================
   REVEAL
========================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s
        cubic-bezier(.16,1,.3,1);
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================
   HERO ANIMATION
========================================= */

@keyframes heroTitle {

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}

@keyframes heroText {

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .hero {
        grid-template-columns: 1fr;

        padding-top: 140px;

        text-align: center;
    }

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

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

    .hero-speaker-wrapper {
        min-height: 470px;
    }

    .hero-sound-effect {
        left: 8%;
    }

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

    .experience-showcase {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .showcase-content {
        margin: auto;
    }

    .showcase-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .showcase-tags {
        justify-content: center;
    }

    .contact-buttons {
        grid-template-columns: 1fr;
        max-width: 500px;

        margin-left: auto;
        margin-right: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .header {
        height: 72px;

        padding:
            0 6%;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        top: 72px;
    }

    .section {
        padding:
            100px 6%;
    }

    .hero {
        padding-top: 125px;

        min-height: auto;
    }

    .hero h1 {
        font-size:
            clamp(54px,17vw,80px);

        letter-spacing:
            -5px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-sound-effect {
        left: 0;
        top: 17%;

        transform:
            scale(.7);

        transform-origin:
            left center;
    }

    .hero-speaker-wrapper {
        min-height: 430px;
    }

    .speaker {
        width: 285px;
        height: 390px;
    }

    .speaker-body {
        height: 235px;
    }

    .speaker-ring.outer-ring {
        width: 170px;
        height: 170px;
    }

    .speaker-ring.middle-ring {
        width: 130px;
        height: 130px;
    }

    .speaker-ring.inner-ring {
        width: 95px;
        height: 95px;
    }

    .scroll-indicator {
        display: none;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2,
    .showcase-content h2,
    .contact-content h2 {
        font-size: 42px;

        letter-spacing:
            -2px;
    }

    .feature-card {
        min-height: auto;

        padding: 27px;
    }

    .feature-icon {
        margin-bottom: 35px;
    }

    .showcase-visual {
        min-height: 430px;
    }

    .big-speaker {
        width: 240px;
        height: 365px;
    }

    .big-speaker-circle {
        height: 245px;
    }

    .speaker-glow.large {
        width: 320px;
        height: 320px;
    }

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

    .event-card {
        min-height: 110px;
    }

    .contact {
        min-height: 700px;
    }

    .contact-buttons {
        grid-template-columns: 1fr;

        width: 100%;
    }

    .contact-button {
        width: 100%;

        min-height: 92px;
    }

    .footer {
        flex-direction: column;

        gap: 18px;

        text-align: center;
    }

    .footer p {
        position: static;

        transform: none;
    }

    .footer .copyright {
        order: 3;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            .01ms !important;
    }

}