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

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

html {
    scroll-behavior: smooth;
    background: #050509;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% -10%, rgba(148, 0, 255, .16), transparent 35%),
        radial-gradient(circle at 100% 30%, rgba(0, 220, 255, .07), transparent 30%),
        #050509;
    color: #fff;
    font-family: "Inter", sans-serif;
}

body.loading {
    overflow: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: #d500ff;
    color: white;
}


/* =========================================================
   LOADER
========================================================= */

.loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 99999;

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

    overflow: hidden;

    background: #050509;

    transition:
        opacity .8s ease,
        visibility .8s ease;
}

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

.loader-bg {
    position: absolute;
    inset: -20%;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(205, 0, 255, .16),
            transparent 22%
        ),
        radial-gradient(
            circle at 30% 70%,
            rgba(0, 190, 255, .10),
            transparent 28%
        );

    filter: blur(30px);
    animation: loaderBackground 5s ease-in-out infinite alternate;
}

.loader-content {
    position: relative;
    z-index: 2;

    width: min(88vw, 330px);

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

    text-align: center;
}


/* LOADER SPEAKER */

.loader-speaker {
    position: relative;

    width: 112px;
    height: 142px;

    perspective: 700px;

    animation: loaderFloat 2.5s ease-in-out infinite;
}

.loader-speaker .speaker-body {
    position: absolute;

    left: 14px;
    top: 18px;

    width: 84px;
    height: 108px;

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            #27272d,
            #08080b 65%
        );

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

    box-shadow:
        inset 0 0 25px rgba(255,255,255,.03),
        0 18px 45px rgba(0,0,0,.8),
        0 0 30px rgba(170,0,255,.18);

    transform: perspective(500px) rotateY(-7deg);
}

.loader-speaker .speaker-tweeter {
    position: absolute;

    top: 14px;
    left: 50%;

    width: 20px;
    height: 20px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #08080a;

    border: 2px solid #444;

    box-shadow:
        0 0 0 3px #16161b,
        0 0 12px rgba(0,220,255,.3);
}

.loader-speaker .speaker-ring {
    position: absolute;

    left: 50%;
    top: 47px;

    width: 53px;
    height: 53px;

    transform: translateX(-50%);

    border-radius: 50%;

    display: grid;
    place-items: center;

    border: 3px solid #b900ff;

    box-shadow:
        0 0 10px #b900ff,
        0 0 24px rgba(0,215,255,.35);

    animation: speakerPulse 1.3s ease-in-out infinite alternate;
}

.loader-speaker .speaker-cone {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 45% 40%,
            #303039 0 12%,
            #111116 14% 42%,
            #08080b 45% 100%
        );

    border: 2px solid #22222a;
}

.loader-speaker .speaker-light {
    position: absolute;

    bottom: 11px;
    left: 50%;

    width: 40px;
    height: 3px;

    transform: translateX(-50%);

    border-radius: 10px;

    background: #00eaff;

    box-shadow: 0 0 10px #00eaff;
}

.loader-brand {
    margin-top: 16px;

    display: flex;
    flex-direction: column;

    line-height: .9;
}

.loader-brand span {
    font-family: "Outfit", sans-serif;

    font-size: 27px;
    font-weight: 900;
    letter-spacing: .04em;

    background: linear-gradient(
        90deg,
        #fff,
        #e8e8e8,
        #fff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.loader-brand strong {
    margin-top: 4px;

    font-family: "Outfit", sans-serif;

    font-size: 22px;
    font-weight: 500;
    font-style: italic;

    color: #9beaff;

    text-shadow:
        0 0 10px rgba(0,225,255,.5);
}

.loader-bar {
    position: relative;

    width: min(70vw, 220px);
    height: 2px;

    margin-top: 27px;

    overflow: hidden;

    background: rgba(255,255,255,.1);
    border-radius: 10px;
}

.loader-bar span {
    position: absolute;

    left: 0;
    top: 0;

    width: 40%;
    height: 100%;

    background: linear-gradient(
        90deg,
        #9c00ff,
        #00eaff,
        #ff00d4
    );

    box-shadow:
        0 0 12px #00eaff;

    animation: loadingBar 1.6s ease-in-out infinite;
}

.loader-content p {
    margin-top: 13px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .17em;
    text-transform: uppercase;

    color: rgba(255,255,255,.38);
}


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

.ambient {
    position: fixed;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(100px);

    opacity: .13;

    z-index: -2;
}

.ambient-one {
    top: 10%;
    left: -180px;
    background: #a900ff;
}

.ambient-two {
    top: 50%;
    right: -200px;
    background: #00eaff;
}

.ambient-three {
    bottom: -180px;
    left: 30%;
    background: #ff00c8;
}

.noise {
    position: fixed;
    inset: 0;

    z-index: -1;

    pointer-events: none;

    opacity: .025;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}


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

.site-header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 20;

    padding: 28px 5vw;
}

