/* =========================================================
   VEXYNTA — PREMIUM HOME PAGE
   Palette:
   #190019
   #2B124C
   #522B5B
   #854F6C
   #DFB6B2
   #FBE4D8
========================================================= */


/* =========================
   VARIABLES
========================= */

:root {

    --black: #080508;

    --plum: #190019;

    --deep-purple: #2B124C;

    --purple: #522B5B;

    --dust-purple: #854F6C;

    --rose: #DFB6B2;

    --cream: #FBE4D8;

    --text: #F5EDE9;

    --muted: #A99B9F;

    --line: rgba(251, 228, 216, 0.14);

}


/* =========================
   RESET
========================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background: var(--black);

    color: var(--text);

    font-family: "Manrope", sans-serif;

    overflow-x: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


/* =========================
   HEADER
========================= */

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 78px;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 999;

    background: rgba(8, 5, 8, 0.72);

    backdrop-filter: blur(22px);

    border-bottom: 1px solid var(--line);

}


.brand {

    position: absolute;

    left: 34px;

    display: flex;

    align-items: center;

}


.brand img {

    width: 85px;

    height: auto;

    object-fit: contain;

}


.main-nav {

    display: flex;

    align-items: center;

    gap: 42px;

}


.main-nav a {

    position: relative;

    font-family: "Space Grotesk", sans-serif;

    font-size: 14px;

    font-weight: 600;

    color: #eee;

    transition: 0.3s ease;

}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 1px;

    background: var(--rose);

    transition: 0.3s ease;

}


.main-nav a:hover {

    color: var(--cream);

}


.main-nav a:hover::after,

.main-nav a.active::after {

    width: 100%;

}


.header-cta {

    position: absolute;

    right: 30px;

    border: 1px solid var(--line);

    border-radius: 100px;

    padding: 11px 17px;

    font-size: 12px;

    font-weight: 700;

    transition: 0.3s ease;

}


.header-cta:hover {

    background: var(--cream);

    color: var(--plum);

}


/* =========================
   GLOBAL
========================= */

.section {

    position: relative;

    padding: 150px 8vw;

}


.section-number {

    position: absolute;

    top: 55px;

    left: 8vw;

    color: var(--dust-purple);

    font-family: "Space Grotesk", sans-serif;

    font-size: 12px;

    letter-spacing: 3px;

}


.eyebrow {

    margin-bottom: 28px;

    color: var(--rose);

    font-family: "Space Grotesk", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

}


h2 {

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(50px, 7vw, 100px);

    line-height: 0.9;

    letter-spacing: -5px;

    font-weight: 600;

}


h2 em {

    color: var(--rose);

    font-style: normal;

}


p {

    line-height: 1.8;

}


/* =========================
   HERO
========================= */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 150px 8vw 90px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 25%,
            rgba(82,43,91,0.42),
            transparent 30%
        ),

        radial-gradient(
            circle at 15% 90%,
            rgba(133,79,108,0.18),
            transparent 28%
        ),

        var(--black);

}


.hero-background {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(251,228,216,0.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(251,228,216,0.025) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 90%
    );

}


.hero-content {

    position: relative;

    z-index: 5;

    max-width: 1150px;

}


.hero-kicker {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 30px;

    color: var(--rose);

    font-family: "Space Grotesk", sans-serif;

    font-size: 11px;

    letter-spacing: 3px;

    font-weight: 700;

}


.pulse-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--rose);

    box-shadow: 0 0 20px var(--rose);

    animation: pulse 2s infinite;

}


.hero h1 {

    max-width: 1200px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(70px, 11vw, 170px);

    line-height: 0.82;

    letter-spacing: -9px;

    font-weight: 600;

}


.hero h1 span {

    display: inline-block;

    background: linear-gradient(
        90deg,
        var(--cream),
        var(--rose),
        #A56ABD
    );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

}


.hero-description {

    max-width: 630px;

    margin-top: 38px;

    color: var(--muted);

    font-size: 17px;

}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 35px;

}


.button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    border-radius: 100px;

    padding: 15px 22px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.35s ease;

}


.button-primary {

    background: var(--cream);

    color: var(--plum);

}


