﻿@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap");
:root {
    --base-100: #2e2e2e;
    --base-200: #909090;
    --base-300: #f5f5f5;
    --accent: #D47328;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html.lenis,
html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-smooth iframe {
    pointer-events: none;
}
body {
    font-family: "Host Grotesk";
    background-color: var(--base-300);
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #D47328;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero-badge ion-icon {
    font-size: 1.1rem;
}
.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
}
.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    background-color: var(--base-300);
    color: var(--base-100);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-premium .btn-icon {
    width: 3rem;
    height: 3rem;
    background-color: #D47328;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    transition: transform 0.4s ease;
}
.btn-premium:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.btn-premium:hover .btn-icon {
    transform: rotate(-10deg) scale(1.1);
}
.btn-outline {
    padding: 1.1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.4s ease;
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #D47328;
    color: #D47328;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; 
    height: 100svh; 
    background-color: var(--base-200); 
    z-index: 10000;
    display: flex;
    padding: 0; 
    gap: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    pointer-events: none;
}
.menu-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 0 2.5rem 1.5rem;
    position: relative;
    color: var(--base-300);
    z-index: 10;
}
.menu-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}
.menu-link-item {
    overflow: hidden;
    border-bottom: 1px solid rgba(223, 216, 207, 0.08);
}
.menu-link-item:first-child {
    border-top: 1px solid rgba(223, 216, 207, 0.08);
}
.menu-link-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #dfd8cf;
    text-decoration: none;
    font-size: clamp(1.5rem, 4.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
    padding: 0.35em 0;
    transform: translateY(110%);
    will-change: transform;
    transition: color 0.3s ease, letter-spacing 0.4s ease;
}
.menu-link-item a::after {
    content: "";
    font-size: 0.5em;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}
.menu-link-item a:hover {
    color: var(--accent);
    letter-spacing: -0.02em;
}
.menu-link-item a:hover::after {
    opacity: 1;
    transform: translateX(0);
}
.menu-link-item a sup {
    font-size: clamp(0.7rem, 1.5vw, 1.5rem);
    vertical-align: super;
    opacity: 0.6;
}
.menu-brand {
    font-family: serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 500;
    color: rgba(223, 216, 207, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.menu-footer {
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 5;
    position: relative;
    flex-wrap: wrap;
}
.social-links {
    display: flex;
    gap: 0.6rem;
}
.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(223, 216, 207, 0.25);
    border-radius: 50%;
    color: #dfd8cf;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.social-icon:hover {
    background-color: #dfd8cf;
    color: var(--base-200);
    border-color: #dfd8cf;
    transform: scale(1.1);
}
.concept-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(223, 216, 207, 0.45);
}
.close-btn-container {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    left: auto;
    transform: none;
    z-index: 100;
}
.close-menu-btn {
    background-color: var(--base-300);
    color: var(--base-100);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.close-menu-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.menu-right {
    flex: 0.75;
    position: relative;
    height: 100%;
    border-radius: 3rem;
    overflow: hidden;
}
.menu-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.menu-image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 18vw, 20vw);
    font-weight: 500;
    color: var(--base-300);
    letter-spacing: -0.05em;
    line-height: 1;
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
}
.site-of-day {
    position: absolute;
    top: 5rem;
    right: 0;
    background-color: #000;
    color: #fff;
    padding: 1.25rem 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    z-index: 3;
    border-radius: 0.5rem 0 0 0.5rem;
}
.w-logo {
    font-family: serif;
    font-weight: 700;
    font-size: 1.4rem;
}
.sotd-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.menu-btn .btn, .btn {
    cursor: none;
}
.menu-btn .btn:hover, .btn:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    transition: box-shadow 0.3s ease, filter 0.3s ease;
}
.banner-section {
    position: relative;
    z-index: 0;
    padding: 10rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--base-300);
    overflow: hidden;
    margin: 1rem;
    border-radius: 4rem;
    min-height: 100vh;
    max-height: 100vh;
}
.banner-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 23, 23, 0.65);
    z-index: 2;
}
.banner-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.banner-headline {
    font-family: serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.05em;
}
.banner-desc {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
}
.btn-light {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0.25rem 0.25rem 1.5rem;
    border-radius: 4rem;
    background-color: transparent;
    border: 1px solid rgba(245, 245, 245, 0.4);
    color: var(--base-300);
    width: max-content;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-light .btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #D47328;
    color: var(--base-300);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}