.header-inner {
    width: min(1180px, 100%);
    margin: auto;

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

.brand {
    display: flex;
    flex-direction: column;

    line-height: .85;
}

.brand-main {
    font-family: "Outfit", sans-serif;

    font-size: 20px;
    font-weight: 900;

    letter-spacing: .06em;
}

.brand-sub {
    margin-top: 3px;

    font-family: "Outfit", sans-serif;

    font-size: 15px;
    font-style: italic;

    color: #a9ecff;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 8px 13px;

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

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

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .11em;
    text-transform: uppercase;

    color: rgba(255,255,255,.55);
}

.status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #00eaff;

    box-shadow: 0 0 9px #00eaff;

    animation: statusBlink 1.5s ease-in-out infinite;
}


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

.section {
    position: relative;

    width: 100%;
    max-width: 1280px;

    margin: auto;

    padding-left: 5vw;
    padding-right: 5vw;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    color: #9beaff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .2em;
    text-transform: uppercase;
}

.eyebrow-line {
    display: block;

    width: 25px;
    height: 1px;

    background: linear-gradient(
        90deg,
        #00eaff,
        #a800ff
    );

    box-shadow:
        0 0 8px rgba(0,234,255,.7);
}

.section-heading {
    max-width: 720px;
}

.section-heading h2 {
    font-family: "Outfit", sans-serif;

    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
    font-weight: 800;

    letter-spacing: -.045em;
}

.section-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #fff,
        #bc7cff 55%,
        #00eaff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

    margin-top: 24px;

    color: rgba(255,255,255,.48);

    font-size: 15px;
    line-height: 1.75;
}


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

.hero {
    min-height: 100svh;

    padding-top: 150px;
    padding-bottom: 100px;

    display: flex;
    align-items: center;
}

.hero-grid {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 30px;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.hero-copy h1 {
    max-width: 650px;

    font-family: "Outfit", sans-serif;

    font-size: clamp(55px, 7vw, 94px);
    line-height: .9;
    font-weight: 900;

    letter-spacing: -.065em;
}

.hero-copy h1 span {
    display: block;

    margin-top: 8px;

    background: linear-gradient(
        90deg,
        #fff 0%,
        #d76aff 42%,
        #00eaff 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    text-shadow:
        0 0 30px rgba(180,0,255,.08);
}

.hero-copy > p {
    max-width: 520px;

    margin-top: 30px;

    color: rgba(255,255,255,.52);

    font-size: 16px;
    line-height: 1.75;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: 28px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 13px;

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

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

    color: rgba(255,255,255,.55);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .08em;
}

.highlight i {
    color: #d66aff;

    font-size: 11px;
}


/* =========================================================
   3D SPEAKER
========================================================= */

.hero-visual {
    position: relative;

    min-height: 580px;

    display: grid;
    place-items: center;
}

.visual-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(173,0,255,.24),
            rgba(0,220,255,.08) 45%,
            transparent 70%
        );

    filter: blur(20px);

    animation: visualGlow 4s ease-in-out infinite alternate;
}

.speaker-scene {
    position: relative;

    width: 300px;
    height: 400px;

    perspective: 1000px;

    transform-style: preserve-3d;

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

.speaker-3d {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 245px;
    height: 355px;

    transform:
        translate(-50%, -50%)
        rotateY(-13deg)
        rotateX(2deg);

    transform-style: preserve-3d;
}

.speaker-face {
    position: absolute;

    inset: 0;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #25252d,
            #0b0b0f 48%,
            #050508
        );

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

    box-shadow:
        inset 12px 0 20px rgba(255,255,255,.025),
        inset -12px 0 20px rgba(0,0,0,.7),
        0 30px 50px rgba(0,0,0,.65),
        0 0 45px rgba(143,0,255,.12);

    overflow: hidden;
}

.speaker-side {
    position: absolute;

    top: 7px;
    right: -34px;

    width: 35px;
    height: calc(100% - 14px);

    border-radius: 0 20px 20px 0;

    background:
        linear-gradient(
            90deg,
            #09090d,
            #18181e
        );

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

    transform:
        rotateY(90deg)
        translateZ(-17px);

    transform-origin: left;
}