.button-primary:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 50px rgba(223,179,178,0.14);

}


.button-secondary {

    border: 1px solid var(--line);

    color: var(--text);

}


.button-secondary:hover {

    border-color: var(--rose);

    transform: translateY(-4px);

}


.hero-footer {

    position: absolute;

    bottom: 35px;

    left: 8vw;

    right: 8vw;

    display: flex;

    justify-content: space-between;

    border-top: 1px solid var(--line);

    padding-top: 16px;

    color: #766A6E;

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

}


.hero-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    opacity: 0.3;

}


.hero-orb-one {

    width: 430px;

    height: 430px;

    right: -100px;

    top: 100px;

    background: var(--purple);

}


.hero-orb-two {

    width: 350px;

    height: 350px;

    left: -200px;

    bottom: -180px;

    background: var(--dust-purple);

}


/* =========================
   ABOUT
========================= */

.about {

    border-top: 1px solid var(--line);

}


.about-content {

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 10vw;

}


.section-copy {

    padding-top: 40px;

}


.copy-large {

    color: var(--cream);

    font-size: 27px;

    line-height: 1.45;

    margin-bottom: 25px;

}


.section-copy > p:not(.copy-large) {

    color: var(--muted);

    max-width: 510px;

}


.text-link {

    display: inline-flex;

    gap: 15px;

    margin-top: 35px;

    color: var(--cream);

    font-size: 13px;

    font-weight: 700;

    border-bottom: 1px solid var(--dust-purple);

    padding-bottom: 8px;

}


.text-link span {

    transition: 0.3s ease;

}


.text-link:hover span {

    transform: translateX(7px);

}


/* =========================
   CORE
========================= */

.core {

    background:
        linear-gradient(
            180deg,
            var(--black),
            #100A11
        );

}


.section-top {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

}


.section-top > p {

    color: var(--muted);

    max-width: 280px;

}


.core-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-top: 75px;

    gap: 1px;

    background: var(--line);

}


.core-card {

    position: relative;

    min-height: 400px;

    padding: 30px;

    background: #0D090E;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    transition: 0.4s ease;

}


.core-card::before {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    right: -130px;

    top: -130px;

    background: var(--purple);

    filter: blur(80px);

    opacity: 0;

    transition: 0.4s ease;

}


.core-card:hover::before {

    opacity: 0.35;

}


.core-card:hover {

    background: #130D15;

}


.featured-card {

    background:
        linear-gradient(
            145deg,
            #190019,
            #100914
        );

}


.card-meta {

    display: flex;

    justify-content: space-between;

    color: #756B70;

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

}


.core-card h3 {

    font-family: "Space Grotesk", sans-serif;

    font-size: 42px;

    letter-spacing: -2px;

    font-weight: 500;

}


.core-card p {

    max-width: 330px;

    color: var(--muted);

    font-size: 14px;

}


.core-card a {

    display: flex;

    justify-content: space-between;

    border-top: 1px solid var(--line);

    padding-top: 17px;

    font-size: 12px;

    font-weight: 700;

}


/* =========================
   GLOBAL
========================= */

.global {

    background: var(--plum);

}


.global-content {

    display: grid;

    grid-template-columns: 1fr 0.8fr;

    gap: 10vw;

    align-items: center;

}


.global-description {

    max-width: 450px;

    margin-top: 35px;

    color: var(--muted);

}


.location-list {

    border-top: 1px solid var(--line);

}


.location {

    display: grid;

    grid-template-columns: 50px 1fr auto;

    align-items: center;

    padding: 24px 0;

    border-bottom: 1px solid var(--line);

}


.location span {

    color: var(--dust-purple);

    font-family: "Space Grotesk", sans-serif;

    font-size: 11px;

}


.location strong {

    font-family: "Space Grotesk", sans-serif;

    font-size: 28px;

    font-weight: 500;

}


.location small {

    color: var(--rose);

    font-size: 9px;

    letter-spacing: 2px;

}


/* =========================
   SCALE
========================= */

.metrics {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-top: 75px;

    border-top: 1px solid var(--line);

    border-bottom: 1px solid var(--line);

}


.metric {

    min-height: 250px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 25px;

    border-right: 1px solid var(--line);

}