.btn-light .btn-label span {
    font-size: 0.9rem;
    font-weight: 450;
    line-height: 1;
}
.btn-light:hover {
    border-color: #D47328;
    background-color: rgba(212, 115, 40, 0.15);
}
.story-section {
    padding: 8rem 4rem;
    background-color: var(--base-300);
    color: var(--base-100);
    position: relative;
    z-index: 10;
}
.story-container {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}
.story-left {
    flex: 1;
    position: relative;
}
.story-sticky {
    position: sticky;
    top: 6rem;
}
.story-headline {
    font-family: serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--base-100);
}
.story-right {
    flex: 1.2;
    padding-top: 2rem;
}
.timeline-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-bottom: 2rem;
}
.timeline-line {
    position: absolute;
    left: 0.65rem;
    top: 1rem;
    bottom: 2rem;
    width: 2px;
    background-color: rgba(24, 23, 23, 0.1);
    z-index: 1;
}
.timeline-progress {
    width: 100%;
    height: 0%;
    background-color: #D47328;
    transform-origin: top;
}
.timeline-item {
    position: relative;
    padding-left: 4rem;
    z-index: 2;
}
.timeline-node {
    position: absolute;
    left: -0.1rem;
    top: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--base-300);
    border: 3px solid rgba(24, 23, 23, 0.2);
    transition: all 0.4s ease;
    z-index: 5;
}
.timeline-node.active {
    border-color: #D47328;
    background-color: #D47328;
    box-shadow: 0 0 15px rgba(212, 115, 40, 0.4);
}
.timeline-date {
    font-family: serif;
    font-size: 1.5rem;
    color: #D47328;
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.timeline-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--base-200);
    opacity: 0.85;
}
@media (max-width: 1024px) {
    .story-container {
        flex-direction: column;
        gap: 2rem;
    }
    .story-sticky {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
    }
    .story-headline {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
}
@media (max-width: 640px) {
    .banner-section {
        margin: 0.5rem;
        padding: 6rem 1.5rem 4rem;
        border-radius: 2rem;
    }
    .story-section {
        padding: 5rem 1.5rem;
    }
    .timeline-item {
        padding-left: 2.5rem;
    }
    .timeline-line {
        left: 0.5rem;
    }
    .timeline-node {
        left: -0.25rem;
        width: 1.2rem;
        height: 1.2rem;
    }
    .timeline-date {
        font-size: 1.3rem;
    }
    .timeline-content p {
        font-size: 1.1rem;
    }
}
.vm-section {
    padding: 8rem 4rem;
    background-color: var(--base-100);
    color: var(--base-300);
    position: relative;
    z-index: 10;
    border-radius: 4rem 4rem 0 0;
    margin-top: -3rem;
}
.vm-container {
    max-width: 1400px;
    margin: 0 auto;
}
.vm-header {
    margin-bottom: 4rem;
    text-align: center;
}
.vm-title {
    font-family: serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 500;
    color: var(--base-300);
    margin-bottom: 0.5rem;
    letter-spacing: -0.05em;
}
.vm-subtitle {
    font-size: 1.1rem;
    color: #dfd8cf;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    grid-auto-rows: minmax(auto, auto);
}
.bento-card {
    background-color: rgba(245, 245, 245, 0.03);
    border: 1px solid rgba(245, 245, 245, 0.08);
    border-radius: 2rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
}
.bento-card:hover {
    background-color: rgba(245, 245, 245, 0.06);
    border-color: rgba(212, 115, 40, 0.2);
    transform: translateY(-5px);
}
.core-card {
    grid-column: span 2;
}
.vision-card {
    grid-column: span 1;
}
.apart-card {
    grid-column: span 2;
}
.mission-card {
    grid-column: span 1;
}
.highlight-card {
    background-color: #D47328;
    color: var(--base-100);
    border: none;
}
.highlight-card:hover {
    background-color: #e07f35;
    transform: translateY(-5px);
}
.highlight-card .bento-icon {
    color: var(--base-100);
}
.highlight-card p {
    color: var(--base-100);
    opacity: 0.9;
}
.bento-icon {
    font-size: 2.5rem;
    color: #D47328;
}
.bento-card h3 {
    font-family: serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}
.bento-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.8;
}
.apart-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.apart-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    line-height: 1.5;
    opacity: 0.85;
}
.apart-list li ion-icon {
    font-size: 1.3rem;
    color: #D47328;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.apart-list li strong {
    color: var(--base-300);
    font-weight: 600;
}
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    .core-card,
    .apart-card {
        grid-column: span 2;
    }
    .vision-card,
    .mission-card {
        grid-column: span 1;
    }
}
@media (max-width: 640px) {
    .vm-section {
        padding: 5rem 1.25rem;
        border-radius: 2rem 2rem 0 0;
        margin-top: -2.5rem;
    }
    .vm-title {
        font-size: 2.5rem;
    }
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .core-card,
    .vision-card,
    .apart-card,
    .mission-card {
        grid-column: span 1;
    }
    .bento-card {
        padding: 2.25rem 1.25rem;
        border-radius: 1.5rem;
    }
    .bento-card h3 {
        font-size: 1.6rem;
    }
}
.why-advanced-section {
    padding: 8rem 4rem;
    background-color: var(--base-100);
    color: var(--base-300);
    position: relative;
    z-index: 25;
}
.why-advanced-header {
    text-align: center;
    margin-bottom: 8rem;
    position: sticky;
    top: 5vh;
    z-index: 0;
}
.why-small-text {
    color: #D47328;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.why-small-text ion-icon {
    font-size: 1.2rem;
}
.why-massive-title {
    font-family: serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #ffffff 40%, #7a7a7a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}
.why-advanced-desc {
    font-size: 1.25rem;
    color: #919191;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}
.cards-stack-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 10rem;
    display: flex;
    flex-direction: column;
    gap: 15vh;
}
.stack-card {
    position: sticky;
    top: 15vh;
    transform-origin: top center;
    will-change: transform;
}
.card-inner {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3rem;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
    transform-origin: top center;
    will-change: transform, opacity;
}
.card-inner:hover {
    border-color: rgba(212, 115, 40, 0.25);
    box-shadow: 0 -15px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 115, 40, 0.06);
}
.card-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 115, 40, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.card-left {
    position: relative;
    z-index: 1;
    flex: 1.1;
    padding: 4.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-num {
    font-family: serif;
    font-size: 5rem;
    font-weight: 900;
    color: #D47328;
    opacity: 0.12;
    line-height: 0.85;
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
}
.card-title {
    font-family: serif;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 1.5rem;
}
.card-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.65);
    max-width: 500px;
}
.card-media {
    flex: 0.9;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 400px;
    max-height: 500px;
    display: flex;
    align-items: stretch;
}
.card-media img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.card-inner:hover .card-media img {
    transform: scale(1.06);
}
.card-reversed {
    flex-direction: row-reverse;
}
@media (max-width: 1024px) {
    .why-massive-title {
        font-size: clamp(2.8rem, 8vw, 4.5rem);
    }
    .cards-stack-container {
        gap: 5vh;
    }
    .stack-card {
        top: 12vh;
        position: relative;
    }
    .card-inner {
        flex-direction: column !important;
        border-radius: 2.5rem;
    }
    .card-left {
        padding: 3rem 2rem 2.5rem;
        flex: none;
    }
    .card-media {
        min-height: 320px;
        flex: none;
    }
    .card-num {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }
    .card-title {
        font-size: 2rem;
    }
    .card-desc {
        max-width: 100%;
        font-size: 1.1rem;
    }
}
@media (max-width: 640px) {
    .why-advanced-section {
        padding: 6rem 1.25rem;
    }
    .why-advanced-header {
        margin-bottom: 3.5rem;
        position: relative;
        top: 0;
    }
    .why-massive-title {
        font-size: 2.5rem;
    }
    .cards-stack-container {
        gap: 2.5rem;
        padding-bottom: 4rem;
    }
    .stack-card {
        position: relative;
        top: 0;
    }
    .card-inner {
        border-radius: 2rem;
    }
    .card-left {
        padding: 2.5rem 1.25rem 2rem;
    }
    .card-media {
        min-height: 240px;
    }
    .card-num {
        font-size: 2.8rem;
        margin-bottom: 0.5rem;
    }
    .card-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .card-desc {
        font-size: 1rem;
        line-height: 1.6;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn,
.btn-premium,
.collab-btn-standalone,
.why-cta-btn {
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        filter 0.3s ease;
}
::selection {
    background-color: rgba(212, 115, 40, 0.25);
    color: var(--base-100);
}
::-moz-selection {
    background-color: rgba(212, 115, 40, 0.25);
    color: var(--base-100);
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: var(--base-300);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 115, 40, 0.4);
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D47328;
}
a:focus-visible,
button:focus-visible {
    outline: 2px solid rgba(212, 115, 40, 0.5);
    outline-offset: 4px;
    border-radius: 4px;
}
@media (hover: hover) and (pointer: fine) {
    body,
    body * {
        cursor: none !important;
    }
}
@media (hover: none) {
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }
    body,
    body * {
        cursor: auto !important;
    }
}
.top-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
}
.logo-text {
    font-family: serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--base-300);
    letter-spacing: -0.05rem;
    line-height: 1.1;
    white-space: nowrap;
}
.menu-btn {
    position: fixed;
    bottom: clamp(1.5rem, 5vw, 2.5rem); 
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 20000 !important;
    transition: opacity 0.4s ease;
    transform: none !important;
    will-change: bottom;
}
.btn {
    pointer-events: auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem; 
    padding: 0.5rem 0.5rem 0.5rem 2rem; 
    border-radius: 4rem;
    background-color: var(--base-300); 
    color: var(--base-100);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    cursor: none;
    width: max-content;
    text-decoration: none;
    will-change: transform;
}
.btn-icon {
    width: 3rem; 
    height: 3rem;
    background-color: var(--accent);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    border-radius: 50%;
    transition: transform 0.4s ease;
    will-change: transform;
}
.btn-icon ion-icon {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.5rem); 
    color: var(--white);
    --ionicon-stroke-width: 32px;
}
.btn-label {
    overflow: hidden; 
    height: clamp(0.9rem, 2vw, 1.1rem);
    display: flex;
    align-items: center;
}
.btn-label span {
    font-family: 'Host Grotesk', sans-serif;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem); 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}