.speaker-top {
    position: absolute;

    top: -17px;
    left: 12px;

    width: calc(100% - 24px);
    height: 35px;

    border-radius: 15px 15px 5px 5px;

    background:
        linear-gradient(
            145deg,
            #303039,
            #111116
        );

    transform:
        rotateX(70deg)
        translateZ(15px);

    transform-origin: bottom;
}

.speaker-top-panel {
    position: absolute;

    top: 17px;
    left: 20px;
    right: 20px;

    height: 34px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;

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

.speaker-led {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #00eaff;

    box-shadow:
        0 0 10px #00eaff;

    animation: ledPulse 1.8s ease-in-out infinite alternate;
}

.speaker-led:nth-child(2) {
    background: #c800ff;
    box-shadow: 0 0 10px #c800ff;
    animation-delay: .4s;
}

.speaker-small {
    position: absolute;

    top: 70px;
    left: 50%;

    width: 62px;
    height: 62px;

    transform: translateX(-50%);

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #09090d;

    border: 3px solid #292932;

    box-shadow:
        inset 0 0 15px #000,
        0 0 15px rgba(255,255,255,.04);
}

.small-inner {
    width: 25px;
    height: 25px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #33333b 0 15%,
            #101014 16% 55%,
            #050507 56%
        );

    border: 2px solid #19191f;
}

.speaker-main {
    position: absolute;

    left: 50%;
    top: 145px;

    width: 145px;
    height: 145px;

    transform: translateX(-50%);

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #09090d;

    box-shadow:
        inset 0 0 25px #000,
        0 10px 25px rgba(0,0,0,.5);
}

.speaker-ring-large {
    width: 118px;
    height: 118px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    border: 6px solid #b700ff;

    box-shadow:
        0 0 7px #c300ff,
        0 0 18px #a700ff,
        0 0 40px rgba(0,220,255,.24);

    animation:
        wooferPulse 1.1s ease-in-out infinite alternate;
}

.speaker-inner {
    width: 93px;
    height: 93px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 40% 35%,
            #303039 0%,
            #111116 36%,
            #08080b 65%,
            #030305 100%
        );

    border: 3px solid #25252d;

    box-shadow:
        inset 0 8px 15px rgba(255,255,255,.03),
        inset 0 -10px 15px #000;
}

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #33333b,
            #0b0b0f 65%
        );

    border: 2px solid #1d1d23;

    box-shadow:
        0 0 10px rgba(0,0,0,.8);
}

.speaker-controls {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 9px;
}

.speaker-controls span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #1d1d23;

    border: 1px solid #383840;
}

.speaker-controls span:nth-child(2) {
    background: #00dfff;
    box-shadow: 0 0 7px #00dfff;
}

.speaker-controls span:nth-child(4) {
    background: #c400ff;
    box-shadow: 0 0 7px #c400ff;
}

.speaker-shadow {
    position: absolute;

    left: 50%;
    bottom: 4px;

    width: 250px;
    height: 35px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(0,0,0,.7);

    filter: blur(15px);
}

.sound-wave {
    position: absolute;

    border: 1px solid rgba(194,0,255,.28);

    border-left-color: transparent;
    border-bottom-color: transparent;

    border-radius: 50%;

    transform: rotate(45deg);

    animation: wavePulse 2.5s ease-out infinite;
}

.wave-one {
    width: 260px;
    height: 260px;
}

.wave-two {
    width: 320px;
    height: 320px;

    animation-delay: .7s;
}

.wave-three {
    width: 390px;
    height: 390px;

    animation-delay: 1.4s;
}

