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

html {
    scroll-behavior: smooth;
}

body {
    background: #030303;
    color: #ffffff;
    font-family: 'Times New Roman', Times, serif;
    overflow-x: hidden;
}

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

:root {
    --black: #050507;
    --dark: #09090d;
    --dark-card: #0c0c11;
    --gold: #e7ad24;
    --gold-light: #ffd766;
    --gold-dark: #a9700b;
    --white: #f7f7f8;
    --gray: #9b9ca6;
    --border: rgba(231,173,36,0.20);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(5,5,7,0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid
        rgba(255,255,255,0.07);
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5,5,7,0.97);
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.nav-container {
    width: 92%;
    max-width: 1450px;
    height: 84px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 95px;
    height: 65px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-link {
    position: relative;
    color: #c7c7ce;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 0;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 24px;
    border-radius: 30px;
    background: linear-gradient(
            135deg,
            #d99b18,
            #f8c542
        );
    color: #080808;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 30px
        rgba(231,173,36,0.18);
    transition: 0.3s;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px
        rgba(231,173,36,0.30);
}

.nav-button span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #080808;
    color: var(--gold-light);
}

.home {
    position: relative;
    min-height: 100vh;
    padding: 95px 4% 70px;
    overflow: hidden;
    background: radial-gradient(
            circle at 70% 25%,
            rgba(231,173,36,0.07),
            transparent 30%
        ),

        #050507;
}

.background-grid {
    position: absolute;
    inset: 0;
    opacity: 0.20;
    background-image: linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
}

.hero-panel {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1380px;
    min-height: 440px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    overflow: hidden;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
    padding-top: 0;
}

.hero-left {
    padding: 55px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-family:'Times New Roman', Times, serif;
    font-size: clamp(70px, 4.3vw, 65px);
    line-height: 1.08;
    letter-spacing: -2.5px;
    font-weight: 800;
}

.hero-left h1 span {
    color: var(--gold);
}

.hero-text {
    max-width: 650px;
    margin-top: 40px;
    color: #92939d;
    font-size: 18px;
    line-height: 1.8;
}

.hero-points {
    display: flex;
    gap: 28px;
    margin-top: 30px;
}

.point {
    display: flex;
    align-items: center;
    gap: 9px;
}

.point-icon {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid
        rgba(231,173,36,0.20);
    background: rgba(231,173,36,0.05);
    font-size: 16px;
}

.point strong {
    display: block;
    color: #f5f5f5;
    font-size: 18px;
    font-weight: 650;
    line-height: 1.3;
    margin-bottom: 5px;
}

.point small {
    display: block;
    color: #898995;
    font-size: 14px;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 50px;
}

.primary-btn, .outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 21px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 750;
    transition: 0.3s;
}

.primary-btn {
    color: #080808;
    background: linear-gradient(
            135deg,
            #d99b18,
            #f7c440
        );
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px
        rgba(231,173,36,0.22);
}

.outline-btn {
    color: #e6c45d;
    border: 1px solid
        rgba(231,173,36,0.28);
}

.outline-btn:hover {
    border-color: var(--gold);
    background: rgba(231,173,36,0.05);
    transform: translateY(-3px);
}

.hero-right {
    position: relative;
    min-height: 440px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        circle,
        rgba(231,173,36,0.10),
        transparent 55%
    );
}

/* =========================================================
   XENORIX EVOLVING HERO ORBIT
   ========================================================= */

.visual-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(231,173,36,0.18);
    border-radius: 50%;
    pointer-events: none;
    transform-origin: center;
}

.ring-one {
    width: 430px;
    height: 230px;
    transform: translate(-50%, -50%) rotate(-18deg);
    animation: evolveRingOne 18s linear infinite;
}

.ring-two {
    width: 370px;
    height: 190px;
    transform: translate(-50%, -50%) rotate(48deg);
    border-color: rgba(231,173,36,0.12);
    animation: evolveRingTwo 24s linear infinite reverse;
}

.ring-three {
    width: 285px;
    height: 145px;
    transform: translate(-50%, -50%) rotate(-62deg);
    border-color: rgba(231,173,36,0.10);
    animation: evolveRingThree 30s linear infinite;
}

.visual-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 150px;
    height: 150px;
    padding: 23px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        circle,
        rgba(231,173,36,0.16),
        #08080b 68%
    );
    border: 1px solid rgba(231,173,36,0.38);
    box-shadow:
        0 0 0 8px rgba(231,173,36,0.025),
        0 0 70px rgba(231,173,36,0.16),
        inset 0 0 30px rgba(231,173,36,0.08);
    animation: evolveCore 4s ease-in-out infinite;
}

.visual-center img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* Keep the orbit cards upright while they travel around the ellipse. */
.floating-box {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 15;
    width: 215px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 17px;
    border: 1px solid rgba(231,173,36,0.28);
    border-radius: 11px;
    background: rgba(10,10,14,0.92);
    backdrop-filter: blur(12px);
    box-shadow:
        0 15px 40px rgba(0,0,0,0.45),
        0 0 25px rgba(231,173,36,0.05);
    will-change: offset-distance, transform;
    offset-rotate: 0deg;
    translate: 0 0 !important;
    animation: evolveCard 16s linear infinite;
}

.box-one {
    offset-path: ellipse(205px 125px at 50% 50%);
    offset-distance: 12%;
}

.box-two {
    offset-path: ellipse(205px 125px at 50% 50%);
    offset-distance: 62%;
    animation-delay: -8s;
}

.floating-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 3px;
    height: calc(100% - 24px);
    border-radius: 5px;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(231,173,36,0.65);
}

.box-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(231,173,36,0.07);
    border: 1px solid rgba(231,173,36,0.20);
    font-size: 19px;
}

.floating-box small {
    display: block;
    color: #777983;
    font-size: 9px;
    letter-spacing: 1.3px;
}

.floating-box strong {
    display: block;
    color: #e8e8eb;
    font-size: 16px;
    margin-top: 3px;
}

.floating-box:hover {
    border-color: rgba(231,173,36,0.75);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.60),
        0 0 30px rgba(231,173,36,0.14);
    z-index: 30;
}

/* Small gold nodes evolving around the system. */
.orbit-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow:
        0 0 8px var(--gold),
        0 0 18px rgba(231,173,36,0.50);
    z-index: 8;
}

.dot-one {
    left: 50%;
    top: 50%;
    animation: evolveDotOne 9s linear infinite;
}

.dot-two {
    left: 50%;
    top: 50%;
    animation: evolveDotTwo 12s linear infinite;
}

.dot-three {
    left: 50%;
    top: 50%;
    animation: evolveDotThree 15s linear infinite;
}

@keyframes evolveCard {
    from {
        offset-distance: 0%;
    }
    to {
        offset-distance: 100%;
    }
}

