 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Arial', 'Helvetica Neue', sans-serif;
 }

 body {
     background: #fff;
     overflow-x: hidden;
 }

 /* ========== LOADER ========== */
 #loader {
     position: fixed;
     inset: 0;
     background: #000;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     z-index: 999999;
     transition: opacity 0.8s ease, visibility 0.8s ease;
 }

 .loader-logo img {
     width: 180px;
     filter: brightness(0) invert(1);
 }

 .loading-text {
     color: #fff;
     margin-top: 20px;
     letter-spacing: 4px;
     font-size: 14px;
     font-weight: 300;
 }

 .progress-container {
     width: 280px;
     height: 6px;
     background: #222;
     border-radius: 50px;
     overflow: hidden;
     margin-top: 20px;
 }

 .progress-bar {
     width: 0%;
     height: 100%;
     background: linear-gradient(90deg, #fff, #aaa);
     border-radius: 50px;
 }

 .percent {
     color: #fff;
     margin-top: 15px;
     font-size: 20px;
     font-weight: 700;
 }

 .go-text {
     margin-top: 15px;
     color: #fff;
     display: none;
     font-size: 26px;
     font-weight: bold;
     letter-spacing: 2px;
     background: rgba(255, 255, 255, 0.1);
     padding: 8px 24px;
     border-radius: 60px;
     backdrop-filter: blur(6px);
 }

 /* ========== MAIN PAGE ========== */
 /* .main-page {
     position: fixed;
     top: 100%;
     left: 0;
     width: 100%;
     height: 100vh;
     background: #fff;
     transition: top 1.2s cubic-bezier(0.77, 0, 0.175, 1);
     overflow-y: auto;
     overflow-x: hidden;
 }

 .main-page.active {
     top: 0;
 } */

 /* ========== NAVBAR ========== */
 .navbar {
     position: fixed;
     top: 20px;
     left: 50%;
     transform: translateX(-50%);
     width: 90%;
     max-width: 1300px;
     padding: 16px 22px;
     border-radius: 60px;
     backdrop-filter: blur(16px);
     background: rgba(0, 0, 0, 0.75);
     border: 1px solid rgba(0, 0, 0, 0.08);
     box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
     display: flex;
     justify-content: space-between;
     align-items: center;
     z-index: 1000;
     transition: all 0.3s ease;
 }

 .nav-left,
 .nav-right {
     display: flex;
     align-items: center;
     gap: 32px;
     width: 35%;
 }

 .nav-right {
     justify-content: flex-end;
 }

 .nav-left a,
 .nav-right a {
     text-decoration: none;
     color: #fbfbfb;
     font-size: 15px;
     font-weight: 700;
     letter-spacing: 0.3px;
     transition: 0.2s;
     position: relative;
 }

 .nav-left a::after,
 .nav-right a::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: -5px;
     width: 0%;
     height: 2px;
     background: #000;
     transition: 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
 }

 .nav-left a:hover::after,
 .nav-right a:hover::after {
     width: 100%;
 }

 .center-logo img {
     width: 110px;
     display: block;
 }

 /* ========== MENU BUTTON (BURGER) ========== */
 .menu-btn {
     position: fixed;
     top: 28px;
     right: 28px;
     width: 58px;
     height: 58px;
     border-radius: 50%;
     background: #000;
     color: #fff;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     z-index: 99999;
     font-size: 26px;
     box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
     transition: transform 0.2s, background 0.2s;
 }

 .menu-btn:hover {
     transform: scale(1.05);
     background: #1a1a1a;
 }

 /* ========== FULL MENU (BEAST CLAW) ========== */
 .full-menu {
     position: fixed;
     inset: 0;
     background: #000000e6;
     backdrop-filter: blur(12px);
     clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
     z-index: 9998;
     overflow: hidden;
     pointer-events: none;
     transition: backdrop-filter 0.5s;
 }

 .full-menu.active {
     pointer-events: all;
 }

 /* ========== CLAW BACKGROUND (BEAST SCRATCH) ========== */
 .claw-bg {
     position: absolute;
     inset: 0;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 40px;
     z-index: 2;
     opacity: 0;
     pointer-events: none;
 }

 .claw {
     width: 130px;
     height: 80vh;
     background: linear-gradient(145deg, #ffffff, #e0e0e0);
     clip-path: polygon(50% 0%, 62% 5%, 78% 15%, 70% 25%, 88% 40%,
             72% 55%, 90% 70%, 74% 82%, 84% 100%,
             50% 92%, 20% 100%, 28% 82%, 10% 70%,
             25% 55%, 8% 40%, 28% 25%, 20% 15%, 35% 5%);
     filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.7));
     transform: scaleY(0) rotate(0deg);
     opacity: 0;
 }

 /* individual claw variations for organic look */
 .claw:nth-child(1) {
     transform-origin: top center;
 }

 .claw:nth-child(2) {
     transform-origin: top center;
     width: 115px;
 }

 .claw:nth-child(3) {
     transform-origin: top center;
     width: 125px;
 }

 .claw:nth-child(4) {
     transform-origin: top center;
     width: 110px;
 }

 .menu-overlay {
     position: absolute;
     inset: 0;
     background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2), #000000 85%);
     z-index: 1;
     pointer-events: none;
 }

 /* ========== CLOSE BUTTON ========== */
 .close-btn {
     position: absolute;
     top: 30px;
     right: 30px;
     width: 62px;
     height: 62px;
     border-radius: 50%;
     background: #fff;
     color: #000;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     z-index: 99999;
     font-size: 30px;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
     transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
 }

 .close-btn:hover {
     transform: rotate(180deg) scale(1.08);
 }

 /* ========== MENU LINKS ========== */
 .menu-content {
     position: relative;
     z-index: 20;
     width: 100%;
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     gap: 28px;
 }

 .menu-content a {
     text-decoration: none;
     color: #fff;
     font-size: clamp(40px, 8vw, 90px);
     font-weight: 900;
     letter-spacing: 4px;
     transition: all 0.3s;
     opacity: 0;
     transform: translateY(80px);
     text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
 }

 .menu-content a:hover {
     letter-spacing: 12px;
     transform: scale(1.05);
     color: #f5f5f5;
 }

 /* ========== HERO SECTION ========== */
 .hero {
     position: relative;
     width: 100%;
     height: 100vh;
     overflow: hidden;
     background: #ececec;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 /* ========================= */
 /* HUGE TITLE */
 /* ========================= */

 .hero-title {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     font-size: 12vw;
     line-height: 0.9;
     font-weight: 900;
     color: #0d0d11;
     text-align: center;
     z-index: 1;
     pointer-events: none;
     letter-spacing: -10px;
 }

 /* ========================= */
 /* 3D OBJECT */
 /* ========================= */

 .hero-object {
     top: 20%;
     right: 10%;
     position: relative;
     z-index: 5;
     width: 600px;
     transition: transform 0.15s linear;
     transform-style: preserve-3d;
     will-change: transform;
 }

 .hero-object img {
     width: 60%;
     filter:
         drop-shadow(0 40px 60px rgba(0, 0, 0, 0.25));
 }

 /* ========================= */
 /* LEFT INFO */
 /* ========================= */

 .hero-left {
     position: absolute;
     left: 50px;
     bottom: 40px;
     z-index: 20;
 }

 .line {
     width: 35px;
     height: 3px;
     background: red;
     margin-bottom: 20px;
 }

 .hero-left h2 {
     font-size: 28px;
     font-weight: 900;
     color: #111;
 }

 .hero-left p {
     font-size: 18px;
     color: #222;
     margin-top: 5px;
 }

 /* PLAY BOX */

 .play-box {
     position: relative;
     width: 280px;
     margin-top: 25px;
     overflow: hidden;
 }

 .play-box img {
     width: 100%;
     display: block;
 }

 .play-btn {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 75px;
     height: 75px;
     border-radius: 50%;
     background: #fff;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     font-size: 22px;
     color: red;
 }

 /* ========================= */
 /* RIGHT INFO */
 /* ========================= */

 .hero-right {
     position: absolute;
     right: 40px;
     top: 50%;
     transform: translateY(-50%);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 30px;
     z-index: 20;
 }

 .hero-right span {
     writing-mode: vertical-rl;
     font-size: 15px;
     font-weight: 700;
     letter-spacing: 2px;
 }

 .social-line {
     width: 3px;
     height: 40px;
     background: red;
 }

 .socials {
     display: flex;
     flex-direction: column;
     gap: 25px;
     font-size: 28px;
     cursor: pointer;
 }

 /* ========================= */
 /* SOUND BUTTON */
 /* ========================= */

 .sound-btn {
     position: absolute;
     right: 40px;
     bottom: 30px;
     width: 65px;
     height: 65px;
     border-radius: 50%;
     border: 2px solid rgba(0, 0, 0, 0.2);
     display: flex;
     justify-content: center;
     align-items: flex-end;
     gap: 4px;
     padding-bottom: 18px;
 }

 .sound-btn div {
     width: 4px;
     background: red;
     animation: sound 1s infinite alternate;
 }

 .sound-btn div:nth-child(1) {
     height: 8px;
 }

 .sound-btn div:nth-child(2) {
     height: 14px;
     animation-delay: 0.2s;
 }

 .sound-btn div:nth-child(3) {
     height: 10px;
     animation-delay: 0.4s;
 }

 .sound-btn div:nth-child(4) {
     height: 16px;
     animation-delay: 0.6s;
 }

 @keyframes sound {

     from {
         transform: scaleY(0.5);
     }

     to {
         transform: scaleY(1.2);
     }

 }

 /* ========================= */
 /* RESPONSIVE */
 /* ========================= */

 @media(max-width:1100px) {

     .hero-object {
         width: 400px;
     }

 }

 @media(max-width:768px) {

     .hero-title {
         font-size: 20vw;
         letter-spacing: -3px;
     }

     .hero-object {
         width: 120%;
     }

     .hero-left {
         left: 20px;
         bottom: 20px;
     }

     .hero-left h2 {
         font-size: 22px;
     }

     .play-box {
         width: 180px;
     }

     .hero-right {
         right: 15px;
     }

     .socials {
         font-size: 20px;
     }

 }


 /* ========== RESPONSIVE ========== */
 @media (max-width: 900px) {

     .nav-left,
     .nav-right {
         display: none;
     }

     .navbar {
         justify-content: center;
         background: rgba(255, 255, 255, 0.85);
         width: 88%;
         padding: 12px 18px;
     }

     .center-logo img {
         width: 88px;
     }

     .menu-btn {
         top: 20px;
         right: 20px;
         width: 50px;
         height: 50px;
         font-size: 22px;
     }

     .close-btn {
         top: 22px;
         right: 22px;
         width: 52px;
         height: 52px;
         font-size: 24px;
     }

     .claw-bg {
         gap: 12px;
     }

     .claw {
         width: 70px;
         height: 70vh;
     }

     .claw:nth-child(2) {
         width: 65px;
     }

     .claw:nth-child(3) {
         width: 72px;
     }

     .claw:nth-child(4) {
         width: 62px;
     }

     .menu-content a {
         font-size: 36px;
         letter-spacing: 2px;
     }

     .menu-content a:hover {
         letter-spacing: 6px;
     }
 }

 @media (max-width: 550px) {
     .claw-bg {
         gap: 6px;
     }

     .claw {
         width: 48px;
         height: 65vh;
     }

     .menu-content a {
         font-size: 28px;
     }
 }

 .about-brand {
     position: relative;
     width: 100%;
     min-height: 120vh;
     background: #efefef;
     overflow: hidden;
     padding: 120px 0;
 }

 /* ========================= */
 /* HUGE TEXT */
 /* ========================= */

 .bg-text {
     position: absolute;
     top: -20px;
     left: -20px;
     font-size: 14vw;
     line-height: 0.85;
     font-weight: 900;
     color: #0b0b10;
     z-index: 1;
     pointer-events: none;
     letter-spacing: -10px;
 }

 /* ========================= */
 /* LEFT CONTENT */
 /* ========================= */

 .about-content {
     position: relative;
     z-index: 10;
     width: 420px;
     margin-left: 20%;
     padding-top: 260px;
 }

 .small-line {
     width: 40px;
     height: 3px;
     background: #ff0000;
     margin-bottom: 25px;
 }

 .mini-title {
     display: block;
     font-size: 13px;
     letter-spacing: 4px;
     font-weight: 700;
     color: #555;
     margin-bottom: 25px;
 }

 .about-content p {
     font-size: 20px;
     line-height: 1.9;
     color: #1a1a1a;
     margin-bottom: 25px;
 }

 .highlight {
     font-weight: 900;
     font-size: 24px;
     color: #000;
 }

 /* ========================= */
 /* PRODUCT */
 /* ========================= */

 .about-product {
     position: absolute;
     left: 8%;
     bottom: 50px;
     z-index: 15;
     width: 750px;
     transform-style: preserve-3d;
     transition: 0.15s linear;
 }

 .about-product img {
     width: 100%;
     filter:
         drop-shadow(0 40px 60px rgba(0, 0, 0, 0.25));
 }

 /* ========================= */
 /* VIDEO */
 /* ========================= */

 .about-video {
     position: absolute;
     right: 0;
     bottom: 0;
     width: 45%;
     height: 480px;
     overflow: hidden;
     z-index: 12;
 }

 .about-video img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: 1s;
 }

 .about-video:hover img {
     transform: scale(1.08);
 }

 .video-dark {
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.25);
 }

 .play-btn {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 90px;
     height: 90px;
     border-radius: 50%;
     background: #fff;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     font-size: 28px;
     color: #ff0000;
     z-index: 20;
     transition: 0.4s;
 }

 .play-btn:hover {
     transform: translate(-50%, -50%) scale(1.12);
 }

 /* ========================= */
 /* RESPONSIVE */
 /* ========================= */

 @media(max-width:1400px) {

     .about-product {
         width: 600px;
     }

 }

 @media(max-width:1100px) {

     .bg-text {
         font-size: 22vw;
     }

     .about-content {
         margin-left: 10%;
         width: 80%;
         padding-top: 180px;
     }

     .about-product {
         position: relative;
         width: 85%;
         left: auto;
         bottom: auto;
         margin: 80px auto;
     }

     .about-video {
         position: relative;
         width: 100%;
         height: 420px;
         margin-top: 40px;
     }

 }

 @media(max-width:768px) {

     .bg-text {
         font-size: 24vw;
         top: 0;
         letter-spacing: -3px;
     }

     .about-content {
         padding-top: 120px;
     }

     .about-content p {
         font-size: 17px;
     }

     .highlight {
         font-size: 20px;
     }

     .about-video {
         height: 300px;
     }

     .play-btn {
         width: 70px;
         height: 70px;
         font-size: 20px;
     }

 }

 /* ========================= */
 /* SECTION */
 /* ========================= */

 .sale-tape-section {
     position: relative;
     width: 100%;
     height: 350px;
     background: #efefef;
     overflow: hidden;

     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;

     gap: 45px;
 }

 /* ========================= */
 /* TAPE */
 /* ========================= */

 .tape {
     position: relative;
     width: 150%;
     left: -15%;
     height: 90px;

     overflow: hidden;

     display: flex;
     align-items: center;

     background:
         repeating-linear-gradient(-45deg,
             #000 0px,
             #000 18px,
             #ffd500 18px,
             #ffd500 36px);

     box-shadow:
         0 15px 40px rgba(0, 0, 0, 0.15);
 }

 /* ROTATION */

 .tape-one {
     transform: rotate(-4deg);
 }

 .tape-two {
     transform: rotate(4deg);
 }

 /* ========================= */
 /* TRACK */
 /* ========================= */

 .tape-track {
     display: flex;
     align-items: center;
     gap: 90px;
     white-space: nowrap;

     will-change: transform;
 }

 /* ========================= */
 /* TEXT */
 /* ========================= */

 .tape-track span {
     flex-shrink: 0;

     font-size: 58px;
     font-weight: 900;
     letter-spacing: 2px;

     color: #000;
     background: #ffe100;

     padding: 10px 35px;

     text-transform: uppercase;
 }

 /* ========================= */
 /* RESPONSIVE */
 /* ========================= */

 @media(max-width:768px) {

     .sale-tape-section {
         height: 240px;
     }

     .tape {
         height: 65px;
     }

     .tape-track span {
         font-size: 30px;
         padding: 8px 20px;
     }

 }


 /* ========================= */
 /* PRODUCTS SECTION */
 /* ========================= */

 .products-section {
     position: relative;
     width: 100%;
     min-height: 120vh;
     background: #efefef;
     overflow: hidden;
     padding: 180px 0 120px;
 }

 /* ========================= */
 /* HUGE TEXT */
 /* ========================= */

 .products-bg-text {
     position: absolute;
     top: -10px;
     left: -20px;

     font-size: 14vw;
     line-height: 0.85;
     font-weight: 900;
     letter-spacing: -8px;

     color: #0d0d11;

     pointer-events: none;
     z-index: 1;
 }

 /* ========================= */
 /* TRACK */
 /* ========================= */

 .products-track {
     position: relative;
     z-index: 10;

     display: flex;
     align-items: flex-start;
     gap: 40px;

     width: max-content;

     padding-left: 240px;

     will-change: transform;
 }

 /* ========================= */
 /* PRODUCT CARD */
 /* ========================= */

 .product-card {
     width: 650px;
     flex-shrink: 0;
 }

 /* ========================= */
 /* IMAGE */
 /* ========================= */

 .product-image {
     position: relative;
     width: 100%;
     height: 720px;
     overflow: hidden;
     background: #ddd;
 }

 .product-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;

     transition: 1s;
 }

 .product-card:hover img {
     transform: scale(1.08);
 }

 /* ========================= */
 /* INFO */
 /* ========================= */

 .product-info {
     margin-top: 22px;
 }

 .product-info h2 {
     font-size: 72px;
     line-height: 0.9;
     font-weight: 900;
     color: #111;
 }

 .product-info span {
     display: block;
     margin-top: 10px;

     font-size: 20px;
     font-weight: 700;
     color: #444;

     letter-spacing: 1px;
 }

 /* ========================= */
 /* RESPONSIVE */
 /* ========================= */

 @media(max-width:1400px) {

     .product-card {
         width: 520px;
     }

     .product-image {
         height: 600px;
     }

 }

 @media(max-width:992px) {

     .products-bg-text {
         font-size: 20vw;
     }

     .products-track {
         padding-left: 120px;
     }

     .product-card {
         width: 420px;
     }

     .product-image {
         height: 500px;
     }

     .product-info h2 {
         font-size: 54px;
     }

 }

 @media(max-width:768px) {

     .products-section {
         padding-top: 120px;
     }

     .products-track {
         padding-left: 40px;
         gap: 20px;
     }

     .product-card {
         width: 300px;
     }

     .product-image {
         height: 380px;
     }

     .product-info h2 {
         font-size: 38px;
     }

     .product-info span {
         font-size: 16px;
     }

 }


 /* ========================= */
 /* MINDSET SECTION */
 /* ========================= */

 .mindset-section {
     position: relative;
     width: 100%;
     min-height: 120vh;
     overflow: hidden;

     display: flex;
     justify-content: center;
     align-items: center;

     background: #070707;
 }

 /* ========================= */
 /* BACKGROUND */
 /* ========================= */

 .mindset-bg {
     position: absolute;
     inset: 0;

     background:
         linear-gradient(rgba(0, 0, 0, 0.7),
             rgba(0, 0, 0, 0.8)),
         url("gym-bg.jpg");

     background-size: cover;
     background-position: center;

     transform: scale(1.1);
 }

 /* ========================= */
 /* OVERLAY */
 /* ========================= */

 .mindset-overlay {
     position: absolute;
     inset: 0;

     background:
         radial-gradient(circle at center,
             rgba(255, 255, 255, 0.04),
             transparent 70%);

     z-index: 2;
 }

 /* ========================= */
 /* MAIN TEXT */
 /* ========================= */

 .mindset-text {
     position: relative;
     z-index: 10;

     width: 90%;
     max-width: 1500px;
 }

 .mindset-text h1 {
     font-size: 7vw;
     line-height: 1.08;
     font-weight: 400;
     color: #f2f2f2;
     text-align: center;
 }

 /* HIGHLIGHT */

 .mindset-text span {
     color: #c8ff00;
 }

 /* ========================= */
 /* FLOATING IMAGES */
 /* ========================= */

 .floating-img {
     position: absolute;
     z-index: 15;

     width: 220px;
     object-fit: cover;

     box-shadow:
         0 25px 50px rgba(0, 0, 0, 0.4);

     transition: 0.5s;
 }

 /* IMAGE POSITIONS */

 .img-1 {
     top: 14%;
     left: 14%;
     transform: rotate(-8deg);
 }

 .img-2 {
     top: 12%;
     right: 18%;
     transform: rotate(7deg);
 }

 .img-3 {
     top: 45%;
     right: 10%;
     transform: rotate(-5deg);
 }

 .img-4 {
     bottom: 12%;
     left: 22%;
     transform: rotate(8deg);
 }

 .img-5 {
     bottom: 10%;
     right: 25%;
     transform: rotate(-10deg);
 }

 /* HOVER */

 .floating-img:hover {
     transform: scale(1.08) rotate(0deg);
 }

 /* ========================= */
 /* GREEN GLOW */
 /* ========================= */

 .green-glow {
     position: absolute;
     left: -150px;
     bottom: -150px;

     width: 420px;
     height: 420px;

     border-radius: 50%;

     background:
         radial-gradient(circle,
             rgba(162, 255, 0, 0.8),
             transparent 70%);

     filter: blur(70px);

     z-index: 1;
 }

 /* ========================= */
 /* PARALLAX FEEL */
 /* ========================= */

 .mindset-section:hover .img-1 {
     transform: translateY(-10px) rotate(-5deg);
 }

 .mindset-section:hover .img-2 {
     transform: translateY(10px) rotate(5deg);
 }

 .mindset-section:hover .img-3 {
     transform: translateY(-15px) rotate(-2deg);
 }

 .mindset-section:hover .img-4 {
     transform: translateY(10px) rotate(4deg);
 }

 .mindset-section:hover .img-5 {
     transform: translateY(-12px) rotate(-4deg);
 }

 /* ========================= */
 /* RESPONSIVE */
 /* ========================= */

 @media(max-width:1200px) {

     .mindset-text h1 {
         font-size: 9vw;
     }

     .floating-img {
         width: 170px;
     }

 }

 @media(max-width:768px) {

     .mindset-section {
         min-height: 100vh;
         padding: 120px 0;
     }

     .mindset-text h1 {
         font-size: 13vw;
         line-height: 1.2;
     }

     .floating-img {
         width: 110px;
     }

     .img-1 {
         left: 5%;
     }

     .img-2 {
         right: 5%;
     }

     .img-3 {
         right: 2%;
     }

     .img-4 {
         left: 8%;
     }

     .img-5 {
         right: 15%;
     }

 }

 /* ========================= */
 /* GHOST SECTION */
 /* ========================= */

 .ghost-section {
     position: relative;
     width: 100%;
     min-height: 100vh;
     overflow: hidden;
     background: #efefef;

     display: flex;
     justify-content: center;
     align-items: center;
 }

 /* ========================= */
 /* HUGE TEXT */
 /* ========================= */

 .ghost-bg-text {
     position: relative;
     z-index: 1;

     font-size: 15vw;
     line-height: 0.85;

     font-weight: 900;
     letter-spacing: -10px;

     color: #0b0b10;

     text-align: center;

     pointer-events: none;
 }

 /* ========================= */
 /* SMALL OG */
 /* ========================= */

 .ghost-tag {
     position: absolute;
     top: 22%;
     left: 35%;

     font-size: 3vw;
     font-weight: 900;

     color: #111;

     z-index: 10;
 }

 /* ========================= */
 /* CHARACTER */
 /* ========================= */

 .ghost-character {
     position: absolute;

     width: 520px;

     z-index: 20;

     transform-style: preserve-3d;

     transition:
         transform 0.12s linear;
 }

 .ghost-character img {
     width: 100%;

     filter:
         drop-shadow(0 0 25px rgba(115, 255, 0, 0.8)) drop-shadow(0 0 60px rgba(115, 255, 0, 0.4));

     user-select: none;
     pointer-events: none;
 }

 /* ========================= */
 /* GLOW */
 /* ========================= */

 .ghost-character::before {
     content: "";

     position: absolute;

     inset: 0;

     background:
         radial-gradient(circle,
             rgba(132, 255, 0, 0.4),
             transparent 70%);

     filter: blur(80px);

     z-index: -1;
 }

 /* ========================= */
 /* BOTTOM LINE */
 /* ========================= */

 .ghost-line {
     position: absolute;

     bottom: 40px;
     left: 50%;

     transform: translateX(-50%);

     width: 75%;
     height: 2px;

     background: #111;

     opacity: 0.7;
 }

 /* ========================= */
 /* FLOAT ANIMATION */
 /* ========================= */

 @keyframes floatGhost {

     0% {
         transform:
             translateY(0px);
     }

     50% {
         transform:
             translateY(-18px);
     }

     100% {
         transform:
             translateY(0px);
     }

 }

 .ghost-character {
     animation:
         floatGhost 4s ease-in-out infinite;
 }

 /* ========================= */
 /* RESPONSIVE */
 /* ========================= */

 @media(max-width:1200px) {

     .ghost-character {
         width: 380px;
     }

 }

 @media(max-width:768px) {

     .ghost-section {
         min-height: 80vh;
     }

     .ghost-bg-text {
         font-size: 22vw;
         letter-spacing: -4px;
     }

     .ghost-character {
         width: 240px;
     }

     .ghost-tag {
         font-size: 8vw;
         left: 18%;
         top: 28%;
     }

 }




 /* ========================= */
 /* SECTION */
 /* ========================= */

 .supplements-list-section {
     position: relative;
     width: 100%;
     min-height: 120vh;

     background: #efefef;

     overflow: hidden;

     padding: 120px 0;
 }

 /* ========================= */
 /* WRAPPER */
 /* ========================= */

 .supplements-wrapper {
     position: relative;
     width: 75%;
     margin: auto;
     z-index: 10;
 }

 /* ========================= */
 /* ITEM */
 /* ========================= */

 .supplement-item {
     position: relative;

     width: 100%;
     padding: 45px 0;

     border-top: 2px solid #1a1a1a;

     display: flex;
     justify-content: space-between;
     align-items: center;

     cursor: pointer;
 }

 .supplement-item:last-child {
     border-bottom: 2px solid #1a1a1a;
 }

 /* ========================= */
 /* TITLE */
 /* ========================= */

 .supplement-item h2 {
     font-size: 8vw;
     line-height: 0.9;

     font-weight: 900;
     letter-spacing: -5px;

     color: #0d0d11;

     transition: 0.4s;
 }

 /* HOVER */

 .supplement-item:hover h2 {
     transform: translateX(40px);
     opacity: 0.9;
 }

 /* ========================= */
 /* NUMBER */
 /* ========================= */

 .number {
     width: 85px;
     height: 85px;

     border: 2px solid #111;
     border-radius: 50%;

     display: flex;
     justify-content: center;
     align-items: center;

     font-size: 32px;
     font-weight: 900;

     color: #111;

     transition: 0.4s;
 }

 .supplement-item:hover .number {
     background: #111;
     color: #fff;
     transform: scale(1.1);
 }

 /* ========================= */
 /* FLOATING IMAGE */
 /* ========================= */

 .floating-preview {
     position: fixed;

     top: 50%;
     left: 50%;

     transform:
         translate(-50%, -50%);

     width: 420px;
     height: 520px;

     pointer-events: none;

     z-index: 999;

     opacity: 0;

     transition:
         opacity 0.3s ease;
 }

 /* IMAGE */

 .floating-preview img {
     width: 100%;
     height: 100%;

     object-fit: cover;

     box-shadow:
         0 25px 80px rgba(0, 0, 0, 0.25);

     transform:
         scale(0.9);

     transition: 0.4s;
 }

 /* ACTIVE */

 .floating-preview.active {
     opacity: 1;
 }

 .floating-preview.active img {
     transform: scale(1);
 }

 /* ========================= */
 /* RESPONSIVE */
 /* ========================= */

 @media(max-width:1200px) {

     .supplement-item h2 {
         font-size: 10vw;
     }

 }

 @media(max-width:768px) {

     .supplements-wrapper {
         width: 90%;
     }

     .supplement-item {
         padding: 35px 0;
     }

     .supplement-item h2 {
         font-size: 14vw;
         letter-spacing: -2px;
     }

     .number {
         width: 60px;
         height: 60px;
         font-size: 22px;
     }

     .floating-preview {
         width: 220px;
         height: 300px;
     }

 }


 /* ========================= */
 /* FEATURED SECTION */
 /* ========================= */

 .featured-supplement-section {
     position: relative;

     width: 100%;
     min-height: 100vh;

     overflow: hidden;

     background: #efefef;

     display: flex;
     justify-content: space-between;
     align-items: center;

     padding: 0 8%;
 }

 /* ========================= */
 /* LEFT */
 /* ========================= */

 .featured-left {
     position: relative;
     z-index: 10;

     width: 35%;
 }

 /* TAG */

 .feature-tag {
     display: block;

     font-size: 16px;
     letter-spacing: 3px;
     font-weight: 700;

     color: #111;

     margin-bottom: 25px;
 }

 /* TITLE */

 .featured-left h1 {
     font-size: 8vw;
     line-height: 0.88;

     font-weight: 900;
     letter-spacing: -5px;

     color: #0d0d11;
 }

 /* ========================= */
 /* BUTTONS */
 /* ========================= */

 .feature-buttons {
     display: flex;
     gap: 18px;

     margin-top: 50px;
 }

 .feature-buttons button {
     width: 90px;
     height: 90px;

     border-radius: 50%;

     border: 2px solid rgba(0, 0, 0, 0.2);

     background: transparent;

     font-size: 28px;
     color: #ff0000;

     cursor: pointer;

     transition: 0.4s;
 }

 .feature-buttons button:hover {
     background: #111;
     color: #fff;

     transform: scale(1.08);
 }

 /* ========================= */
 /* MAIN PRODUCT */
 /* ========================= */

 .featured-product {
     position: absolute;

     right: 10%;
     top: 50%;

     transform: translateY(-50%);

     width: 950px;

     z-index: 5;

     transition: 0.15s linear;

     transform-style: preserve-3d;
 }

 .featured-product img {
     width: 100%;

     filter:
         drop-shadow(0 35px 70px rgba(0, 0, 0, 0.25));
 }

 /* ========================= */
 /* SMALL PREVIEW */
 /* ========================= */

 .featured-preview {
     position: absolute;

     right: 8%;
     bottom: 8%;

     width: 520px;
     height: 320px;

     overflow: hidden;

     z-index: 15;

     box-shadow:
         0 25px 50px rgba(0, 0, 0, 0.18);
 }

 .featured-preview img {
     width: 100%;
     height: 100%;

     object-fit: cover;

     transition: 1s;
 }

 .featured-preview:hover img {
     transform: scale(1.08);
 }

 /* ========================= */
 /* RESPONSIVE */
 /* ========================= */

 @media(max-width:1400px) {

     .featured-product {
         width: 750px;
     }

     .featured-preview {
         width: 420px;
         height: 260px;
     }

 }

 @media(max-width:1100px) {

     .featured-supplement-section {
         flex-direction: column;
         justify-content: center;

         padding: 120px 5%;
     }

     .featured-left {
         width: 100%;
         z-index: 20;
     }

     .featured-left h1 {
         font-size: 14vw;
     }

     .featured-product {
         position: relative;

         width: 90%;

         right: auto;
         top: auto;

         transform: none;

         margin-top: 60px;
     }

     .featured-preview {
         position: relative;

         right: auto;
         bottom: auto;

         width: 100%;
         height: 320px;

         margin-top: 40px;
     }

 }

 @media(max-width:768px) {

     .feature-buttons button {
         width: 70px;
         height: 70px;

         font-size: 20px;
     }

     .featured-preview {
         height: 220px;
     }

 }


 /* ========================= */
 /* SECTION */
 /* ========================= */

 .influencers-section {
     position: relative;

     width: 100%;
     min-height: 130vh;

     background: #0b0b10;

     overflow: hidden;

     padding: 140px 7%;
 }

 /* ========================= */
 /* BG TEXT */
 /* ========================= */

 .influencers-bg {
     position: absolute;

     top: -40px;
     left: 0;

     font-size: 18vw;
     line-height: 0.8;

     font-weight: 900;
     letter-spacing: -10px;

     color: rgba(255, 255, 255, 0.03);

     pointer-events: none;
 }

 /* ========================= */
 /* HEADING */
 /* ========================= */

 .influencers-heading {
     position: relative;
     z-index: 10;

     margin-bottom: 80px;
 }

 .influencers-heading span {
     display: block;

     color: #9cff00;

     letter-spacing: 4px;
     font-size: 14px;
     font-weight: 700;

     margin-bottom: 25px;
 }

 .influencers-heading h2 {
     font-size: 7vw;
     line-height: 0.9;

     font-weight: 900;

     color: #fff;
 }

 /* ========================= */
 /* GRID */
 /* ========================= */

 .influencers-grid {
     position: relative;
     z-index: 10;

     display: grid;

     grid-template-columns:
         repeat(2, 1fr);

     gap: 35px;
 }

 /* ========================= */
 /* CARD */
 /* ========================= */

 .influencer-card {
     position: relative;

     overflow: hidden;

     background: #111;

     border-radius: 30px;

     min-height: 500px;

     transition: 0.5s;

     cursor: pointer;
 }

 /* LARGE CARD */

 .large {
     transform: translateY(80px);
 }

 /* HOVER */

 .influencer-card:hover {
     transform:
         translateY(-10px) scale(1.02);
 }

 /* ========================= */
 /* IMAGE */
 /* ========================= */

 .card-image {
     position: relative;

     width: 100%;
     height: 100%;

     overflow: hidden;
 }

 .card-image img {
     width: 100%;
     height: 100%;

     object-fit: cover;

     transition: 1s;
 }

 .influencer-card:hover img {
     transform: scale(1.08);
 }

 /* DARK OVERLAY */

 .card-image::after {
     content: "";

     position: absolute;
     inset: 0;

     background:
         linear-gradient(transparent,
             rgba(0, 0, 0, 0.85));
 }

 /* ========================= */
 /* CONTENT */
 /* ========================= */

 .card-content {
     position: absolute;

     left: 35px;
     bottom: 35px;

     z-index: 10;
 }

 /* NAME */

 .card-content h3 {
     font-size: 3vw;
     line-height: 1;

     font-weight: 900;

     color: #fff;

     margin-bottom: 20px;
 }

 /* ========================= */
 /* TAGS */
 /* ========================= */

 .tags {
     display: flex;
     flex-wrap: wrap;

     gap: 12px;
 }

 .tags span {
     padding: 12px 18px;

     border-radius: 50px;

     background:
         rgba(255, 255, 255, 0.08);

     backdrop-filter: blur(10px);

     border:
         1px solid rgba(255, 255, 255, 0.1);

     font-size: 13px;
     letter-spacing: 1px;
     font-weight: 700;

     color: #fff;
 }

 /* ========================= */
 /* RESPONSIVE */
 /* ========================= */

 @media(max-width:1100px) {

     .influencers-grid {
         grid-template-columns: 1fr;
     }

     .large {
         transform: none;
     }

     .card-content h3 {
         font-size: 8vw;
     }

 }

 @media(max-width:768px) {

     .influencers-section {
         padding: 120px 5%;
     }

     .influencers-bg {
         font-size: 28vw;
     }

     .influencers-heading h2 {
         font-size: 14vw;
     }

     .influencer-card {
         min-height: 420px;
         border-radius: 20px;
     }

     .card-content {
         left: 20px;
         bottom: 20px;
     }

     .tags span {
         padding: 10px 14px;
         font-size: 11px;
     }

 }



 /* ========================= */
 /* FOOTER */
 /* ========================= */

 .final-footer {
     position: relative;

     width: 100%;
     min-height: 100vh;

     overflow: hidden;

     display: flex;
     justify-content: center;
     align-items: center;

     background: #050505;
 }

 /* ========================= */
 /* BACKGROUND */
 /* ========================= */

 .footer-bg {
     position: absolute;
     inset: 0;
 }

 .footer-bg img {
     width: 100%;
     height: 100%;

     object-fit: cover;

     transform: scale(1.08);
 }

 /* ========================= */
 /* OVERLAY */
 /* ========================= */

 .footer-overlay {
     position: absolute;
     inset: 0;

     background:
         linear-gradient(rgba(0, 0, 0, 0.55),
             rgba(0, 0, 0, 0.82));

     z-index: 2;
 }

 /* ========================= */
 /* NOISE */
 /* ========================= */

 .footer-noise {
     position: absolute;
     inset: 0;

     opacity: 0.05;

     background-image:
         radial-gradient(#fff 1px, transparent 1px);

     background-size: 4px 4px;

     z-index: 3;
 }

 /* ========================= */
 /* CONTENT */
 /* ========================= */

 .footer-content {
     position: relative;
     z-index: 10;

     width: 90%;
     max-width: 1500px;

     text-align: center;
 }

 /* YEAR */

 .footer-year {
     display: block;

     font-size: 18px;
     letter-spacing: 5px;
     font-weight: 700;

     color: #fff;

     margin-bottom: 35px;
 }

 /* TITLE */

 .footer-content h1 {
     font-size: 7vw;
     line-height: 1.02;

     font-weight: 900;

     color: #fff;

     text-transform: none;
 }

 /* ========================= */
 /* LINE */
 /* ========================= */

 .footer-line {
     width: 100%;
     max-width: 850px;

     height: 4px;

     margin: 40px auto;

     background:
         rgba(255, 255, 255, 0.15);

     position: relative;
 }

 .footer-line span {
     position: absolute;

     left: 0;
     top: 0;

     width: 0%;
     height: 100%;

     background: #c8ff00;
 }

 /* ========================= */
 /* LOGO */
 /* ========================= */

 .footer-logo {
     margin-top: 40px;
 }

 .footer-logo img {
     width: 130px;

     filter:
         drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
 }

 /* ========================= */
 /* BUTTONS */
 /* ========================= */

 .footer-buttons {
     margin-top: 50px;

     display: flex;
     justify-content: center;
     gap: 25px;

     flex-wrap: wrap;
 }

 .footer-buttons a {
     padding: 18px 35px;

     border: 2px solid rgba(255, 255, 255, 0.2);

     color: #fff;

     text-decoration: none;

     font-size: 15px;
     letter-spacing: 2px;
     font-weight: 700;

     transition: 0.4s;

     backdrop-filter: blur(10px);

     background:
         rgba(255, 255, 255, 0.04);
 }

 /* HOVER */

 .footer-buttons a:hover {
     background: #c8ff00;
     color: #000;

     border-color: #c8ff00;

     transform: translateY(-4px);
 }

 /* ========================= */
 /* SOCIALS */
 /* ========================= */

 .footer-socials {
     position: absolute;

     left: 40px;
     bottom: 40px;

     z-index: 20;

     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .footer-socials a {
     text-decoration: none;

     color: #fff;

     font-size: 13px;
     letter-spacing: 2px;
     font-weight: 700;

     opacity: 0.7;

     transition: 0.4s;
 }

 .footer-socials a:hover {
     opacity: 1;

     transform: translateX(10px);

     color: #c8ff00;
 }

 /* ========================= */
 /* BOTTOM */
 /* ========================= */

 .footer-bottom {
     position: absolute;

     right: 40px;
     bottom: 40px;

     z-index: 20;

     display: flex;
     flex-direction: column;
     align-items: flex-end;

     gap: 10px;
 }

 .footer-bottom span {
     color: #fff;

     font-size: 13px;
     letter-spacing: 2px;
     font-weight: 700;

     opacity: 0.7;
 }

 /* ========================= */
 /* RESPONSIVE */
 /* ========================= */

 @media(max-width:992px) {

     .footer-content h1 {
         font-size: 11vw;
     }

 }

 @media(max-width:768px) {

     .final-footer {
         padding: 120px 0;
     }

     .footer-content h1 {
         font-size: 14vw;
         line-height: 1.1;
     }

     .footer-socials {
         left: 20px;
         bottom: 20px;
     }

     .footer-bottom {
         right: 20px;
         bottom: 20px;
     }

     .footer-buttons {
         gap: 15px;
     }

     .footer-buttons a {
         padding: 14px 22px;
         font-size: 12px;
     }

 }