.floating-note {
    position: absolute;

    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

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

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

    color: #a900ff;

    box-shadow:
        0 0 20px rgba(169,0,255,.15);

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

.note-one {
    top: 24%;
    right: 2%;
}

.note-two {
    bottom: 21%;
    left: 0;

    color: #00eaff;

    box-shadow:
        0 0 20px rgba(0,234,255,.15);

    animation-delay: 1s;
}

.scroll-indicator {
    position: absolute;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;

    color: rgba(255,255,255,.25);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .2em;
    text-transform: uppercase;
}

.scroll-line {
    position: relative;

    width: 1px;
    height: 38px;

    overflow: hidden;

    background: rgba(255,255,255,.1);
}

.scroll-line span {
    position: absolute;

    top: -100%;
    left: 0;

    width: 100%;
    height: 50%;

    background: #00eaff;

    box-shadow: 0 0 8px #00eaff;

    animation: scrollLine 1.8s ease-in-out infinite;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience {
    padding-top: 150px;
    padding-bottom: 150px;
}

.experience-grid {
    margin-top: 70px;

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

    gap: 16px;
}

.experience-card {
    position: relative;

    min-height: 310px;

    padding: 30px;

    overflow: hidden;

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

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

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

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

    border-color: rgba(197,0,255,.35);

    background:
        linear-gradient(
            145deg,
            rgba(174,0,255,.08),
            rgba(255,255,255,.015)
        );
}

.card-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: rgba(174,0,255,.08);

    border: 1px solid rgba(174,0,255,.18);

    color: #d26aff;

    font-size: 19px;
}

.card-number {
    position: absolute;

    top: 25px;
    right: 27px;

    font-family: "Outfit", sans-serif;

    font-size: 11px;
    font-weight: 800;

    color: rgba(255,255,255,.16);
}

.experience-card h3 {
    margin-top: 45px;

    font-family: "Outfit", sans-serif;

    font-size: 25px;
    font-weight: 800;
}

.experience-card p {
    margin-top: 13px;

    color: rgba(255,255,255,.43);

    font-size: 13px;
    line-height: 1.75;
}

.card-line {
    position: absolute;

    left: 30px;
    bottom: 25px;

    width: 40px;
    height: 1px;

    background: linear-gradient(
        90deg,
        #a800ff,
        #00eaff
    );

    box-shadow: 0 0 8px rgba(168,0,255,.5);
}


/* =========================================================
   MOMENT
========================================================= */

.moment {
    max-width: none;

    padding-top: 120px;
    padding-bottom: 120px;

    overflow: hidden;

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

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(157,0,255,.09),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 50%,
            rgba(0,220,255,.07),
            transparent 30%
        );
}

.moment-content {
    width: min(1080px, 100%);
    margin: auto;

    display: flex;
    align-items: center;
    gap: 40px;
}

.moment-icon {
    flex: 0 0 90px;

    width: 90px;
    height: 90px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    border: 1px solid rgba(0,234,255,.25);

    color: #00eaff;

    font-size: 29px;

    background:
        radial-gradient(
            circle,
            rgba(0,234,255,.1),
            transparent 70%
        );

    box-shadow:
        0 0 30px rgba(0,234,255,.09);

    animation: discRotate 8s linear infinite;
}

.moment h2 {
    font-family: "Outfit", sans-serif;

    font-size: clamp(42px, 5vw, 68px);
    line-height: .95;
    letter-spacing: -.05em;
}

.moment h2 span {
    color: #c66aff;
}

.moment p {
    max-width: 570px;

    margin-top: 20px;

    color: rgba(255,255,255,.43);

    font-size: 14px;
    line-height: 1.7;
}

.equalizer {
    width: min(1080px, 100%);

    margin: 70px auto 0;

    height: 80px;

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

    gap: 5px;

    opacity: .35;
}

.equalizer span {
    width: 4px;

    border-radius: 10px;

    background: linear-gradient(
        to top,
        #a800ff,
        #00eaff
    );

    animation: equalizer 1.1s ease-in-out infinite alternate;
}

.equalizer span:nth-child(1) { height: 16px; }
.equalizer span:nth-child(2) { height: 34px; animation-delay: .1s; }
.equalizer span:nth-child(3) { height: 24px; animation-delay: .2s; }
.equalizer span:nth-child(4) { height: 53px; animation-delay: .3s; }
.equalizer span:nth-child(5) { height: 32px; animation-delay: .4s; }
.equalizer span:nth-child(6) { height: 70px; animation-delay: .5s; }
.equalizer span:nth-child(7) { height: 45px; animation-delay: .6s; }
.equalizer span:nth-child(8) { height: 61px; animation-delay: .7s; }
.equalizer span:nth-child(9) { height: 34px; animation-delay: .8s; }
.equalizer span:nth-child(10) { height: 72px; animation-delay: .9s; }
.equalizer span:nth-child(11) { height: 46px; animation-delay: .3s; }
.equalizer span:nth-child(12) { height: 26px; animation-delay: .4s; }
.equalizer span:nth-child(13) { height: 58px; animation-delay: .5s; }
.equalizer span:nth-child(14) { height: 31px; animation-delay: .6s; }
.equalizer span:nth-child(15) { height: 47px; animation-delay: .7s; }
.equalizer span:nth-child(16) { height: 18px; animation-delay: .8s; }