@keyframes evolveRingOne {
    from {
        transform: translate(-50%, -50%) rotate(-18deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(342deg);
    }
}

@keyframes evolveRingTwo {
    from {
        transform: translate(-50%, -50%) rotate(48deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(-312deg);
    }
}

@keyframes evolveRingThree {
    from {
        transform: translate(-50%, -50%) rotate(-62deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(298deg);
    }
}

@keyframes evolveCore {
    0%, 100% {
        box-shadow:
            0 0 0 8px rgba(231,173,36,0.025),
            0 0 60px rgba(231,173,36,0.12),
            inset 0 0 25px rgba(231,173,36,0.06);
    }
    50% {
        box-shadow:
            0 0 0 12px rgba(231,173,36,0.035),
            0 0 85px rgba(231,173,36,0.23),
            inset 0 0 35px rgba(231,173,36,0.11);
    }
}

@keyframes evolveDotOne {
    0%   { transform: rotate(0deg) translateX(215px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(215px) rotate(-360deg); }
}

@keyframes evolveDotTwo {
    0%   { transform: rotate(120deg) translateX(175px) rotate(-120deg); }
    100% { transform: rotate(480deg) translateX(175px) rotate(-480deg); }
}

@keyframes evolveDotThree {
    0%   { transform: rotate(240deg) translateX(135px) rotate(-240deg); }
    100% { transform: rotate(600deg) translateX(135px) rotate(-600deg); }
}

/* =========================================================
   TABLET / HALF-DESKTOP NAVIGATION
   ========================================================= */
@media (max-width: 1199px) {
    .nav-menu {
        display: none;
    }

    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
        border: none;
        background: transparent;
        color: var(--gold);
        font-size: 25px;
        cursor: pointer;
        z-index: 1101;
        position: relative;
    }

    .nav-menu.open {
        display: flex;
        position: absolute;
        top: 84px;
        left: 0;
        width: 100%;
        padding: 24px 20px;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        background: rgba(5, 5, 7, 0.98);
        border-bottom: 1px solid rgba(231, 173, 36, 0.2);
        z-index: 1100;
    }

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

    .hero-right {
        min-height: 400px;
    }
}

/* =========================================================
   MOBILE HERO / NAVIGATION
   ========================================================= */
@media (max-width: 700px) {
    .navbar {
        height: 75px;
    }

    .nav-container {
        width: 90%;
        height: 75px;
    }

    .logo {
        width: 58px;
        height: 58px;
    }

    .logo img {
        width: 52px;
        height: 52px;
    }

    .nav-menu.open {
        top: 75px;
        left: 0;
        width: 100%;
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        background: rgba(5, 5, 7, 0.98);
        border-bottom: 1px solid rgba(231, 173, 36, 0.2);
        z-index: 1100;
    }

    .nav-menu.open .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .home {
        padding: 90px 15px 40px;
    }

    .hero-left {
        padding: 35px 25px;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .hero-points {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        justify-content: center;
    }

    .hero-right {
        min-height: 330px;
        overflow: hidden;
    }

    .visual-center {
        width: 110px;
        height: 110px;
        padding: 17px;
    }

    .ring-one {
        width: 320px;
        height: 170px;
    }

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

    .ring-three {
        width: 220px;
        height: 115px;
    }

    .floating-box {
        width: 170px;
        padding: 11px 13px;
        transform: scale(0.8);
    }

    .box-one {
        left: -5px;
    }

    .box-two {
        right: -5px;
    }

    .box-one,
    .box-two {
        offset-path: ellipse(145px 95px at 50% 50%);
    }

    .floating-box small {
        font-size: 7px;
    }

    .floating-box strong {
        font-size: 13px;
    }

    .box-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 16px;
    }
}

.grid-3d {
    position: absolute;
    width: 160%;
    height: 80%;
    left: -30%;
    bottom: -25%;
    opacity: 0.22;
    background-image: linear-gradient(
            rgba(231,173,36,0.18) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(231,173,36,0.18) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    transform: perspective(700px)
        rotateX(65deg);
    transform-origin: center bottom;
    animation: gridMove 8s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0,
            0 0;
    }
    100% {
        background-position: 0 70px,
            70px 0;
    }
}

.tech-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.15;
    mix-blend-mode: screen;
}

.glow-1 {
    width: 400px;
    height: 400px;
    left: -180px;
    top: 20%;
    background: radial-gradient(
            circle,
            #e7ad24,
            transparent 70%
        );
    animation: glowMove1 8s ease-in-out infinite alternate;
}

.glow-2 {
    width: 500px;
    height: 500px;
    right: -200px;
    top: 10%;
    background: radial-gradient(
            circle,
            #d89417,
            transparent 70%
        );
    animation: glowMove2 10s ease-in-out infinite alternate;
}

.glow-3 {
    width: 350px;
    height: 350px;
    left: 45%;
    top: 40%;
    background: radial-gradient(
            circle,
            #ffd766,
            transparent 70%
        );
    opacity: 0.06;
    animation: pulseGlow 5s ease-in-out infinite;
}

@keyframes glowMove1 {
    from {
        transform: translate3d(0,0,0)
            scale(1);
    }
    to {
        transform: translate3d(160px,-80px,80px)
            scale(1.3);
    }
}

@keyframes glowMove2 {
    from {
        transform: translate3d(0,0,0)
            scale(1);
    }
    to {
        transform: translate3d(-180px,100px,100px)
            scale(1.35);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.04;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.10;
    }
}

.particles {
    position: absolute;
    inset: 0;
}

.particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #e7ad24;
    box-shadow: 0 0 10px
        rgba(231,173,36,0.8);
    animation: particleFloat
        var(--duration)
        ease-in-out
        infinite;
}

.particles span:nth-child(1) {
    left: 8%;
    top: 20%;
    --duration: 7s;
}

.particles span:nth-child(2) {
    left: 16%;
    top: 65%;
    --duration: 9s;
}

.particles span:nth-child(3) {
    left: 25%;
    top: 35%;
    --duration: 6s;
}

.particles span:nth-child(4) {
    left: 34%;
    top: 75%;
    --duration: 8s;
}

.particles span:nth-child(5) {
    left: 42%;
    top: 18%;
    --duration: 10s;
}

.particles span:nth-child(6) {
    left: 50%;
    top: 60%;
    --duration: 7s;
}

.particles span:nth-child(7) {
    left: 58%;
    top: 30%;
    --duration: 9s;
}

.particles span:nth-child(8) {
    left: 65%;
    top: 75%;
    --duration: 6s;
}

.particles span:nth-child(9) {
    left: 73%;
    top: 20%;
    --duration: 8s;
}

.particles span:nth-child(10) {
    left: 82%;
    top: 48%;
    --duration: 10s;
}

.particles span:nth-child(11) {
    left: 90%;
    top: 30%;
    --duration: 7s;
}

.particles span:nth-child(12) {
    left: 12%;
    top: 85%;
    --duration: 9s;
}

.particles span:nth-child(13) {
    left: 31%;
    top: 50%;
    --duration: 8s;
}

.particles span:nth-child(14) {
    left: 67%;
    top: 55%;
    --duration: 7s;
}

.particles span:nth-child(15) {
    left: 88%;
    top: 80%;
    --duration: 10s;
}

@keyframes particleFloat {
    0% {
        transform: translate3d(0,0,0)
            scale(0.5);
        opacity: 0.2;
    }
    25% {
        transform: translate3d(30px,-40px,80px)
            scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate3d(-20px,-80px,150px)
            scale(1.4);
        opacity: 0.4;
    }
    75% {
        transform: translate3d(40px,-120px,100px)
            scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate3d(0,-160px,0)
            scale(0.4);
        opacity: 0;
    }
}

.tech-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(231,173,36,0.5),
            transparent
        );
    opacity: 0.35;
}

.line-1 {
    width: 500px;
    left: -100px;
    top: 35%;
    transform: rotate(-25deg);
    animation: lineMove1 7s ease-in-out infinite alternate;
}

.line-2 {
    width: 400px;
    right: -100px;
    top: 55%;
    transform: rotate(25deg);
    animation: lineMove2 9s ease-in-out infinite alternate;
}

.line-3 {
    width: 300px;
    left: 40%;
    top: 20%;
    transform: rotate(-12deg);
    animation: lineMove3 8s ease-in-out infinite alternate;
}

@keyframes lineMove1 {
    from {
        transform: translate3d(0,0,0)
            rotate(-25deg);
    }
    to {
        transform: translate3d(180px,100px,100px)
            rotate(-18deg);
    }
}

@keyframes lineMove2 {
    from {
        transform: translate3d(0,0,0)
            rotate(25deg);
    }
    to {
        transform: translate3d(-150px,-80px,100px)
            rotate(18deg);
    }
}

@keyframes lineMove3 {
    from {
        transform: translate3d(0,0,0)
            rotate(-12deg);
    }
    to {
        transform: translate3d(120px,70px,100px)
            rotate(-5deg);
    }
}

/* =========================================================
   XENORIX CAREER PATH
   BLACK + GOLD THEME
   ========================================================= */


/* =========================================================
   SECTION
   ========================================================= */

.xnx-path-section {

    position: relative;

    width: 100%;

    padding: 120px 5% 125px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(231, 173, 36, 0.07),
            transparent 40%
        ),
        #050505;

    overflow: hidden;
}


/* Top gold light */

.xnx-path-section::before {

    content: "";

    position: absolute;

    top: 0;

    left: 50%;

    width: 420px;

    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(231, 173, 36, .65),
            transparent
        );

    box-shadow:
        0 0 25px rgba(231, 173, 36, .25);
}


/* =========================================================
   CONTAINER
   ========================================================= */

.xnx-path-container {

    width: min(1400px, 100%);

    margin: 0 auto;
}


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

.xnx-path-header {

    max-width: 780px;

    margin-bottom: 65px;
}


.xnx-path-eyebrow {

    display: inline-block;

    margin-bottom: 20px;

    color: #e7ad24;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.xnx-path-header h2 {

    margin: 0;

    max-width: 720px;

    color: #f5f5f5;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(40px, 4.5vw, 64px);

    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -1.5px;
}


.xnx-path-header h2 span {

    color: #e7ad24;
}


.xnx-path-header p {

    max-width: 760px;

    margin: 28px 0 0;

    color: #92939a;

    font-size: 17px;

    line-height: 1.75;
}


/* =========================================================
   COMPANY TITLE
   ========================================================= */

.xnx-company-title {

    display: flex;

    align-items: center;

    gap: 22px;

    width: 100%;

    margin-bottom: 24px;
}


.xnx-company-name {

    flex-shrink: 0;

    color: #e7ad24;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    white-space: nowrap;
}


.xnx-company-line {

    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(231,173,36,.28)
        );
}


.technologies-title {

    margin-top: 50px;
}