.metric:last-child {

    border-right: none;

}


.metric strong {

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(60px, 8vw, 115px);

    letter-spacing: -6px;

    font-weight: 500;

    color: var(--cream);

}


.metric strong span {

    color: var(--rose);

}


.metric small {

    color: var(--muted);

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;

    letter-spacing: 3px;

}


/* =========================
   SELECTED WORK
========================= */

.selected {

    background: #0D090E;

}


.work-preview {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 70px;

}


.work-block {

    position: relative;

    min-height: 330px;

    padding: 30px;

    border: 1px solid var(--line);

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    overflow: hidden;

    background:
        linear-gradient(
            140deg,
            #160E17,
            #0A070B
        );

    transition: 0.4s ease;

}


.work-block::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(223,182,178,0.15),
            transparent 35%
        );

    opacity: 0;

    transition: 0.4s ease;

}


.work-block:hover {

    transform: translateY(-8px);

    border-color: var(--dust-purple);

}


.work-block:hover::after {

    opacity: 1;

}


.work-block > span {

    color: var(--rose);

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

}


.work-block h3 {

    position: relative;

    z-index: 2;

    margin-top: 10px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(32px, 4vw, 60px);

    letter-spacing: -3px;

    font-weight: 500;

}


.work-arrow {

    position: absolute;

    z-index: 2;

    top: 27px;

    right: 27px;

    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    border: 1px solid var(--line);

    border-radius: 50%;

}


/* =========================
   VISION
========================= */

.vision {

    position: relative;

    padding: 180px 8vw;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 50%,
            #522B5B 0%,
            #190019 38%,
            #080508 75%
        );

}


.vision-inner {

    position: relative;

    z-index: 2;

    max-width: 1000px;

    margin: auto;

}


.vision h2 {

    font-size: clamp(60px, 9vw, 125px);

}


.vision h2 span {

    color: var(--rose);

}


.vision p:not(.eyebrow) {

    max-width: 580px;

    margin: 30px auto;

    color: var(--muted);

}


/* =========================
   FINAL CTA
========================= */

.final-cta {

    padding: 160px 8vw;

    background: var(--cream);

    color: var(--plum);

}


.final-cta-inner {

    max-width: 1000px;

}


.final-cta .eyebrow {

    color: var(--dust-purple);

}


.final-cta h2 {

    font-size: clamp(60px, 10vw, 145px);

}


.final-cta h2 em {

    color: var(--dust-purple);

}


.cta-button {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 40px;

    padding: 16px 24px;

    border-radius: 100px;

    background: var(--plum);

    color: var(--cream);

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s ease;

}


.cta-button:hover {

    transform: translateY(-4px);

}


/* =========================
   FOOTER
========================= */

.site-footer {

    padding: 60px 8vw 30px;

    background: var(--black);

}


.footer-brand img {

    width: 100px;

}


.footer-brand p {

    margin-top: 12px;

    color: var(--muted);

    font-size: 12px;

}


.footer-links {

    display: flex;

    gap: 30px;

    margin-top: 45px;

    flex-wrap: wrap;

}


.footer-links a {

    color: var(--muted);

    font-size: 12px;

}


.footer-links a:hover {

    color: var(--cream);

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 45px;

    padding-top: 20px;

    border-top: 1px solid var(--line);

    color: #6F6569;

    font-size: 10px;

    letter-spacing: 1px;

}