/* =========================================================
   HOW
========================================================= */

.how {
    padding-top: 150px;
    padding-bottom: 150px;
}

.steps {
    margin-top: 70px;

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

    gap: 1px;

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

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

.step {
    min-height: 270px;

    padding: 30px;

    background: #07070b;
}

.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-number {
    font-family: "Outfit", sans-serif;

    font-size: 13px;
    font-weight: 800;

    color: #c56aff;
}

.step-top i {
    color: rgba(255,255,255,.22);
}

.step h3 {
    margin-top: 65px;

    font-family: "Outfit", sans-serif;

    font-size: 24px;
    font-weight: 800;
}

.step p {
    max-width: 300px;

    margin-top: 12px;

    color: rgba(255,255,255,.42);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   STATEMENT
========================================================= */

.statement {
    max-width: none;

    min-height: 550px;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(164,0,255,.13),
            transparent 38%
        );
}

.statement-bg {
    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 80px,
            rgba(255,255,255,.015) 81px,
            transparent 82px
        );

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black,
            transparent
        );
}

.statement-content {
    position: relative;

    text-align: center;
}

.statement-small {
    font-size: 9px;
    font-weight: 800;

    letter-spacing: .28em;

    color: rgba(255,255,255,.3);
}

.statement h2 {
    margin-top: 22px;

    font-family: "Outfit", sans-serif;

    font-size: clamp(60px, 10vw, 145px);
    line-height: .8;
    letter-spacing: -.07em;
    font-weight: 900;
}

.statement h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #fff,
        #c300ff,
        #00eaff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.statement-decoration {
    margin-top: 35px;

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

    gap: 15px;
}

.statement-decoration span {
    width: 70px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #b800ff
    );
}

.statement-decoration span:last-child {
    background: linear-gradient(
        90deg,
        #00eaff,
        transparent
    );
}

.statement-decoration i {
    color: #fff;

    font-size: 12px;

    text-shadow:
        0 0 12px #b800ff;
}


/* =========================================================
   SOCIAL
========================================================= */

.social {
    padding-top: 150px;
    padding-bottom: 150px;
}

.social-grid {
    max-width: 850px;

    margin: 65px auto 0;

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

    gap: 14px;
}

.social-card {
    min-height: 110px;

    display: flex;
    align-items: center;
    gap: 17px;

    padding: 20px 22px;

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

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.01)
        );

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

.social-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,.18);
}

.social-card-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    font-size: 21px;
}

.instagram .social-card-icon {
    color: #ff6dd6;

    background:
        linear-gradient(
            145deg,
            rgba(255,0,145,.13),
            rgba(140,0,255,.12)
        );

    border: 1px solid rgba(255,0,145,.17);
}

.tiktok .social-card-icon {
    color: #00eaff;

    background:
        rgba(0,220,255,.08);

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

.social-card-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.social-card-text span {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;

    color: rgba(255,255,255,.3);
}

.social-card-text strong {
    font-size: 14px;
    font-weight: 700;

    color: rgba(255,255,255,.8);
}

.social-arrow {
    margin-left: auto;

    color: rgba(255,255,255,.22);

    font-size: 12px;

    transition:
        transform .3s ease,
        color .3s ease;
}

.social-card:hover .social-arrow {
    transform: translate(3px,-3px);
    color: #fff;
}


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

.contact {
    max-width: none;

    min-height: 850px;

    display: grid;
    place-items: center;

    overflow: hidden;

    padding-top: 140px;
    padding-bottom: 140px;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(163,0,255,.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(0,220,255,.06),
            transparent 35%
        );
}

.contact-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(186,0,255,.11),
            transparent 65%
        );

    filter: blur(35px);

    animation: contactGlow 5s ease-in-out infinite alternate;
}

.contact-content {
    position: relative;

    width: min(650px, 100%);

    text-align: center;
}

.contact .eyebrow {
    justify-content: center;
}

.contact h2 {
    font-family: "Outfit", sans-serif;

    font-size: clamp(47px, 6vw, 78px);
    line-height: .91;

    font-weight: 900;

    letter-spacing: -.06em;
}