/* =========================================================
   PATH GRID
   ========================================================= */

.xnx-path-grid {

    display: grid;

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

    gap: 20px;
}


/* =========================================================
   PATH CARD
   ========================================================= */

.xnx-path-card {

    position: relative;

    min-height: 150px;

    padding: 24px 42px 25px 30px;

    background:
        linear-gradient(
            145deg,
            #0b0b0a,
            #11100d
        );

    border: 1px solid rgba(231,173,36,.22);

    border-radius: 20px;

    overflow: visible;

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


/* Gold left accent */

.xnx-path-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 25px;

    width: 3px;

    height: calc(100% - 50px);

    background: #e7ad24;

    border-radius:
        0 5px 5px 0;

    box-shadow:
        0 0 14px rgba(231,173,36,.45);
}


/* =========================================================
   BRAND NAME INSIDE CARD
   ========================================================= */

.xnx-path-brand {

    margin-bottom: 15px;

    color: #e7ad24;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    opacity: .85;
}


/* Technologies brand */

.xnx-technologies-grid
.xnx-path-brand {

    color: #f0c65a;
}


/* =========================================================
   MAIN CARD CONTENT
   ========================================================= */

.xnx-path-main {

    display: flex;

    align-items: flex-start;

    gap: 18px;
}


/* =========================================================
   NUMBER
   ========================================================= */

.xnx-path-number {

    flex-shrink: 0;

    color: #a4781e;

    font-size: 32px;

    font-weight: 700;

    line-height: 1;
}


/* =========================================================
   CONTENT
   ========================================================= */

.xnx-path-content {

    min-width: 0;
}


.xnx-path-content h3 {

    margin: 0 0 9px;

    color: #f5f5f5;

    font-size: 19px;

    font-weight: 700;

    line-height: 1.2;
}


.xnx-path-content p {

    margin: 0;

    color: #92939a;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   ARROW
   ========================================================= */

.xnx-path-arrow {

    position: absolute;

    right: -14px;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: 10;

    width: 29px;

    height: 29px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e7ad24;

    color: #050505;

    font-size: 19px;

    font-weight: 700;

    box-shadow:
        0 0 15px rgba(231,173,36,.25);

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


/* =========================================================
   HOVER
   ========================================================= */

.xnx-path-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(231,173,36,.65);

    background:
        linear-gradient(
            145deg,
            #10100d,
            #16130d
        );

    box-shadow:
        0 20px 50px rgba(0,0,0,.5),
        0 0 30px rgba(231,173,36,.08);
}


.xnx-path-card:hover .xnx-path-arrow {

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

    box-shadow:
        0 0 22px rgba(231,173,36,.45);
}


/* =========================================================
   TRANSITION
   ========================================================= */

.xnx-transition {

    display: flex;

    align-items: center;

    gap: 22px;

    width: 100%;

    margin: 50px 0 20px;
}


.xnx-transition-line {

    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(231,173,36,.30),
            transparent
        );
}


.xnx-transition-center {

    display: flex;

    align-items: center;

    gap: 13px;
}


.xnx-transition-text {

    color: #e7ad24;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    white-space: nowrap;
}


.xnx-transition-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #e7ad24;

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


/* =========================================================
   SUBTLE CONNECTING LINE
   ========================================================= */

.xnx-elite-grid,
.xnx-technologies-grid {

    position: relative;
}


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

.xnx-path-card {

    opacity: 0;

    animation:
        xnxPathReveal
        .7s
        ease
        forwards;
}


.xnx-elite-grid .xnx-path-card:nth-child(1) {
    animation-delay: .05s;
}


.xnx-elite-grid .xnx-path-card:nth-child(2) {
    animation-delay: .12s;
}


.xnx-elite-grid .xnx-path-card:nth-child(3) {
    animation-delay: .19s;
}


.xnx-technologies-grid .xnx-path-card:nth-child(1) {
    animation-delay: .26s;
}


.xnx-technologies-grid .xnx-path-card:nth-child(2) {
    animation-delay: .33s;
}


.xnx-technologies-grid .xnx-path-card:nth-child(3) {
    animation-delay: .40s;
}


@keyframes xnxPathReveal {

    from {

        opacity: 0;

        transform:
            translateY(25px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}


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

@media (max-width: 1100px) {

    .xnx-path-section {

        padding:
            95px 5%
            105px;
    }


    .xnx-path-grid {

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


    .xnx-path-card:nth-child(3) {

        grid-column:
            1 / -1;

        max-width:
            calc(50% - 10px);
    }


    .xnx-path-arrow {

        display: none;
    }

}


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

@media (max-width: 700px) {

    .xnx-path-section {

        padding:
            75px 20px
            85px;
    }


    .xnx-path-header {

        margin-bottom:
            48px;
    }


    .xnx-path-eyebrow {

        font-size: 11px;

        letter-spacing: 3px;
    }


    .xnx-path-header h2 {

        font-size: 38px;

        letter-spacing: -1px;
    }


    .xnx-path-header p {

        margin-top: 20px;

        font-size: 15px;

        line-height: 1.65;
    }


    /* Company headings */

    .xnx-company-title {

        gap: 12px;

        margin-bottom: 18px;
    }


    .xnx-company-name {

        font-size: 8px;

        letter-spacing: 2px;
    }


    .technologies-title {

        margin-top: 35px;
    }


    /* Cards */

    .xnx-path-grid {

        grid-template-columns:
            1fr;

        gap: 15px;
    }


    .xnx-path-card {

        min-height: 125px;

        padding:
            21px
            25px;
    }


    .xnx-path-card:nth-child(3) {

        grid-column:
            auto;

        max-width:
            none;
    }


    .xnx-path-brand {

        font-size: 8px;

        letter-spacing: 1.7px;
    }


    .xnx-path-number {

        font-size: 27px;
    }


    .xnx-path-main {

        gap: 14px;
    }


    .xnx-path-content h3 {

        font-size: 17px;
    }


    .xnx-path-content p {

        font-size: 13px;
    }


    .xnx-path-arrow {

        display: none;
    }


    /* Transition */

    .xnx-transition {

        gap: 10px;

        margin:
            35px 0
            18px;
    }


    .xnx-transition-text {

        font-size: 7px;

        letter-spacing: 1.7px;
    }


    .xnx-transition-dot {

        width: 4px;

        height: 4px;
    }

}


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

@media (max-width: 430px) {

    .xnx-path-header h2 {

        font-size: 32px;
    }


    .xnx-path-card {

        padding:
            20px;
    }


    .xnx-path-number {

        font-size: 24px;
    }


    .xnx-path-content h3 {

        font-size: 16px;
    }


    .xnx-path-content p {

        font-size: 12px;
    }


    .xnx-transition-text {

        font-size: 6.5px;

        letter-spacing: 1.2px;
    }

}


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

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

    .xnx-path-card {

        animation: none;

        opacity: 1;
    }

}




/* =========================================================
   DISCOVER XENORIX
   ========================================================= */

.discover-section {
    position: relative;
    width: 100%;
    padding: 120px 0 100px;
    overflow: hidden;
}


/* ==================== MAIN HEADING ==================== */

.discover-heading {
    width: min(900px, 88%);
    margin: 0 auto 80px;
    text-align: center;
}

.discover-heading .section-label {
    display: block;
    margin-bottom: 18px;

    font-family:'Times New Roman', Times, serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;

    color: #d4af37;
}

.discover-heading h2 {
    margin: 0;

    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -2px;

    color: #f5f5f5;
}

.discover-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #d4af37,
        #f5dc86,
        #d4af37
    );

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

.discover-heading > p {
    max-width: 680px;
    margin: 24px auto 0;

    color: rgba(255,255,255,0.52);

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


/* =========================================================
   ACHIEVEMENTS
   ========================================================= */

.achievements-section {
    width: 100%;
    padding-bottom: 35px;
}


/* ==================== ACHIEVEMENT HEADING ==================== */

.achievement-heading {
    width: min(1200px, 88%);
    margin: 0 auto 35px;

    position: relative;
}

.achievement-heading > span {
    display: block;
    margin-bottom: 10px;

    font-family:'Times New Roman', Times, serif;
    font-size: 16px;
    letter-spacing: 3px;

    color: #d4af37;
}

.achievement-heading h3 {
    margin: 0;

    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    letter-spacing: -1px;

    color: #f5f5f5;
}

.achievement-heading p {
    max-width: 650px;
    margin: 12px 0 0;

    color: rgba(255,255,255,0.45);

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


/* =========================================================
   ACHIEVEMENT NEWS TICKER
   ========================================================= */

.achievement-ticker {
    width: 100%;
    overflow: hidden;

    position: relative;

    padding: 20px 0 20px;

    /*
       Soft fade at both edges.
       Cards smoothly disappear as they leave the screen.
    */

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );
}


/* ==================== MOVING TRACK ==================== */

.achievement-track {
    display: flex;
    width: max-content;

    gap: 22px;

    animation: achievementsNews 42s linear infinite;

    will-change: transform;
}


/* Pause when user hovers */

.achievement-ticker:hover .achievement-track {
    animation-play-state: paused;
}


/* =========================================================
   ACHIEVEMENT CARD
   ========================================================= */

.achievement-card {
    position: relative;

    width: 330px;
    min-height: 240px;

    flex: 0 0 330px;

    padding: 28px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.012)
        );

    border: 1px solid rgba(212,175,55,0.16);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;

    overflow: hidden;
}