.menu-btn.active .btn {
    background-color: var(--base-300);
    color: var(--base-100);
    border-color: rgba(0, 0, 0, 0.08); 
}
.btn:hover {
    background-color: #fff;
    transform: translateY(-3px); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
    border-color: var(--accent) !important;
}
.btn:hover .btn-icon {
    transform: scale(1.1); 
}
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
@media (max-width: 1200px) {
    .top-logo {
        top: 2rem;
        left: 0 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        pointer-events: none;
    }
    .top-logo a {
        pointer-events: auto;
    }
}
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
        gap: 1.5rem !important;
        display: grid !important;
    }
    .bento-card {
        grid-column: auto !important;
        grid-row: auto !important;
        width: 100% !important;
        min-height: 350px;
    }
    .core-card,
    .apart-card {
        grid-column: span 2 !important;
    }
    .vision-card,
    .mission-card {
        grid-column: span 1 !important;
    }
    .why-massive-title {
        font-size: clamp(2.8rem, 8vw, 4.5rem);
    }
    .cards-stack-container {
        gap: 5vh;
    }
    .stack-card {
        top: 12vh;
    }
    .card-inner {
        flex-direction: column !important;
        border-radius: 2.5rem;
    }
    .card-left {
        padding: 3rem 2rem 2.5rem;
        flex: none;
    }
    .card-media {
        min-height: 320px;
        flex: none;
    }
}
@media (max-width: 640px) {
    .banner-section {
        margin: 0.5rem;
        padding: 6rem 1.25rem 4rem;
        border-radius: 2rem;
        min-height: 98.5vh;
    }
    .banner-headline {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .btn-premium,
    .btn-outline {
        justify-content: center;
    }
    .btn-outline span{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    .story-section {
        padding: 5rem 1.25rem;
    }
    .timeline-item {
        padding-left: 2.5rem;
    }
    .timeline-line {
        left: 0.5rem;
    }
    .timeline-node {
        left: -0.2rem;
        width: 1.2rem;
        height: 1.2rem;
    }
    .vm-section {
        padding: 5rem 1.25rem;
        border-radius: 2.5rem 2.5rem 0 0;
    }
    .vm-title {
        font-size: 2.2rem;
    }
    .vm-section .bento-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }
    .vm-section .bento-card {
        grid-column: span 1 !important;
        width: 100% !important;
        min-width: unset !important;
    }
    .why-advanced-section {
        padding: 5rem 1.25rem;
    }
    .why-advanced-header {
        margin-bottom: 3.5rem;
        position: relative;
        top: 0;
    }
    .stack-card {
        position: relative;
        top: 0;
    }
    .cards-stack-container {
        gap: 2rem;
    }
    .card-media {
        min-height: 240px;
        flex: none;
    }
}
@media (max-width: 900px) {
    .menu-right { flex: 0.5; border-radius: 2rem; }
    .menu-link-item a { padding: 0.6em 0; }
    .menu-left { gap: 3rem; }
}
@media (max-width: 640px) {
    .menu-right { display: none; }
    .menu-left { 
        flex: 1; 
        padding: 3rem 1.5rem 8rem;
        justify-content: space-between;
        height: 100%;
    }
    .menu-brand { margin-bottom: 0; }
    .menu-links {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .menu-link-item a { 
        font-size: clamp(1.4rem, 8vw, 2.5rem); 
        padding: 0.8em 0;
    } 
}