.contact h2 span {
    display: block;

    margin-top: 8px;

    background: linear-gradient(
        90deg,
        #fff,
        #c766ff,
        #00eaff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-content > p {
    max-width: 480px;

    margin: 25px auto 0;

    color: rgba(255,255,255,.43);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   MICROFONE ANTIGO
   Mantido no CSS apenas para não quebrar nada.
   O elemento foi removido do HTML.
========================================================= */

.contact-microphone {
    position: relative;

    width: 80px;
    height: 125px;

    margin: 0 auto 30px;

    animation: micFloat 3.5s ease-in-out infinite;
}

.mic-head {
    position: absolute;

    left: 50%;
    top: 0;

    width: 43px;
    height: 62px;

    transform: translateX(-50%);

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;

    border-radius: 50% 50% 45% 45%;

    background:
        linear-gradient(
            145deg,
            #303039,
            #09090d
        );

    border: 2px solid #4b4b56;

    box-shadow:
        0 0 25px rgba(181,0,255,.15);
}

.mic-head span {
    width: 2px;
    height: 35px;

    border-radius: 4px;

    background: rgba(255,255,255,.12);
}

.mic-body {
    position: absolute;

    left: 50%;
    top: 55px;

    width: 12px;
    height: 57px;

    transform: translateX(-50%);

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #111116,
            #454550,
            #0b0b0f
        );
}

.mic-body::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -12px;

    width: 45px;
    height: 2px;

    transform: translateX(-50%);

    background: #33333b;

    border-radius: 10px;
}

.whatsapp-list {
    width: min(520px, 100%);

    margin: 42px auto 0;

    display: flex;
    flex-direction: column;

    gap: 11px;
}

.whatsapp-card {
    display: flex;
    align-items: center;

    min-height: 82px;

    padding: 13px 17px;

    border-radius: 16px;

    border: 1px solid rgba(0,255,135,.12);

    background:
        linear-gradient(
            145deg,
            rgba(0,255,135,.07),
            rgba(255,255,255,.015)
        );

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

.whatsapp-card:hover {
    transform: translateY(-4px);

    border-color: rgba(0,255,135,.35);

    background:
        linear-gradient(
            145deg,
            rgba(0,255,135,.11),
            rgba(255,255,255,.02)
        );
}

.whatsapp-icon {
    flex: 0 0 51px;

    width: 51px;
    height: 51px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    color: #00ef7f;

    background: rgba(0,255,135,.08);

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

    font-size: 22px;
}

.whatsapp-info {
    margin-left: 14px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 4px;
}

.whatsapp-info span {
    font-size: 8px;
    font-weight: 800;

    letter-spacing: .17em;
    text-transform: uppercase;

    color: rgba(255,255,255,.3);
}

.whatsapp-info strong {
    font-size: 15px;
    font-weight: 700;

    color: rgba(255,255,255,.85);
}

.whatsapp-arrow {
    margin-left: auto;

    color: rgba(255,255,255,.3);

    font-size: 12px;

    transition:
        transform .3s ease,
        color .3s ease;
}

.whatsapp-card:hover .whatsapp-arrow {
    transform: translateX(4px);
    color: #00ef7f;
}


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

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

    padding: 45px 5vw;
}

.footer-inner {
    width: min(1180px, 100%);
    margin: auto;

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

    gap: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;

    line-height: .9;
}

.footer-brand span {
    font-family: "Outfit", sans-serif;

    font-size: 16px;
    font-weight: 900;
}

.footer-brand strong {
    font-family: "Outfit", sans-serif;

    font-size: 13px;
    font-style: italic;

    color: #8feaff;
}

.footer-inner p {
    color: rgba(255,255,255,.25);

    font-size: 10px;
}

.footer-copy {
    color: rgba(255,255,255,.2);

    font-size: 9px;
}


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