/* Top gold line */

.achievement-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

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

    opacity: 0.7;
}


/* Corner glow */

.achievement-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background: rgba(212,175,55,0.07);

    filter: blur(35px);

    pointer-events: none;
}


/* ==================== CARD HOVER ==================== */

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

    border-color: rgba(212,175,55,0.55);

    background:
        linear-gradient(
            145deg,
            rgba(212,175,55,0.075),
            rgba(255,255,255,0.015)
        );
}


/* ==================== ICON ==================== */

.achievement-icon {
    width: 42px;
    height: 42px;

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

    margin-bottom: 20px;

    border: 1px solid rgba(212,175,55,0.3);

    color: #d4af37;

    font-size: 14px;

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

.achievement-card:hover .achievement-icon {
    border-color: #d4af37;

    box-shadow:
        0 0 25px rgba(212,175,55,0.18);

    transform: rotate(45deg);
}


/* ==================== NUMBER ==================== */

.achievement-number {
    position: absolute;

    top: 29px;
    right: 28px;

    font-family: "Space Mono", monospace;

    font-size: 10px;
    letter-spacing: 2px;

    color: rgba(212,175,55,0.45);
}


/* ==================== TITLE ==================== */

.achievement-card h4 {
    margin: 0 0 13px;

    color: #f3f3f3;

    font-size: 18px;
    font-weight: 500;

    line-height: 1.3;
}


/* ==================== DESCRIPTION ==================== */

.achievement-card p {
    max-width: 265px;

    margin: 0;

    color: rgba(255,255,255,0.48);

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


/* =========================================================
   NEWS MOVEMENT
   ========================================================= */

@keyframes achievementsNews {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


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

@media (max-width: 768px) {

    .discover-section {
        padding: 80px 0 70px;
    }

    .discover-heading {
        margin-bottom: 55px;
    }

    .discover-heading h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .discover-heading > p {
        font-size: 13px;
    }

    .achievement-heading {
        width: 88%;
    }

    .achievement-heading h3 {
        font-size: 30px;
    }

    .achievement-card {
        width: 285px;
        min-height: 220px;

        flex-basis: 285px;

        padding: 24px;
    }

    .achievement-card h4 {
        font-size: 16px;
    }

    .achievement-card p {
        font-size: 11px;
    }

    .achievement-track {
        gap: 15px;

        animation-duration: 32s;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

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

    .achievement-track {
        animation: none;
    }

}



/* =========================================================
   OUR TEAM
   ========================================================= */

.team-section {
    position: relative;
    width: 100%;
    padding: 35px 0 80px;
    overflow: hidden;
}


/* ==================== HEADING ==================== */

.team-heading {
    width: min(1200px, 88%);
    margin: 0 auto 22px;
}

.team-heading > span {
    display: block;
    margin-bottom: 10px;

    font-family:'Times New Roman', Times, serif;
    font-size: 14px;
    letter-spacing: 3px;

    color: #d4af37;
}

.team-heading h3 {
    margin: 0;

    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    letter-spacing: -1px;
    font-family: 'Times New Roman', Times, serif;

    color: #f5f5f5;
}

.team-heading p {
    max-width: 650px;
    margin: 12px 0 0;

    color: rgba(255,255,255,0.45);

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


/* =========================================================
   TEAM TICKER
   ========================================================= */

.team-ticker {
    width: 100%;
    overflow: hidden;

    position: relative;

    padding: 20px 0 45px;

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );
}


/* ==================== MOVING RIGHT ==================== */

.team-track {
    display: flex;
    width: max-content;

    gap: 22px;

    /*
       Team moves RIGHT
    */

    animation: teamNews 42s linear infinite;

    will-change: transform;
}


/* Pause on hover */

.team-ticker:hover .team-track {
    animation-play-state: paused;
}


/* =========================================================
   TEAM CARD
   ========================================================= */

.team-card {
    position: relative;

    width: 330px;
    min-height: 240px;

    flex: 0 0 330px;

    padding: 28px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.012)
        );

    border: 1px solid rgba(212,175,55,0.16);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;

    overflow: hidden;
}


/* Top gold line */

.team-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

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

    opacity: 0.7;
}


/* Corner glow */

.team-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background: rgba(212,175,55,0.07);

    filter: blur(35px);

    pointer-events: none;
}


/* ==================== HOVER ==================== */

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

    border-color: rgba(212,175,55,0.55);

    background:
        linear-gradient(
            145deg,
            rgba(212,175,55,0.075),
            rgba(255,255,255,0.015)
        );
}


/* ==================== ICON ==================== */

.team-icon {
    width: 42px;
    height: 42px;

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

    margin-bottom: 20px;

    border: 1px solid rgba(212,175,55,0.3);

    color: #d4af37;

    font-size: 14px;

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

.team-card:hover .team-icon {
    border-color: #d4af37;

    box-shadow:
        0 0 25px rgba(212,175,55,0.18);

    transform: rotate(45deg);
}


/* ==================== NUMBER ==================== */

.team-number {
    position: absolute;

    top: 29px;
    right: 28px;

    font-family: 'Times New Roman', Times, serif;

    font-size: 14px;
    letter-spacing: 2px;

    color: rgba(212,175,55,0.45);
}


/* ==================== TITLE ==================== */

.team-card h4 {
    margin: 0 0 13px;

    color: #f3f3f3;

    font-size: 18px;
    font-weight: 500;

    line-height: 1.3;
}


/* ==================== DESCRIPTION ==================== */

.team-card p {
    max-width: 265px;

    margin: 0;

    color: rgba(255,255,255,0.48);

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


/* =========================================================
   RIGHT MOVEMENT
   ========================================================= */

@keyframes teamNews {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}


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

@media (max-width: 768px) {

    .team-section {
        padding: 75px 0;
    }

    .team-heading {
        width: 88%;
    }

    .team-heading h3 {
        font-size: 30px;
    }

    .team-card {
        width: 285px;
        min-height: 220px;

        flex-basis: 285px;

        padding: 24px;
    }

    .team-card h4 {
        font-size: 16px;
    }

    .team-card p {
        font-size: 11px;
    }

    .team-track {
        gap: 15px;

        animation-duration: 32s;
    }

}


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

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

    .team-track {
        animation: none;
    }

}

/* =========================================================
   EVENTS & INITIATIVES
   ========================================================= */

.events-section {
    position: relative;
    width: 100%;
    padding: 70px 0 100px;
    overflow: hidden;
}


/* ==================== HEADING ==================== */

.events-heading {
    width: min(1200px, 88%);
    margin: 0 auto 35px;
}

.events-heading > span {
    display: block;
    margin-bottom: 10px;

    font-family:'Times New Roman', Times, serif;
    font-size: 10px;
    letter-spacing: 3px;

    color: #d4af37;
}

.events-heading h3 {
    margin: 0;

    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    letter-spacing: -1px;

    color: #f5f5f5;
}

.events-heading p {
    max-width: 650px;
    font-family: 'Times New Roman', Times, serif;
    margin: 12px 0 0;

    color: rgba(255,255,255,0.45);

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


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

.events-ticker {
    width: 100%;
    overflow: hidden;

    position: relative;

    padding: 20px 0 45px;

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );
}


/* ==================== MOVING RIGHT ==================== */

.events-track {
    display: flex;
    width: max-content;

    gap: 22px;

    animation: eventsNews 42s linear infinite;

    will-change: transform;
}


/* Pause on hover */

.events-ticker:hover .events-track {
    animation-play-state: paused;
}


/* =========================================================
   EVENT CARD
   ========================================================= */

.events-card {
    position: relative;

    width: 330px;
    min-height: 240px;

    flex: 0 0 330px;

    padding: 28px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.012)
        );

    border: 1px solid rgba(212,175,55,0.16);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;

    overflow: hidden;
}


/* Top gold line */

.events-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

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

    opacity: 0.7;
}


/* Corner glow */

.events-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background: rgba(212,175,55,0.07);

    filter: blur(35px);

    pointer-events: none;
}


/* ==================== HOVER ==================== */

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

    border-color: rgba(212,175,55,0.55);

    background:
        linear-gradient(
            145deg,
            rgba(212,175,55,0.075),
            rgba(255,255,255,0.015)
        );
}