/* =========================
   ANIMATION
========================= */

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }

}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .main-nav {

        gap: 20px;

    }


    .header-cta {

        display: none;

    }


    .about-content,
    .global-content {

        grid-template-columns: 1fr;

    }


    .core-grid {

        grid-template-columns: 1fr;

    }


    .core-card {

        min-height: 320px;

    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .site-header {

        height: 65px;

    }


    .brand {

        left: 18px;

    }


    .brand img {

        width: 65px;

    }


    .main-nav {

        gap: 13px;

        margin-left: 75px;

    }


    .main-nav a {

        font-size: 9px;

    }


    .hero {

        padding: 120px 6vw 100px;

    }


    .hero h1 {

        font-size: 65px;

        letter-spacing: -5px;

    }


    .hero-footer {

        left: 6vw;

        right: 6vw;

    }


    .hero-footer span:nth-child(2) {

        display: none;

    }


    .section {

        padding: 110px 6vw;

    }


    .section-number {

        left: 6vw;

    }


    h2 {

        font-size: 55px;

        letter-spacing: -3px;

    }


    .section-top {

        align-items: flex-start;

        flex-direction: column;

    }


    .metrics {

        grid-template-columns: 1fr;

    }


    .metric {

        border-right: none;

        border-bottom: 1px solid var(--line);

    }


    .metric:last-child {

        border-bottom: none;

    }


    .work-preview {

        grid-template-columns: 1fr;

    }


    .global-content {

        gap: 50px;

    }


    .location strong {

        font-size: 22px;

    }


    .final-cta {

        padding: 120px 6vw;

    }


    .final-cta h2 {

        font-size: 65px;

        letter-spacing: -4px;

    }


    .footer-bottom {

        flex-direction: column;

    }

}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

.site-header.scrolled {
    background: rgba(25, 0, 25, 0.9);
}
/* =========================================================
   PREMIUM FOOTER
========================================================= */

.site-footer {

    position: relative;

    padding: 90px 8vw 25px;

    background:
        linear-gradient(
            180deg,
            #0A070B 0%,
            #080508 100%
        );

    border-top: 1px solid var(--line);

    overflow: hidden;

}


/* subtle footer glow */

.site-footer::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -250px;

    bottom: -300px;

    border-radius: 50%;

    background: var(--purple);

    filter: blur(120px);

    opacity: 0.12;

    pointer-events: none;

}


/* FOOTER MAIN */

.footer-main {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1.3fr;

    gap: 60px;

    padding-bottom: 70px;

}


/* BRAND */

.footer-brand {

    max-width: 390px;

}


.footer-logo {

    width: 105px;

    height: auto;

    display: block;

}


.footer-tagline {

    margin-top: 20px;

    color: var(--rose);

    font-family: "Space Grotesk", sans-serif;

    font-size: 12px;

    letter-spacing: 2px;

}


.footer-description {

    margin-top: 18px;

    max-width: 340px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

}


/* FOOTER COLUMNS */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-column h4 {

    margin-bottom: 22px;

    color: #766A6E;

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;

    letter-spacing: 2.5px;

    font-weight: 700;

}


.footer-column a {

    margin-bottom: 13px;

    color: var(--muted);

    font-size: 13px;

    transition: 0.3s ease;

}


.footer-column a:hover {

    color: var(--cream);

    transform: translateX(4px);

}


/* CONTACT */

.footer-contact > p {

    margin-bottom: 18px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

}


/* CTA */

.footer-cta {

    display: inline-flex !important;

    align-items: center;

    gap: 10px;

    margin-top: 10px;

    padding: 11px 16px;

    border: 1px solid var(--line);

    border-radius: 100px;

    color: var(--cream) !important;

}


.footer-cta:hover {

    background: var(--cream);

    color: var(--plum) !important;

    transform: none !important;

}


/* LOWER */

.footer-lower {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;

    padding-top: 22px;

    border-top: 1px solid var(--line);

    color: #62585D;

    font-family: "Space Grotesk", sans-serif;

    font-size: 10px;

    letter-spacing: 1px;

}


.footer-lower > div:nth-child(2) {

    text-align: center;

}


.footer-lower > div:last-child {

    text-align: right;

}


/* STATUS */

.footer-status {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

}


.status-light {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--rose);

    box-shadow:
        0 0 12px rgba(223,182,178,0.7);

}


/* MOBILE */

@media (max-width: 900px) {

    .footer-main {

        grid-template-columns:
            1fr 1fr;

        gap: 50px 30px;

    }

}


@media (max-width: 600px) {

    .site-footer {

        padding: 75px 6vw 25px;

    }


    .footer-main {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .footer-lower {

        grid-template-columns: 1fr;

        gap: 15px;

        text-align: left;

    }


    .footer-lower > div:nth-child(2),
    .footer-lower > div:last-child {

        text-align: left;

        justify-content: flex-start;

    }

}







