.reveal {
    opacity: 0;
    transform: translateY(35px);

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   ANIMATIONS
========================================================= */

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

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

@keyframes speakerPulse {
    from {
        box-shadow:
            0 0 8px #b700ff,
            0 0 15px rgba(0,220,255,.2);
    }

    to {
        box-shadow:
            0 0 18px #b700ff,
            0 0 30px rgba(0,220,255,.35);
    }
}

@keyframes loadingBar {
    0% {
        left: -40%;
    }

    100% {
        left: 100%;
    }
}

@keyframes loaderBackground {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

@keyframes statusBlink {
    0%,100% {
        opacity: .35;
    }

    50% {
        opacity: 1;
    }
}

@keyframes visualGlow {
    from {
        transform: scale(.9);
        opacity: .55;
    }

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

@keyframes speakerFloat {
    0%,100% {
        transform: translateY(0) rotateZ(0);
    }

    50% {
        transform: translateY(-14px) rotateZ(1deg);
    }
}

@keyframes wooferPulse {
    from {
        transform: scale(.96);
    }

    to {
        transform: scale(1.03);
    }
}

@keyframes ledPulse {
    from {
        opacity: .35;
    }

    to {
        opacity: 1;
    }
}

@keyframes wavePulse {
    0% {
        opacity: 0;
        transform: scale(.7) rotate(45deg);
    }

    35% {
        opacity: .7;
    }

    100% {
        opacity: 0;
        transform: scale(1.15) rotate(45deg);
    }
}

@keyframes noteFloat {
    0%,100% {
        transform: translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateY(-13px) rotate(5deg);
    }
}

@keyframes scrollLine {
    0% {
        top: -60%;
    }

    100% {
        top: 120%;
    }
}

@keyframes equalizer {
    from {
        transform: scaleY(.45);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes discRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes contactGlow {
    from {
        transform: scale(.85);
        opacity: .6;
    }

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

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

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


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

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

    .hero-copy {
        text-align: center;
    }

    .hero-copy .eyebrow {
        justify-content: center;
    }

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

    .hero-highlights {
        justify-content: center;
    }

    .hero-visual {
        min-height: 470px;
    }

    .experience-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .experience-card {
        min-height: 250px;
    }

    .step {
        min-height: 220px;
    }

    .step h3 {
        margin-top: 35px;
    }

}


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

@media (max-width: 600px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-header {
        padding: 20px;
    }

    .brand-main {
        font-size: 17px;
    }

    .brand-sub {
        font-size: 13px;
    }

    .header-status {
        padding: 7px 10px;

        font-size: 7px;
        letter-spacing: .08em;
    }

    .hero {
        min-height: 100svh;

        padding-top: 125px;
        padding-bottom: 65px;

        align-items: flex-start;
    }

    .hero-grid {
        gap: 5px;
    }

    .eyebrow {
        justify-content: center;

        margin-bottom: 15px;

        font-size: 8px;
        letter-spacing: .15em;
    }

    .eyebrow-line {
        width: 18px;
    }

    .hero-copy h1 {
        font-size: clamp(48px, 15vw, 68px);
        line-height: .91;
        letter-spacing: -.065em;
    }

    .hero-copy h1 span {
        margin-top: 5px;
    }

    .hero-copy > p {
        margin-top: 21px;

        max-width: 340px;

        font-size: 13px;
        line-height: 1.65;
    }

    .hero-highlights {
        gap: 6px;

        margin-top: 20px;
    }

    .highlight {
        padding: 8px 10px;

        font-size: 8px;
    }

    .highlight i {
        font-size: 9px;
    }


    /* SPEAKER MOBILE */

    .hero-visual {
        min-height: 370px;

        margin-top: -8px;
    }

    .visual-glow {
        width: 260px;
        height: 260px;

        filter: blur(25px);
    }

    .speaker-scene {
        width: 240px;
        height: 310px;
    }

    .speaker-3d {
        width: 190px;
        height: 280px;
    }

    .speaker-small {
        top: 54px;

        width: 50px;
        height: 50px;
    }

    .small-inner {
        width: 20px;
        height: 20px;
    }

    .speaker-main {
        top: 112px;

        width: 112px;
        height: 112px;
    }

    .speaker-ring-large {
        width: 92px;
        height: 92px;

        border-width: 5px;
    }

    .speaker-inner {
        width: 73px;
        height: 73px;
    }

    .speaker-center {
        width: 24px;
        height: 24px;
    }

    .speaker-controls {
        bottom: 18px;
    }

    .speaker-controls span {
        width: 7px;
        height: 7px;
    }

    .speaker-top-panel {
        top: 12px;
        left: 15px;
        right: 15px;
    }

    .speaker-led {
        width: 5px;
        height: 5px;
    }

    .sound-wave {
        opacity: .45;
    }

    .wave-one {
        width: 190px;
        height: 190px;
    }

    .wave-two {
        width: 240px;
        height: 240px;
    }

    .wave-three {
        width: 290px;
        height: 290px;
    }

    .floating-note {
        width: 34px;
        height: 34px;

        font-size: 11px;
    }

    .note-one {
        right: 3%;
    }

    .note-two {
        left: 3%;
    }

    .speaker-shadow {
        width: 190px;
    }

    .scroll-indicator {
        bottom: 18px;

        font-size: 7px;
    }

    .scroll-line {
        height: 27px;
    }


    /* SECTIONS */

    .experience,
    .how,
    .social {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .section-heading {
        text-align: center;
        margin: auto;
    }

    .section-heading .eyebrow {
        justify-content: center;
    }

    .section-heading h2 {
        font-size: clamp(40px, 12vw, 57px);
    }

    .section-heading p {
        margin: 19px auto 0;

        font-size: 13px;
        line-height: 1.7;
    }

    .experience-grid {
        margin-top: 45px;

        gap: 9px;
    }

    .experience-card {
        min-height: 245px;

        padding: 24px;
    }

    .card-icon {
        width: 46px;
        height: 46px;

        font-size: 16px;
    }

    .experience-card h3 {
        margin-top: 35px;

        font-size: 22px;
    }

    .experience-card p {
        font-size: 12px;
    }


    /* MOMENT */

    .moment {
        padding-top: 90px;
        padding-bottom: 75px;
    }

    .moment-content {
        flex-direction: column;

        text-align: center;

        gap: 25px;
    }

    .moment-icon {
        width: 68px;
        height: 68px;

        flex-basis: 68px;

        font-size: 22px;
    }

    .moment .eyebrow {
        justify-content: center;
    }

    .moment h2 {
        font-size: 45px;
    }

    .moment p {
        font-size: 12px;
    }

    .equalizer {
        margin-top: 45px;

        height: 55px;

        gap: 3px;
    }

    .equalizer span {
        width: 3px;
    }


    /* HOW */

    .steps {
        margin-top: 45px;

        gap: 1px;
    }

    .step {
        min-height: 205px;

        padding: 24px;
    }

    .step h3 {
        margin-top: 35px;

        font-size: 21px;
    }

    .step p {
        font-size: 12px;
    }


    /* STATEMENT */

    .statement {
        min-height: 400px;

        padding-top: 80px;
        padding-bottom: 80px;
    }

    .statement h2 {
        font-size: clamp(58px, 17vw, 88px);
    }

    .statement-small {
        font-size: 7px;
        letter-spacing: .2em;
    }

    .statement-decoration {
        margin-top: 25px;
    }

    .statement-decoration span {
        width: 35px;
    }


    /* SOCIAL */

    .social-grid {
        margin-top: 45px;

        grid-template-columns: 1fr;

        gap: 9px;
    }

    .social-card {
        min-height: 86px;

        padding: 14px;
    }

    .social-card-icon {
        flex-basis: 45px;

        width: 45px;
        height: 45px;

        font-size: 18px;
    }

    .social-card-text strong {
        font-size: 13px;
    }


    /* CONTACT */

    .contact {
        min-height: auto;

        padding-top: 105px;
        padding-bottom: 105px;
    }

    .contact-glow {
        width: 330px;
        height: 330px;
    }

    .contact-microphone {
        transform: scale(.82);
        margin-bottom: 12px;
    }

    .contact h2 {
        font-size: clamp(44px, 13vw, 62px);
    }

    .contact-content > p {
        max-width: 330px;

        margin-top: 20px;

        font-size: 12px;
    }

    .whatsapp-list {
        margin-top: 32px;

        gap: 9px;
    }

    .whatsapp-card {
        min-height: 75px;

        padding: 11px 13px;

        border-radius: 14px;
    }

    .whatsapp-icon {
        flex-basis: 45px;

        width: 45px;
        height: 45px;

        border-radius: 12px;

        font-size: 19px;
    }

    .whatsapp-info {
        margin-left: 11px;
    }

    .whatsapp-info strong {
        font-size: 13px;
    }

    .whatsapp-info span {
        font-size: 7px;
    }


    /* FOOTER */

    .footer {
        padding: 35px 20px;
    }

    .footer-inner {
        flex-direction: column;

        text-align: center;

        gap: 10px;
    }

    .footer-inner p {
        font-size: 9px;
    }

    .footer-copy {
        font-size: 8px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .site-header {
        padding: 17px;
    }

    .header-status {
        display: none;
    }

    .hero {
        padding-top: 105px;
    }

    .hero-copy h1 {
        font-size: 45px;
    }

    .hero-visual {
        min-height: 335px;
    }

    .speaker-scene {
        transform: scale(.88);
    }

    .experience-card {
        min-height: 230px;
    }

    .contact h2 {
        font-size: 43px;
    }

}


/* =========================================================
   REDUCE 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;
    }

}