/* ==================== ICON ==================== */

.events-icon {
    width: 42px;
    height: 42px;

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

    margin-bottom: 20px;

    border: 1px solid rgba(212,175,55,0.3);

    color: #d4af37;

    font-size: 14px;

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

.events-card:hover .events-icon {
    border-color: #d4af37;

    box-shadow:
        0 0 25px rgba(212,175,55,0.18);

    transform: rotate(45deg);
}


/* ==================== NUMBER ==================== */

.events-number {
    position: absolute;

    top: 29px;
    right: 28px;

    font-family: 'Times New Roman', Times, serif;

    font-size: 10px;
    letter-spacing: 2px;

    color: rgba(212,175,55,0.45);
}


/* ==================== TITLE ==================== */

.events-card h4 {
    margin: 0 0 13px;

    color: #f3f3f3;

    font-size: 18px;
    font-weight: 500;

    line-height: 1.3;
}


/* ==================== DESCRIPTION ==================== */

.events-card p {
    max-width: 265px;

    margin: 0;

    color: rgba(255,255,255,0.48);

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


/* =========================================================
   RIGHT NEWS MOVEMENT
   ========================================================= */

@keyframes eventsNews {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


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

@media (max-width: 768px) {

    .events-section {
        padding: 60px 0 75px;
    }

    .events-heading {
        width: 88%;
    }

    .events-heading h3 {
        font-size: 30px;
    }

    .events-card {
        width: 285px;
        min-height: 220px;

        flex-basis: 285px;

        padding: 24px;
    }

    .events-card h4 {
        font-size: 16px;
    }

    .events-card p {
        font-size: 11px;
    }

    .events-track {
        gap: 15px;

        animation-duration: 32s;
    }

}


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

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

    .events-track {
        animation: none;
    }

}

/* =========================================================
   FEEDBACK
   ========================================================= */

.feedback-section {
    position: relative;
    width: 100%;
    padding: 40px 0 70px;
    overflow: hidden;
}


/* ==================== HEADING ==================== */

.feedback-heading {
    width: min(1200px, 88%);
    margin: 0 auto 35px;
}

.feedback-heading > span {
    display: block;
    margin-bottom: 10px;

    font-family: 'Times New Roman', Times, serif;
    font-size: 10px;
    letter-spacing: 3px;

    color: #d4af37;
}

.feedback-heading h3 {
    margin: 0;

    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    letter-spacing: -1px;

    color: #f5f5f5;
}

.feedback-heading p {
    max-width: 650px;

    margin: 12px 0 0;

    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    line-height: 1.7;

    color: rgba(255,255,255,0.45);
}


/* =========================================================
   FEEDBACK TICKER
   ========================================================= */

.feedback-ticker {
    width: 100%;
    overflow: hidden;

    position: relative;

    padding: 20px 0 45px;

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );
}


/* =========================================================
   MOVING RIGHT
   ========================================================= */

.feedback-track {
    display: flex;
    width: max-content;

    gap: 22px;

    animation: feedbackNews 42s linear infinite;

    will-change: transform;
}


.feedback-ticker:hover .feedback-track {
    animation-play-state: paused;
}


/* =========================================================
   FEEDBACK CARD
   ========================================================= */

.feedback-card {
    position: relative;

    width: 330px;
    min-height: 240px;

    flex: 0 0 330px;

    padding: 28px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.012)
        );

    border: 1px solid rgba(212,175,55,0.16);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;

    overflow: hidden;
}


/* Top gold line */

.feedback-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

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

    opacity: 0.7;
}


/* Corner glow */

.feedback-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background: rgba(212,175,55,0.07);

    filter: blur(35px);

    pointer-events: none;
}


/* ==================== HOVER ==================== */

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

    border-color: rgba(212,175,55,0.55);

    background:
        linear-gradient(
            145deg,
            rgba(212,175,55,0.075),
            rgba(255,255,255,0.015)
        );
}


/* ==================== QUOTE ==================== */

.feedback-icon {
    width: 42px;
    height: 42px;

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

    margin-bottom: 20px;

    border: 1px solid rgba(212,175,55,0.3);

    color: #d4af37;

    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.feedback-card:hover .feedback-icon {
    transform: rotate(-5deg);

    box-shadow:
        0 0 25px rgba(212,175,55,0.18);
}


/* ==================== NUMBER ==================== */

.feedback-number {
    position: absolute;

    top: 29px;
    right: 28px;

    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;

    letter-spacing: 2px;

    color: rgba(212,175,55,0.45);
}


/* ==================== TITLE ==================== */

.feedback-card h4 {
    margin: 0 0 13px;

    font-family: 'Times New Roman', Times, serif;

    color: #f3f3f3;

    font-size: 18px;
    font-weight: 500;

    line-height: 1.3;
}


/* ==================== DESCRIPTION ==================== */

.feedback-card p {
    max-width: 265px;

    margin: 0;

    font-family: 'Times New Roman', Times, serif;

    color: rgba(255,255,255,0.48);

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


/* ==================== TAG ==================== */

.feedback-tag {
    margin-top: auto;
    padding-top: 18px;

    font-family: 'Times New Roman', Times, serif;

    font-size: 11px;
    letter-spacing: 2px;

    color: rgba(212,175,55,0.6);
}


/* =========================================================
   RIGHT MOVEMENT
   ========================================================= */

@keyframes feedbackNews {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}


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

@media (max-width: 768px) {

    .feedback-section {
        padding: 35px 0 60px;
    }

    .feedback-heading {
        width: 88%;
    }

    .feedback-heading h3 {
        font-size: 30px;
    }

    .feedback-card {
        width: 285px;
        min-height: 220px;

        flex-basis: 285px;

        padding: 24px;
    }

    .feedback-card h4 {
        font-size: 16px;
    }

    .feedback-card p {
        font-size: 11px;
    }

    .feedback-track {
        gap: 15px;

        animation-duration: 32s;
    }

}
/* =========================================================
   XENORIX FAQ SECTION
   BLACK + GOLD
   ========================================================= */

.xnx-faq-section {
    position: relative;
    width: 100%;
    padding: 110px 5% 120px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(231, 173, 36, 0.08),
            transparent 45%
        ),
        #050505;
    overflow: hidden;
}


/* =========================================================
   FAQ CONTAINER
   ========================================================= */

.xnx-faq-container {
    width: min(1050px, 100%);
    margin: 0 auto;
}


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

.xnx-faq-header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.xnx-faq-eyebrow {
    display: inline-block;
    margin-bottom: 16px;

    color: #e7ad24;

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

    letter-spacing: 4px;
    text-transform: uppercase;
}

.xnx-faq-header h2 {
    margin: 0;

    color: #f5f5f5;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(40px, 5vw, 62px);

    font-weight: 700;
    line-height: 1.05;
}

.xnx-faq-header h2 span {
    color: #e7ad24;
}

.xnx-faq-header p {
    max-width: 680px;

    margin: 22px auto 0;

    color: #929292;

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


/* =========================================================
   FAQ LIST
   ========================================================= */

.xnx-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* =========================================================
   FAQ ITEM
   ========================================================= */

.xnx-faq-item {
    position: relative;

    width: 100%;

    background:
        linear-gradient(
            145deg,
            #0b0b0a,
            #11100d
        );

    border: 1px solid rgba(231, 173, 36, 0.18);

    border-radius: 16px;

    overflow: hidden;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   GOLD SIDE ACCENT
   ========================================================= */

.xnx-faq-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 20px;

    width: 3px;
    height: 40px;

    background: #e7ad24;

    border-radius: 0 5px 5px 0;

    opacity: 0.35;

    transition:
        height 0.3s ease,
        opacity 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.xnx-faq-item:hover {
    border-color:
        rgba(231, 173, 36, 0.42);

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.35);
}

.xnx-faq-item:hover::before {
    opacity: 0.8;

    box-shadow:
        0 0 12px rgba(231, 173, 36, 0.45);
}


/* =========================================================
   QUESTION ROW
   ========================================================= */

.xnx-faq-question-row {
    position: relative;

    display: grid;

    grid-template-columns:
        55px
        minmax(0, 1fr)
        35px;

    align-items: center;

    gap: 15px;

    width: 100%;

    min-height: 82px;

    padding: 0 25px;

    cursor: pointer;

    user-select: none;
}


/* =========================================================
   NUMBER
   ========================================================= */

.xnx-faq-number {
    color: #8e681b;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    transition:
        color 0.3s ease;
}


/* =========================================================
   QUESTION
   ========================================================= */

.xnx-faq-question {
    color: #eeeeee;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.5;

    transition:
        color 0.3s ease;
}

.xnx-faq-item:hover
.xnx-faq-question {
    color: #ffffff;
}


/* =========================================================
   PLUS ICON
   ========================================================= */

.xnx-faq-icon {
    width: 30px;
    height: 30px;

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

    border: 1px solid
        rgba(231, 173, 36, 0.4);

    border-radius: 50%;

    color: #e7ad24;

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

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   ANSWER
   ========================================================= */

/* Hidden by default */

.xnx-faq-answer {
    display: none;

    width: 100%;

    padding:
        0 75px 28px 95px;
}


/* Answer text */

.xnx-faq-answer p {
    max-width: 800px;

    margin: 0;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(231, 173, 36, 0.12);

    color: #99999f;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   ACTIVE FAQ
   ========================================================= */

.xnx-faq-item.active {
    border-color:
        rgba(231, 173, 36, 0.55);

    background:
        linear-gradient(
            145deg,
            #0d0d0b,
            #15130d
        );

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(231, 173, 36, 0.06);
}


/* Active side line */

.xnx-faq-item.active::before {
    top: 20px;

    height:
        calc(100% - 40px);

    opacity: 1;

    box-shadow:
        0 0 15px rgba(231, 173, 36, 0.5);
}


/* Active number */

.xnx-faq-item.active
.xnx-faq-number {
    color: #e7ad24;
    display: block;
}


/* Active question */

.xnx-faq-item.active
.xnx-faq-question {
    color: #ffffff;
}


/* =========================================================
   SHOW ANSWER
   ========================================================= */

.xnx-faq-item.active
.xnx-faq-answer {
    display: block;

    animation:
        xnxFaqOpen 0.3s ease;
}


/* =========================================================
   ACTIVE PLUS
   ========================================================= */

.xnx-faq-item.active
.xnx-faq-icon {
    transform: rotate(45deg);

    background: #e7ad24;

    color: #050505;

    border-color: #e7ad24;

    box-shadow:
        0 0 18px
        rgba(231, 173, 36, 0.3);
}


/* =========================================================
   ANSWER ANIMATION
   ========================================================= */

@keyframes xnxFaqOpen {

    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


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

@media (max-width: 900px) {

    .xnx-faq-section {
        padding:
            90px 5%
            100px;
    }

    .xnx-faq-header {
        margin-bottom: 50px;
    }

    .xnx-faq-answer {
        padding:
            0 35px 27px 75px;
    }
}


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

@media (max-width: 600px) {

    .xnx-faq-section {
        padding:
            75px 18px
            85px;
    }

    .xnx-faq-header {
        margin-bottom: 40px;
    }

    .xnx-faq-eyebrow {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .xnx-faq-header h2 {
        font-size: 36px;
    }

    .xnx-faq-header p {
        font-size: 14px;
    }

    .xnx-faq-list {
        gap: 10px;
    }

    .xnx-faq-item {
        border-radius: 13px;
    }

    .xnx-faq-question-row {
        grid-template-columns:
            35px
            minmax(0, 1fr)
            30px;

        gap: 10px;

        min-height: 72px;

        padding: 0 18px;
    }

    .xnx-faq-number {
        font-size: 11px;
    }

    .xnx-faq-question {
        font-size: 14px;
        line-height: 1.4;
    }

    .xnx-faq-icon {
        width: 27px;
        height: 27px;

        font-size: 18px;
    }

    .xnx-faq-answer {
        padding:
            0 20px 22px 63px;
    }

    .xnx-faq-answer p {
        padding-top: 17px;

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

    .xnx-faq-item.active::before {
        top: 18px;

        height:
            calc(100% - 36px);
    }
}


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

@media (max-width: 400px) {

    .xnx-faq-section {
        padding:
            65px 14px
            75px;
    }

    .xnx-faq-header h2 {
        font-size: 31px;
    }

    .xnx-faq-header p {
        font-size: 13px;
    }

    .xnx-faq-question-row {
        grid-template-columns:
            28px
            minmax(0, 1fr)
            27px;

        gap: 8px;

        padding: 0 14px;
    }

    .xnx-faq-question {
        font-size: 13px;
    }

    .xnx-faq-icon {
        width: 26px;
        height: 26px;

        font-size: 17px;
    }

    .xnx-faq-answer {
        padding:
            0 15px 20px 50px;
    }

    .xnx-faq-answer p {
        font-size: 12px;
        line-height: 1.7;
    }
}


/* =========================================================
   FAQ FINAL DISPLAY OVERRIDE
   ========================================================= */

.xnx-faq-answer {
    box-sizing: border-box;
}

.xnx-faq-item.active .xnx-faq-answer {
    display: block !important;
}

.xnx-faq-item:not(.active) .xnx-faq-answer {
    display: none !important;
}



/* =========================================================
   ABOUT US
   ========================================================= */
.about-founder {
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 100px 5% 80px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 60px;
    row-gap: 35px;
    align-items: center;
    background: #050507;
    overflow: hidden;
}

.about-title {
    grid-column: 1 / -1;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 0;
}

.about-title h2 {
    flex: 0 0 auto;
    margin: 0;
    color: #d9a227;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 3px;
    white-space: nowrap;
}

.about-title span {
    flex: 1;
    height: 1px;
    max-width: 280px;
    background: linear-gradient(
        90deg,
        transparent,
        #d9a227
    );
}

.about-title span:last-child {
    background: linear-gradient(
        90deg,
        #d9a227,
        transparent
    );
}

.about-founder-image {
    width: 100%;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.founder-image-frame {
    position: relative;
    width: 100%;
    max-width: 620px;
    height: 680px;
    padding: 14px;
    box-sizing: border-box;
    border: 1px solid rgba(217, 162, 39, 0.65);
    background: #080808;
    overflow: hidden;
}

.founder-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.about-founder-content {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 20px 0;
}

.founder-eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    padding: 10px 25px;
    background: #e0a629;
    color: #050505;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
}

.about-founder-content h2 {
    width: 100%;
    margin: 0;
    color: #e2a72c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4.5vw, 72px);
    font-weight: 500;
    line-height: 1.05;
    white-space: nowrap;
}

.founder-line {
    width: 100%;
    height: 1px;
    margin: 20px 0 30px;
    background: linear-gradient(
        90deg,
        #d9a227,
        transparent
    );
}

.about-founder-content p {
    width: 100%;
    max-width: 720px;
    margin: 0 0 24px;
    color: #d0d0d0;
    font-size: 17px;
    line-height: 1.75;
}

.founder-inspiration-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.founder-inspiration-buttons button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 12px 15px;
    box-sizing: border-box;
    background: transparent;
    border: 1px solid #9d7118;
    border-radius: 7px;
    color: #e2aa32;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    cursor: pointer;
    transition: background .25s ease,
                color .25s ease,
                transform .25s ease;
}

.founder-inspiration-buttons button:hover {
    background: #d9a227;
    color: #050505;
    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .about-founder {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto auto;
        padding: 60px 5%;
    }
    .about-founder-image {
        grid-column: 1;
    }
    .about-founder-content {
        grid-column: 1;
    }
    .founder-image-frame {
        max-width: 650px;
        height: 650px;
    }
    .about-founder-content h2 {
        white-space: normal;
    }
}

@media (max-width: 600px) {
    .about-founder {
        padding: 45px 20px 60px;
        column-gap: 0;
        row-gap: 30px;
    }
    .about-title {
        gap: 12px;
    }
    .about-title h2 {
        font-size: 34px;
        letter-spacing: 2px;
    }
    .about-title span {
        max-width: 80px;
    }
    .founder-image-frame {
        height: 500px;
        padding: 10px;
    }
    .about-founder-content h2 {
        font-size: 40px;
    }
    .about-founder-content p {
        font-size: 15px;
    }
    .founder-inspiration-buttons {
        grid-template-columns: 1fr;
    }
}

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

*, *::before, *::after {
    box-sizing: border-box;
}

.inspirations {
    width: 100%;
    max-width: 100%;
    padding: 70px 5% 80px;
    background: radial-gradient(
            circle at 50% 20%,
            rgba(218, 166, 40, 0.05),
            transparent 35%
        ),
        #050505;
    overflow: hidden;
}

.inspirations .section-title {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.inspirations .section-title span {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #d9a227
    );
}

.inspirations .section-title span:last-child {
    background: linear-gradient(
        90deg,
        #d9a227,
        transparent
    );
}

.inspirations .section-title h2 {
    margin: 0;
    color: #e3aa2e;
    font-family: Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 500;
    letter-spacing: 3px;
    white-space: nowrap;
}

.inspirations .cards {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 65px 55px;
}

.inspirations .person-card {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    overflow: visible;
}

.inspirations .person-card > img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    padding: 8px;
    background: #080808;
    border: 1px solid rgba(218, 166, 40, 0.6);
    outline: 1px solid rgba(218, 166, 40, 0.12);
    outline-offset: 5px;
    border-radius: 0;
    transition: transform 0.35s ease,
        box-shadow 0.35s ease;
}

.inspirations .person-card:hover > img {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(218, 166, 40, 0.08);
}

.inspirations .card-body {
    position: relative;
    width: 100%;
    min-width: 0;
    padding: 0 5px 0 20px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.inspirations .card-body::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        #d9a227,
        rgba(217, 162, 39, 0.05)
    );
}

.inspirations .card-body::after {
    content: "01";
    position: absolute;
    right: 5px;
    top: -5px;
    color: rgba(217, 162, 39, 0.18);
    font-family: Georgia,
        "Times New Roman",
        serif;
    font-size: 38px;
    line-height: 1;
}

.inspirations .person-card:nth-child(2)
.card-body::after {
    content: "02";
}

.inspirations .person-card:nth-child(3)
.card-body::after {
    content: "03";
}

.inspirations .person-card:nth-child(4)
.card-body::after {
    content: "04";
}

.inspirations .person-card h3 {
    margin: 0 50px 14px 0;
    color: #e2aa32;
    font-family: Georgia,
        "Times New Roman",
        serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
}

.inspirations .person-card p {
    margin: 0 0 12px;
    color: #c8c8ca;
    font-family: Georgia,
        "Times New Roman",
        serif;
    font-size: 14px;
    line-height: 1.65;
}

.inspirations .person-card blockquote {
    margin: 18px 0 0;
    padding: 13px 0 0;
    border-top: 1px solid
        rgba(218, 166, 40, 0.3);
    color: #d9aa35;
    font-family: Georgia,
        "Times New Roman",
        serif;
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
}

.inspirations .person-card:nth-child(1), .inspirations .person-card:nth-child(2) {
    padding-bottom: 25px;
    border-bottom: 1px solid
        rgba(218, 166, 40, 0.12);
}

@media (max-width: 900px) {
    .inspirations {
        padding: 60px 4% 70px;
    }
    .inspirations .cards {
        gap: 50px 35px;
    }
    .inspirations .person-card h3 {
        font-size: 23px;
    }
    .inspirations .person-card p {
        font-size: 13px;
    }
}

@media (max-width: 650px) {
    .inspirations {
        padding: 50px 20px 65px;
    }
    .inspirations .section-title {
        gap: 12px;
        margin-bottom: 45px;
    }
    .inspirations .section-title h2 {
        font-size: 27px;
        letter-spacing: 2px;
    }
    .inspirations .section-title span {
        max-width: 70px;
    }
    .inspirations .cards {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .inspirations .person-card > img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }
    .inspirations .person-card h3 {
        font-size: 26px;
    }
}


/* =========================================================
   XENORIX CONTACT + JOIN WITH US MODULES
   Inspired by the supplied Xenorix sample's dark/gold language.
   ========================================================= */

.xnx-contact-section,
.xnx-join-section {
    position: relative;
    width: 100%;
    padding: 115px 5% 105px;
    background:
        radial-gradient(circle at 80% 15%, rgba(231,173,36,0.07), transparent 28%),
        #050507;
    overflow: hidden;
}

.xnx-join-section {
    background:
        radial-gradient(circle at 15% 45%, rgba(231,173,36,0.06), transparent 30%),
        #08080b;
    border-top: 1px solid rgba(231,173,36,0.13);
}

.xnx-contact-container,
.xnx-join-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.xnx-section-heading {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.xnx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-family: 'Times New Roman', Times, serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.xnx-eyebrow::before {
    content: "";
    width: 25px;
    height: 1px;
    background: var(--gold);
}

.xnx-section-heading h2,
.xnx-join-copy h2 {
    margin: 16px 0 14px;
    color: #f7f7f8;
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(38px, 4.5vw, 62px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.xnx-section-heading p,
.xnx-join-copy > p {
    color: #9697a1;
    font-size: 16px;
    line-height: 1.8;
}

.xnx-contact-grid,
.xnx-join-container {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 60px;
    align-items: start;
}

.xnx-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.xnx-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border: 1px solid rgba(231,173,36,0.17);
    background: rgba(10,10,14,0.78);
    border-radius: 6px;
    transition: .3s ease;
}

.xnx-info-card:hover {
    border-color: rgba(231,173,36,0.48);
    transform: translateX(5px);
}

.xnx-info-number {
    min-width: 35px;
    color: var(--gold);
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    font-weight: 700;
}

.xnx-info-card strong {
    display: block;
    color: #f3f3f4;
    font-size: 16px;
    margin-bottom: 5px;
}

.xnx-info-card p {
    color: #858691;
    font-size: 13px;
    line-height: 1.55;
}

.xnx-contact-note {
    margin-top: 12px;
    padding: 20px;
    border-left: 2px solid var(--gold);
    background: rgba(231,173,36,0.045);
}

.xnx-contact-note span,
.xnx-form-title span {
    color: var(--gold);
    font-family: 'Times New Roman', Times, serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.xnx-contact-note p {
    margin-top: 7px;
    color: #8d8e98;
    font-size: 12px;
    line-height: 1.6;
}

.xnx-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 30px;
    border: 1px solid rgba(231,173,36,0.18);
    border-radius: 7px;
    background:
        linear-gradient(145deg, rgba(14,14,19,0.96), rgba(7,7,10,0.96));
    box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.xnx-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.xnx-form label {
    display: block;
    margin-bottom: 8px;
    color: #777883;
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.xnx-form input,
.xnx-form select,
.xnx-form textarea {
    width: 100%;
    border: 1px solid rgba(231,173,36,0.18);
    border-radius: 5px;
    outline: none;
    background: #0b0b10;
    color: #f5f5f6;
    padding: 14px 15px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    transition: .25s ease;
}

.xnx-form input::placeholder,
.xnx-form textarea::placeholder {
    color: #5f6069;
}

.xnx-form input:focus,
.xnx-form select:focus,
.xnx-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(231,173,36,0.06);
}

.xnx-form textarea {
    min-height: 130px;
    resize: vertical;
}

.xnx-submit-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border: 0;
    border-radius: 5px;
    padding: 14px 21px;
    cursor: pointer;
    color: #080808;
    background: linear-gradient(135deg, #d99b18, #f7c440);
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    font-weight: 800;
    transition: .3s ease;
}

.xnx-submit-btn span {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #080808;
    color: var(--gold-light);
}

.xnx-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(231,173,36,0.2);
}

.xnx-form-status {
    display: none;
    margin: 0;
    padding: 11px 13px;
    border: 1px solid rgba(231,173,36,0.22);
    background: rgba(231,173,36,0.05);
    color: #d7b657;
    font-size: 13px;
    line-height: 1.5;
}

.xnx-form-status.show {
    display: block;
}

.xnx-join-copy {
    padding-top: 5px;
}

.xnx-join-copy h2 {
    font-size: clamp(38px, 4vw, 56px);
}

.xnx-join-points {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

.xnx-join-points > div {
    display: grid;
    grid-template-columns: 35px 1fr;
    column-gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.xnx-join-points span {
    grid-row: span 2;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}

.xnx-join-points strong {
    color: #eeeeef;
    font-size: 15px;
}

.xnx-join-points small {
    margin-top: 4px;
    color: #7f808a;
    font-size: 12px;
    line-height: 1.5;
}

.xnx-form-title {
    padding-bottom: 4px;
}

.xnx-form-title h3 {
    margin-top: 8px;
    color: #f5f5f6;
    font-family: 'Times New Roman', Times, serif;
    font-size: 28px;
    font-weight: 700;
}

@media (max-width: 950px) {
    .xnx-contact-grid,
    .xnx-join-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .xnx-contact-info {
        max-width: 760px;
    }
}

@media (max-width: 650px) {
    .xnx-contact-section,
    .xnx-join-section {
        padding: 80px 20px;
    }

    .xnx-section-heading {
        margin-bottom: 38px;
    }

    .xnx-form {
        padding: 20px;
    }

    .xnx-form-row {
        grid-template-columns: 1fr;
    }

    .xnx-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .xnx-section-heading h2,
    .xnx-join-copy h2 {
        font-size: 36px;
    }
}


/* =========================================================
   XENORIX BLACK & GOLD FOOTER
   ========================================================= */

.xnx-footer {
    width: 100%;
    padding: 80px 5% 28px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(231, 173, 36, 0.06),
            transparent 30%
        ),
        #050507;

    color: #92939d;

    border-top: 1px solid rgba(231, 173, 36, 0.14);
}


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

.xnx-footer-main {
    width: min(1300px, 100%);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        1fr;

    gap: 65px;
}


/* ================= BRAND ================= */

.xnx-footer-logo {
    display: inline-flex;

    text-decoration: none;

    color: #f5f5f5;

    font-family: 'Times New Roman', serif;

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

    letter-spacing: -1px;

    margin-bottom: 18px;

    transition: 0.3s ease;
}

.xnx-footer-logo span {
    color: #e7ad24;
}

.xnx-footer-logo:hover {
    transform: translateY(-2px);
}


.xnx-footer-brand p {
    max-width: 430px;

    margin: 0;

    color: #898995;

    font-size: 15px;

    line-height: 1.8;
}


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

.xnx-socials {
    display: flex;

    gap: 12px;

    margin-top: 26px;
}

.xnx-socials a {
    width: 46px;
    height: 46px;

    display: flex;

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

    border-radius: 50%;

    background: rgba(231, 173, 36, 0.05);

    border: 1px solid rgba(231, 173, 36, 0.18);

    color: #b9bac2;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}

.xnx-socials a:hover {
    color: #080808;

    background: #e7ad24;

    border-color: #e7ad24;

    transform: translateY(-4px);

    box-shadow:
        0 10px 30px rgba(231, 173, 36, 0.18);
}


/* ================= COLUMN ================= */

.xnx-footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.xnx-footer-column h4 {
    position: relative;

    margin: 3px 0 27px;

    color: #f5f5f5;

    font-family: 'Times New Roman', serif;

    font-size: 20px;

    font-weight: 700;
}


/* Gold line below heading */

.xnx-footer-column h4::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 28px;
    height: 2px;

    background: #e7ad24;
}


/* ================= LINKS ================= */

.xnx-footer-column a,
.xnx-footer-hours {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 16px;

    color: #858691;

    font-size: 14px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.xnx-footer-column a:hover {
    color: #e7ad24;

    transform: translateX(5px);
}


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

.xnx-contact-icon {

    width: 22px;
    min-width: 22px;

    display: inline-flex;

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

    color: #e7ad24;

    font-size: 16px;
}


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

.xnx-footer-contact a:hover {
    transform: translateX(4px);
}

.xnx-footer-hours {
    color: #858691;
}


/* ================= BOTTOM ================= */

.xnx-footer-bottom {

    width: min(1300px, 100%);

    margin: 55px auto 0;

    padding-top: 25px;

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

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: #666771;

    font-size: 13px;
}


/* ================= LEGAL LINKS ================= */

.xnx-footer-legal {

    display: flex;

    align-items: center;

    gap: 28px;
}


.xnx-footer-legal a {

    color: #73747e;

    text-decoration: none;

    transition: 0.25s ease;
}


.xnx-footer-legal a:hover {
    color: #e7ad24;
}


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

@media (max-width: 1050px) {

    .xnx-footer-main {

        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 45px;
    }

    .xnx-footer-brand {
        grid-column: 1 / -1;
    }
}


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

@media (max-width: 700px) {

    .xnx-footer {

        padding: 65px 22px 25px;
    }

    .xnx-footer-main {

        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;
    }

    .xnx-footer-brand {

        grid-column: 1 / -1;
    }

    .xnx-footer-logo {
        font-size: 28px;
    }

    .xnx-footer-column h4 {
        font-size: 18px;
    }

    .xnx-footer-column a,
    .xnx-footer-hours {
        font-size: 13px;
    }

    .xnx-footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        margin-top: 40px;

        gap: 18px;
    }

    .xnx-footer-legal {

        flex-wrap: wrap;

        gap: 12px 20px;
    }
}


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

@media (max-width: 450px) {

    .xnx-footer-main {

        grid-template-columns: 1fr;
    }

    .xnx-footer-brand {

        grid-column: auto;
    }

    .xnx-socials a {

        width: 42px;
        height: 42px;
    }

}



/* Contact */
/* .xnx-contact-section {
    display: none !important;
}  */


/* =========================================================
   FINAL XENORIX RESPONSIVE OVERRIDE
   Handles:
   - Full desktop
   - Half desktop / laptop
   - Tablet
   - Mobile
   - About Us mobile heading clearance
   ========================================================= */

/* Prevent accidental horizontal overflow */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Keep fixed navbar above all page content */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
}

/* ---------------------------------------------------------
   DESKTOP
   --------------------------------------------------------- */
@media (min-width: 1200px) {
    .nav-container {
        width: 92%;
        max-width: 1450px;
        height: 84px;
    }

    .nav-menu {
        display: flex !important;
        align-items: center;
        gap: clamp(24px, 2.7vw, 48px);
        flex: 1 1 auto;
        justify-content: center;
        min-width: 0;
    }

    .nav-button {
        display: flex !important;
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .menu-toggle {
        display: none !important;
    }

    .nav-menu.open {
        display: flex !important;
    }
}

/* ---------------------------------------------------------
   HALF DESKTOP / TABLET
   701px - 1199px
   --------------------------------------------------------- */
@media (min-width: 701px) and (max-width: 1199px) {
    .nav-container {
        width: min(94%, 1100px) !important;
        height: 74px !important;
    }

    .logo img {
        width: 72px !important;
        height: 54px !important;
        object-fit: contain;
    }

    .nav-menu,
    .nav-button {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 52px !important;
        height: 52px !important;
        padding: 0 !important;
        border: 1px solid rgba(231, 173, 36, 0.55) !important;
        border-radius: 14px !important;
        background: rgba(7, 7, 9, 0.94) !important;
        color: var(--gold) !important;
        font-size: 28px !important;
        line-height: 1 !important;
        cursor: pointer;
        z-index: 10001 !important;
        flex: 0 0 auto;
    }

    .nav-menu.open {
        position: absolute !important;
        top: 74px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 5px !important;
        padding: 18px 24px 22px !important;
        background: rgba(5, 5, 7, 0.985) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
        border-bottom: 1px solid rgba(231, 173, 36, 0.25) !important;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45) !important;
        z-index: 10000 !important;
    }

    .nav-menu.open .nav-link {
        width: 100% !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 11px 14px !important;
        text-align: center;
        font-size: 17px !important;
    }
}

/* ---------------------------------------------------------
   MOBILE
   0px - 700px
   --------------------------------------------------------- */
@media (max-width: 700px) {
    .navbar {
        min-height: 75px !important;
    }

    .nav-container {
        width: calc(100% - 28px) !important;
        height: 75px !important;
        margin: 0 auto !important;
    }

    .logo {
        flex: 0 0 auto;
    }

    .logo img {
        width: 70px !important;
        height: 50px !important;
        object-fit: contain;
    }

    .nav-menu,
    .nav-button {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 50px !important;
        height: 50px !important;
        padding: 0 !important;
        border: 1px solid rgba(231, 173, 36, 0.55) !important;
        border-radius: 13px !important;
        background: rgba(7, 7, 9, 0.94) !important;
        color: var(--gold) !important;
        font-size: 27px !important;
        line-height: 1 !important;
        cursor: pointer;
        z-index: 10001 !important;
    }

    .nav-menu.open {
        position: absolute !important;
        top: 75px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 4px !important;
        padding: 12px 14px 16px !important;
        background: rgba(5, 5, 7, 0.985) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
        border-bottom: 1px solid rgba(231, 173, 36, 0.22) !important;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45) !important;
        z-index: 10000 !important;
    }

    .nav-menu.open .nav-link {
        width: 100% !important;
        min-height: 43px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 10px 12px !important;
        border-radius: 9px;
        text-align: center;
        font-size: 16px !important;
    }

    /* Keep main home content clear of the fixed navbar */
    .home {
        padding-top: 92px !important;
    }

    /* About Us: clear the fixed header and keep the title visible */
    .about-founder {
        padding-top: 135px !important;
    }

    .about-title {
        min-width: 0;
        width: 100%;
        gap: 8px !important;
        box-sizing: border-box;
    }

    .about-title h2 {
        max-width: 100%;
        overflow: visible;
        font-size: clamp(28px, 8vw, 34px) !important;
        line-height: 1.15 !important;
        letter-spacing: 1.5px !important;
        white-space: nowrap;
    }

    .about-founder-image,
    .about-founder-content {
        min-width: 0 !important;
        width: 100% !important;
    }

    .founder-image-frame {
        width: 100% !important;
        max-width: 100% !important;
        height: min(112vw, 500px) !important;
        box-sizing: border-box;
    }

    .about-founder-content h2 {
        width: 100% !important;
        max-width: 100% !important;
        font-size: clamp(32px, 9vw, 40px) !important;
        line-height: 1.05 !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
    }

    .about-founder-content p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    /* Keep shared content inside the phone viewport */
    img,
    video,
    iframe,
    svg,
    canvas {
        max-width: 100%;
    }
}

/* ---------------------------------------------------------
   VERY SMALL PHONES
   --------------------------------------------------------- */
@media (max-width: 380px) {
    .nav-container {
        width: calc(100% - 20px) !important;
    }

    .nav-menu.open .nav-link {
        font-size: 15px !important;
    }

    .about-founder {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .about-title h2 {
        font-size: 28px !important;
    }
}
