@font-face {
    font-family: 'Altone';
    src: url('fonts/Altone-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Altone';
    src: url('fonts/Altone-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeueLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Altone Trial', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.light-mode {
    background-color: #FFFFFF;
    color: #000000;
}

body.light-mode .nav-links a,
body.light-mode .hero-desc,
body.light-mode .socials span,
body.light-mode .socials a {
    color: #000000;
}

body.light-mode .socials a:hover {
    color: #F46B2F;
}

body.light-mode .btn-outline {
    color: #000000;
}

body.light-mode .navbar.scrolled-nav .btn-outline {
    color: #FFFFFF;
}

body.light-mode .btn-outline:hover {
    color: #FFFFFF;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-color: transparent;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.navbar .logo img {
    height: 50px;
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 32px;
    height: 2px;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.hamburger span:nth-child(1) {
    background-color: #F46B2F;
}

.hamburger span:nth-child(2) {
    background-color: #FFFFFF;
}

body.light-mode .hamburger span:nth-child(2) {
    background-color: #000000;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
}

.navbar.scrolled-nav {
    top: 20px;
    width: 80%;
    left: 10%;
    padding: 15px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled-nav::before {
    background-color: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.navbar.scrolled-nav .logo img {
    height: 35px;
}

/* --- DUAL LOGO: full ↔ icon swap on scroll --- */
.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo .logo-full {
    height: 50px;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.45s ease, transform 0.45s ease, height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.logo .logo-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.85);
    height: 38px;
    width: 38px;
    object-fit: contain;
    object-position: left center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.navbar.scrolled-nav .logo .logo-full {
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
}

.navbar.scrolled-nav .logo .logo-icon {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    pointer-events: auto;
}

body.light-mode .navbar.scrolled-nav .logo .logo-icon {
    content: url('img/MVMLogoBlack.png');
}

body.light-mode .navbar.scrolled-nav {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body.light-mode .navbar.scrolled-nav::before {
    background-color: rgba(255, 255, 255, 0.85);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    transition: opacity 0.3s ease;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Altone Trial', sans-serif;
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F46B2F;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-links a:hover::after {
    bottom: 0;
    opacity: 1;
}

.btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #F46B2F;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Altone Trial', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.btn-outline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #F46B2F;
    transition: height 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    height: 100%;
}

.btn-outline:hover {
    color: #FFFFFF;
}

.navbar.scrolled-nav .btn-outline {
    background-color: #F46B2F;
    color: #FFFFFF;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    row-gap: 2px;
    column-gap: 0px;
    padding: 40px 80px 60px;
    flex-grow: 1;
    position: relative;
    grid-template-columns: 2fr 2fr;
    align-items: start;
    align-content: start;
}

@keyframes rotateSystem {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

body.light-mode .center-orb {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid gray;
}

@keyframes orbPopIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes trailIntro {
    0% {
        opacity: 0;
        width: 0;
    }

    100% {
        opacity: 0.85;
        width: var(--trail-w);
    }
}

.orbit {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;

    animation: spin 18s linear infinite;
}

.show-element .center-orb-inner {
    animation: orbPopIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.27) forwards 0.4s;
}

.hero-title {
    grid-column: 3/ 4;
    grid-row: 2 / 3;
    align-self: start;
    margin-top: 0;
    font-family: 'Epilogue', 'Helvetica Neue', sans-serif;
    font-size: clamp(40px, 4.5vw, 74px);
    line-height: 1.05;
    font-weight: 900;
}

.hero-desc {
    grid-column: 3/ 4;
    grid-row: 3 / 4;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.5;
    font-family: 'Altone Trial', sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    transition: color 0.3s ease;
    max-width: 700px;
    justify-self: end;
}

.btn-primary {
    grid-column: 3 / 4;
    grid-row: 4 / 5;
    justify-self: end;
    background-color: #F46B2F;
    color: #FFFFFF;
    border: 1px solid transparent;
    padding: 16px 28px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 600;
    cursor: pointer;
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
    line-height: 1;
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #F46B2F;
    transform: translateY(-2px);
}

body.light-mode .btn-primary:hover {
    box-shadow: inset 0 0 0 2px #F46B2F;
}

.btn-primary:hover i {
    transform: translateX(6px);
}

.socials {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
    margin-top: 40px !important;
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 12px;
}

.socials span {
    font-size: 16px;
    font-weight: 300;
    margin-right: 10px;
    font-family: 'Helvetica Neue', sans-serif;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.socials a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s ease;
}

.socials a:hover {
    color: #F46B2F;
}

.trusted-brands {
    background-color: #F5F5F5 !important;
    padding: 20px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
    margin-bottom: 0px;
    border: none !important;
    transition: background-color 0.3s ease;
}

.trusted-brands h2 {
    text-align: center;
    color: #ffffffea;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 20px;
}

.marquee {
    width: 100%;
    overflow: hidden;
    display: flex;
    position: relative;
    cursor: pointer;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.marquee-content {
    display: flex;
    gap: 70px;
    padding-right: 70px;
    align-items: center;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    height: 42px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    opacity: 1;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.trusted-brands .marquee {
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.brand-item img:hover {
    opacity: 0.8;
}

body.light-mode .marquee-content img,
body.light-mode .brand-marquee img,
body.light-mode .scrolling-marquee img,
body.light-mode .brand-item img {
    filter: brightness(0) opacity(0.5) !important;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease !important;
}

body.light-mode .marquee-content img:hover,
body.light-mode .brand-marquee img:hover,
body.light-mode .scrolling-marquee img:hover,
body.light-mode .brand-item img:hover {
    filter: brightness(0) opacity(1) !important;
    transform: scale(1.05);
}

.no-transition {
    transition: none !important;
}

.approach-section {
    position: relative;
    width: 100%;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 60px;
    overflow: hidden;
}

.bg-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;

    transform: none;

    transition: opacity 0.8s ease;
}

.bg-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

.bg-slide.prev {
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}

.approach-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.approach-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page {
    display: none;
}

.approach-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.2;
}

#approach-title-text .word-wrapper.highlight .letter {
    color: #F46B2F;
}

.approach-subtitle {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0s;
}

.approach-section.show-element .approach-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease 0.8s;
}

.approach-details-container {
    position: relative;
    min-height: 150px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0s;
}

.approach-section.show-element .approach-details-container {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease 1s;
}

.approach-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
    pointer-events: none;
}

.approach-details.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 1.2s;
}

.approach-details.prev {
    opacity: 0;
    transform: translateX(-50px);
    position: absolute;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0s;
}

.detail-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 500;
    color: #FFFFFF;
}

.detail-subtitle {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.detail-desc {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1.5;
    max-width: 550px;
}

.approach-arrow-btn {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.approach-arrow-btn:hover {
    background-color: #F46B2F;
    border-color: #F46B2F;
    transform: translateX(10px);
}

.scroll-text-section {
    background-color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background-color 0.3s ease;
    margin-bottom: 90px;
}

body.light-mode .scroll-text-section {
    background-color: #ffffff;
}

.scroll-line {
    display: flex;
    width: max-content;
    will-change: transform;
}

.line-2 {
    transform: translateX(-15%);
}

.scroll-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
    white-space: nowrap;
}

.scroll-content span {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 600;
    color: #000000;
    transition: color 0.3s ease;
}

body.light-mode .scroll-content span {
    color: #000000;
}

.scroll-content strong {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #F46B2F;
    letter-spacing: -0.5px;
}

.who-we-serve-section {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.wws-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    align-items: center;
}

.wws-title {
    grid-column: 1 / 2;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(80px, 9vw, 130px);
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

body.light-mode .wws-title {
    color: #000000;
}

.wws-list {
    grid-column: 2 / 3;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.wws-list-item {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(10px, 2.5vw, 36px);
    font-weight: 300;
    color: #FFFFFF;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

body.light-mode .wws-list-item {
    color: #000000;
}

.wws-list-item.slide-in {
    opacity: 1;
    transform: translateX(0);
}

.wws-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-box.pop-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-box:hover {
    border-color: rgba(244, 107, 47, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 107, 47, 0.15);
}

body.light-mode .stat-box {
    background: rgba(0, 0, 0, 0.02);
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-mode .stat-box:hover {
    border-color: rgba(244, 107, 47, 0.4);
    box-shadow: 0 15px 40px rgba(244, 107, 47, 0.1);
}

.stat-number {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(36px, 4vw, 50px);
    font-weight: 700;
    color: #F46B2F;
    margin-bottom: 8px;
}

.stat-desc {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.light-mode .stat-desc {
    color: rgba(0, 0, 0, 0.6);
}

.theme-btn {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background: transparent;
    color: #FFFFFF;
    border: none;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    z-index: 1000;
    padding: 0;
}

.theme-btn:hover {
    transform: scale(1.1);
}

body.light-mode .theme-btn {
    background: transparent;
    color: #000000;
}

.hidden-top {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.hidden-bottom {
    transform: translateY(40px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.show-nav {
    transform: none;
    opacity: 1;
}

.show-element {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
}

.animate-text .letter {
    animation: letterSlideUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.word-wrapper {
    display: inline;
    white-space: nowrap;
}

@keyframes letterSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-item img[src*="amazon"] {
    height: 60px;
    max-width: 180px;
}

.brand-item img[src*="disney"] {
    height: 45px;
    max-width: 130px;
}

.brand-item img[src*="crocs"] {
    height: 45px;
    max-width: 130px;
}

.brand-item img[src*="loreal"] {
    height: 25px;
    max-width: 130px;
}

.brand-item img[src*="meta"] {
    height: 60px;
    max-width: 120px;
}

.brand-item img[src*="steve"] {
    height: 65px;
    max-width: 120px;
}

.brand-item img[src*="elf"] {
    height: 40px;
    max-width: 120px;
}

.brand-item img[src*="sony"] {
    height: 100px;
    max-width: 150px;
}

.brand-item img[src*="coach"] {
    margin-top: -10px;
    height: 100px;
    max-width: 120px;
}

.brand-item img[src*="afterpay"] {
    height: 35px;
    max-width: 140px;
}

.brand-item img[src*="champion"] {
    height: 45px;
    max-width: 120px;
}

.brand-item img[src*="ikea"] {
    height: 40px;
    max-width: 100px;
}

.brand-item img[src*="shein"] {
    height: 45px;
    max-width: 110px;
}

.brand-item img[src*="teen"] {
    height: 40px;
    max-width: 120px;
}

.brand-item img[src*="temu"] {
    height: 25px;
    max-width: 110px;
}

.brand-item img[src*="toyota"] {
    height: 50px;
    max-width: 120px;
}

.brand-item img[src*="tylenol"] {
    height: 40px;
    max-width: 110px;
}

.brand-item img[src*="walmart"] {
    height: 50px;
    max-width: 140px;
}

.schedule-marquee-section {
    background-color: #8d8c83;
    padding: 10px 0;
    overflow: hidden;
    display: flex;
    position: relative;
    width: 100%;
}

.schedule-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.schedule-marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
}

.schedule-marquee-content span {
    font-size: clamp(30px, 5vw, 60px);
    color: #000000;
    white-space: nowrap;
}

.schedule-marquee-content span:nth-of-type(1) {
    font-family: 'Altone Trial', sans-serif;
    font-weight: 700;
    font-style: normal;
}

.schedule-marquee-content span:nth-of-type(2) {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 300;
    font-style: italic;
}

.schedule-marquee-content span:nth-of-type(3) {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-style: normal;
}

.schedule-marquee-content img {
    height: clamp(60px, 8vw, 100px);
    width: auto;
    object-fit: contain;
}

.social-reality-section {
    padding: 0px 80px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #000000;
    transition: background-color 0.3s ease;
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 70px !important;
}

body.light-mode .social-reality-section {
    background-color: #FFFFFF;
}

.sr-header {
    text-align: center;
    margin-bottom: 60px;
}

.sr-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

#sr-title-text .letter {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

body.light-mode .sr-title {
    color: #000000;
}

.sr-subtitle {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    color: #FFFFFF;
    opacity: 1;
    transform: none;
    transition: all 0.6s ease 0.8s;
}

body.light-mode .sr-subtitle {
    color: #000000;
}

.social-reality-section.show-element .sr-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.sr-stats-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

body.light-mode .sr-stats-container {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.sr-stat-item {
    padding: 40px 10px;
    /* Reduced side padding to give the text more physical room */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 1;
    transform: none;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    cursor: pointer;
}

.social-reality-section.show-element .sr-stat-item {
    opacity: 1;
    transform: translateY(0);
}

.sr-stat-item:nth-child(3) {
    transition-delay: 1.0s;
}

.sr-stat-item:nth-child(4) {
    transition-delay: 1.1s;
}

.sr-stat-item:nth-child(5) {
    transition-delay: 1.2s;
}

.sr-stat-item:nth-child(6) {
    transition-delay: 1.3s;
}

.sr-stat-item:nth-child(7) {
    transition-delay: 1.4s;
}

.sr-stat-item:nth-child(8) {
    transition-delay: 1.5s;
}

.sr-hover-line {
    position: absolute;
    left: 0;
    height: 2px;
    background-color: #F46B2F;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 10;
    pointer-events: none;
}

.sr-hover-line.top {
    top: -1px;
}

.sr-hover-line.bottom {
    bottom: -1px;
}

.sr-stat-number {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(24px, 2.5vw, 42px);
    /* Scaled down slightly to perfectly fit 6 columns */
    font-weight: 500;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
    white-space: nowrap;
    /* GUARANTEES the numbers never wrap to a second line */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    /* Locks the vertical height so the descriptions below always perfectly align */
}

.sr-stat-desc {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(12px, 1.1vw, 15px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    transition: color 0.3s ease;
}

body.light-mode .sr-stat-number,
body.light-mode .sr-stat-desc {
    color: rgba(0, 0, 0, 0.5);
}

.sr-stat-item.highlight .sr-stat-number,
.sr-stat-item.highlight .sr-stat-desc {
    color: #FFFFFF;
}

body.light-mode .sr-stat-item.highlight .sr-stat-number,
body.light-mode .sr-stat-item.highlight .sr-stat-desc {
    color: #000000;
}

.demo-video-section {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #000000;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

body.light-mode .demo-video-section {
    background-color: #FFFFFF;
}

.demo-caption {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

body.light-mode .demo-caption {
    color: #000000;
}

.demo-video-section.show-element .demo-caption {
    opacity: 1;
    transform: translateY(0);
}

.demo-desc {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(16px, 1.8vw, 16px);
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.3s ease, opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}

body.light-mode .demo-desc {
    color: #000000;
}

.demo-video-section.show-element .demo-desc {
    opacity: 1;
    transform: translateY(0);
}

.video-container {
    position: relative;
    width: 95%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.light-mode .video-container {
    border: 2px solid rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.05);
}

.video-container:hover {
    border-color: #F46B2F;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(244, 107, 47, 0.15);
}

.video-logo {
    height: 80px;
    opacity: 0.5;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

body.light-mode .video-logo {
    filter: brightness(0);
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #F46B2F;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    padding-left: 5px;
    box-shadow: 0 10px 30px rgba(244, 107, 47, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-container:hover .play-button {
    transform: scale(1.1);
    background-color: #ffffff;
    color: #F46B2F;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

body.light-mode .section-label {
    color: #000000;
}

body.light-mode .approach-section .section-label {
    color: #FFFFFF;
}

.section-label.justify-center {
    justify-content: center;
}

.section-label .dot {
    width: 12px;
    height: 12px;
    background-color: #F46B2F;
    border-radius: 50%;
    display: inline-block;
}

.about-section {
    padding: 120px 80px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-left {
    position: sticky;
    top: 150px;
    min-width: 0;
}

.about-main-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

body.light-mode .about-main-text {
    color: #000000;
}

.about-right {
    display: flex;
    flex-direction: column;
}

.about-block {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.about-block:first-child {
    padding-top: 0;
}

body.light-mode .about-block {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.about-block-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

body.light-mode .about-block-title {
    color: #000000;
}

.about-block-desc {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    transition: color 0.3s ease;
}

body.light-mode .about-block-desc {
    color: rgba(0, 0, 0, 0.8);
}

.about-image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    overflow: hidden;
    transition: background 0.3s ease, border 0.3s ease;
}

body.light-mode .about-image-container {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.about-placeholder-logo {
    height: 60px;
    opacity: 0.3;
    transition: filter 0.3s ease;
}

body.light-mode .about-placeholder-logo {
    filter: brightness(0);
}

.challenges-section {
    padding: 100px 80px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    margin-bottom: 60px;
}

.challenges-title-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.challenges-eyebrow {
    align-self: flex-start;
    margin-bottom: 8px;
}

/* Forces the text to scale down nicely and not crush together on mobile */
@media (max-width: 768px) {
    .challenges-title-row {
        width: 100% !important;
    }

    .challenges-title {
        font-size: clamp(34px, 8vw, 46px) !important;
        margin-bottom: 12px !important;
        line-height: 1.1 !important;
        word-wrap: break-word !important;
    }

    .challenges-subtext {
        width: 100% !important;
        font-size: 16px !important;
        margin-top: 10px !important;
    }
}

.challenges-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    padding-left: 0px;
    transition: color 0.3s ease;
}

body.light-mode .challenges-title {
    color: #000000;
}

.challenges-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.6s;
}

.challenges-section.show-element .challenges-nav {
    opacity: 1;
    transform: translateY(0);
}

.challenge-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #FFFFFF;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.light-mode .challenge-btn {
    border-color: rgba(0, 0, 0, 0.2);
    color: #000000;
}

.challenge-btn:hover,
.challenge-btn.active {
    background: #F46B2F;
    border-color: #F46B2F;
    color: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(244, 107, 47, 0.3);
}

body.light-mode .challenge-btn:hover,
body.light-mode .challenge-btn.active {
    color: #FFFFFF;
}

.challenges-container {
    position: relative;
    width: 100%;
    min-height: 250px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.8s;
}

.challenges-section.show-element .challenges-container {
    opacity: 1;
    transform: translateY(0);
}

body.light-mode .challenges-container {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.challenge-content {
    position: absolute;
    top: 60px;
    left: 60px;
    right: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.challenge-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.challenge-name {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(28px, 3vw, 30px);
    font-weight: 700;
    color: #F46B2F;
    margin-bottom: 20px;
}

.challenge-desc {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

body.light-mode .challenge-desc {
    color: rgba(0, 0, 0, 0.9);
}

.bridge-section {
    padding: 20px 0;
    width: 100%;
    background-color: #494949;
    margin-bottom: 60px;
}

.bridge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px;
    background-color: transparent;
    border: none;
    gap: 60px;
}

.bridge-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(22px, 2.5vw, 22px);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.bridge-section.show-element .bridge-text {
    opacity: 1;
    transform: translateY(0);
}

.bridge-btn {
    background-color: #ffffff;
    color: #F46B2F;
    border: none;
    padding: 18px 36px;
    border-radius: 8px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(20px);

    transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}

body.light-mode .bridge-btn {
    background-color: #000000;
    color: #F46B2F;
}

.bridge-section.show-element .bridge-btn {
    opacity: 1;
    transform: translateY(0);

    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.bridge-section.show-element .bridge-btn:hover {
    background-color: #F46B2F;
    color: #FFFFFF;
    transform: translateY(-5px);
}

.testimonials-section {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 60px;
    text-align: center;
    transition: color 0.3s ease;
}

body.light-mode .testimonials-title {
    color: #000000;
}

.testimonials-marquee-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;

    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to bottom, black 20%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%), linear-gradient(to bottom, black 20%, transparent 100%);
    mask-composite: intersect;
}

.testimonials-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 45s linear infinite;
}

.testimonials-track.reverse {
    animation: marqueeScrollReverse 50s linear infinite;

}

@keyframes marqueeScrollReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonials-content {
    display: flex;
    gap: 24px;
    padding-right: 24px;
    align-items: stretch;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    width: 400px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(244, 107, 47, 0.4);
    transform: translateY(-5px);
}

body.light-mode .testimonial-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .testimonial-card:hover {
    border-color: rgba(244, 107, 47, 0.4);
}

.stars {
    color: #F46B2F;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

body.light-mode .testimonial-text {
    color: rgba(0, 0, 0, 0.9);
}

.testimonial-author {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

body.light-mode .testimonial-author {
    color: #000000;
}

.team-section {
    padding: 80px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.team-main-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
}

body.light-mode .team-main-title {
    color: #000000;
}

.team-sub-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 300;
    color: #585858;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.team-section.show-element .team-sub-title {
    opacity: 1;
    transform: translateY(0);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);

    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);

    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-section.show-element .team-card {
    opacity: 1;
    transform: translateY(0);
}

.team-section.show-element .team-card:nth-child(1) {
    transition-delay: 0.4s, 0.4s, 0s, 0s;
}

.team-section.show-element .team-card:nth-child(2) {
    transition-delay: 0.6s, 0.6s, 0s, 0s;
}

.team-section.show-element .team-card:nth-child(3) {
    transition-delay: 0.8s, 0.8s, 0s, 0s;
}

.team-section.show-element .team-card:hover {
    transition-delay: 0s, 0s, 0s, 0s;
}

body.light-mode .team-card {
    background: #FFFFFF;

    border: 2px solid rgba(0, 0, 0, 0.226);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 106, 47, 0.733);
    box-shadow: 0 12px 30px rgba(244, 107, 47, 0.1);
}

body.light-mode .team-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(244, 106, 47, 0.733);
}

.team-img-container {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    overflow: hidden;
    background-color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-img-container img {
    width: 30%;
    height: auto;
    object-fit: contain;
    opacity: 0.4;
    transition: transform 0.5s ease, filter 0.3s ease, opacity 0.3s ease;
}

body.light-mode .team-img-container img {
    filter: brightness(1);

}

body.light-mode .team-img-container {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    overflow: hidden;
    background-color: #bbbbbb;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-card:hover .team-img-container img {

    opacity: 1;
}

.team-info {
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-separator {
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

body.light-mode .team-separator {
    background-color: #E0E0E0;
}

body.light-mode .team-separator::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 6px;
    background-color: #FFFFFF;
    border-radius: 0 0 15px 15px;
}

.team-role {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #F46B2F;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.team-name {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

body.light-mode .team-name {
    color: #000000;
}

.team-desc {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

body.light-mode .team-desc {
    color: rgba(0, 0, 0, 0.7);
}

.site-footer {
    background-color: #FFFFFF;
    border-radius: 40px;
    padding: 100px 80px 0;
    color: #000000;
    width: calc(100% - 40px);
    max-width: none;
    margin: -70px auto 20px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

body.light-mode .site-footer {
    background-color: #000000;
    color: #FFFFFF;
}

.footer-content-wrapper {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-logo-row {
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    transition: opacity 0.3s ease;
}

.footer-tagline {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.footer-main-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-links-container {
    display: flex;
    gap: 120px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-heading {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #888888;
    margin-bottom: 5px;
}

.footer-col a,
.footer-contact p,
.footer-contact-link,
.footer-copyright p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

body.light-mode .footer-col a,
body.light-mode .footer-contact p,
body.light-mode .footer-contact-link,
body.light-mode .footer-copyright p {
    color: #FFFFFF;
}

.footer-col a:hover,
.footer-contact-link:hover {
    color: #F46B2F;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.newsletter-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.newsletter-desc {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    background-color: #000000;
    border-radius: 50px;
    padding: 6px;
    width: 100%;
    transition: background-color 0.3s ease;
}

body.light-mode .newsletter-form {
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: #FFFFFF;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    flex-grow: 1;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

body.light-mode .newsletter-form button {
    background-color: #F46B2F;
    color: #FFFFFF;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 60px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-giant-text-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding-top: 20px;
}

.giant-text {
    font-family: 'Altone Trial', sans-serif;
    font-size: 7.5vw;
    font-weight: 700;
    letter-spacing: -3px;
    white-space: nowrap;
    line-height: 0.75;
    transform: translateY(10px);
}

.cta-video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px 0;
    background-color: #000000;
    width: 100%;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

body.light-mode .cta-video-section {
    background-color: #FFFFFF;
}

.cta-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-big-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -3px;
    color: #FFFFFF;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

body.light-mode .cta-big-title {
    color: #000000;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.cta-btn-white {
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    padding: 16px 32px;
    border-radius: 40px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

body.light-mode .cta-btn-white {
    background-color: #000000;
    color: #FFFFFF;
}

.cta-btn-white:hover {
    transform: scale(1.05);
    background-color: #F46B2F !important;
}

.cta-btn-glass {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 32px;
    border-radius: 40px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.light-mode .cta-btn-glass {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

body.light-mode .cta-btn-glass:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.cta-video-wrapper {
    width: 120%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transform: translateY(-130px);
}

.cta-video-wrapper video {
    width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.cta-video-wrapper video {
    width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;

    mix-blend-mode: screen;
}

body.light-mode .cta-video-wrapper video {
    /* Step 1: Invert the video (Black BG becomes White, White Logo becomes Black) */
    filter: invert(1) hue-rotate(180deg);

    /* Step 2: Make the new White background completely transparent! */
    mix-blend-mode: multiply;
}

.faq-section {
    padding: 100px 0;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 80px;
}

.faq-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

body.light-mode .faq-title {
    color: #000000;
}

.faq-subtitle {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
    text-align: left;
    transition: color 0.3s ease;
}

body.light-mode .faq-subtitle {
    color: rgba(0, 0, 0, 0.8);
}

.faq-label-wrapper {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 80px;
    margin-bottom: 20px;
}

@keyframes faqSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.faq-item {
    display: flex;
    align-items: center;
    /* Dynamic padding keeps text aligned with the header, while background goes full width */
    padding: 30px max(80px, calc(50vw - 620px));
    background-color: #111111;

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    color: #FFFFFF;
    transition: background-color 0.4s ease, color 0.4s ease, padding 0.4s ease;
    width: 100%;
    box-sizing: border-box;

    opacity: 0;
    transform: translateY(30px);
}

.faq-section.show-element .faq-item {
    animation: faqSlideUp 0.6s ease forwards;
}

.faq-section.show-element .faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-section.show-element .faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-section.show-element .faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-section.show-element .faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-section.show-element .faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-section.show-element .faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

.faq-section.show-element .faq-item:nth-child(7) {
    animation-delay: 0.7s;
}

.faq-section.show-element .faq-item:nth-child(8) {
    animation-delay: 0.8s;
}

.faq-section.show-element .faq-item:nth-child(9) {
    animation-delay: 0.9s;
}

.faq-section.show-element .faq-item:nth-child(10) {
    animation-delay: 1.0s;
}

.faq-section.show-element .faq-item:nth-child(11) {
    animation-delay: 1.1s;
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-mode .faq-item {
    background-color: #f5f5f5;

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #000000;
}

body.light-mode .faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    background-color: #FFFFFF;
    color: #000000;
    padding: 40px max(80px, calc(50vw - 620px));
}

body.light-mode .faq-item.active {
    background-color: #000000;
    color: #FFFFFF;
}

.faq-left-content {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.faq-num {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 18px;
    font-weight: 400;
    width: 40px;
    flex-shrink: 0;
}

.faq-question {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 700;
    margin: 0;
}

.faq-answer {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    padding-left: 0;
    margin-left: 0;
    transition: max-width 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease 0.1s, padding 0.6s ease, margin 0.6s ease;
    white-space: normal;
}

.faq-answer p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    width: max-content;
    max-width: 500px;

}

.faq-item.active .faq-answer {
    max-width: 600px;
    opacity: 1;
    padding-left: 30px;
    margin-left: 30px;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .faq-item.active .faq-answer {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.faq-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-left: 30px;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

body.light-mode .faq-icon-wrapper {
    background-color: #000000;
    color: #FFFFFF;
}

.faq-item.active .faq-icon-wrapper {
    background-color: #F46B2F;
    color: #FFFFFF;
    transform: rotate(-45deg);
}

body.light-mode .faq-item.active .faq-icon-wrapper {
    background-color: #F46B2F;
    color: #FFFFFF;
}

@media (min-width: 1440px) {
    .navbar {
        padding: 50px 120px;
    }

    .navbar.scrolled-nav {
        padding: 15px 60px;
        width: 70%;
        left: 15%;
    }

    .hero {
        padding: 160px 120px 80px;
    }
}

@media (max-width: 1366px) {
    .navbar {
        padding: 40px 60px;
    }

    .navbar.scrolled-nav {
        width: 85%;
        left: 7.5%;
    }

    .hero {
        padding: 140px 60px 50px;
        column-gap: 30px;
    }
}

@media (max-width: 1024px) {
    .navbar {
        flex-direction: row;
        padding: 30px 40px;
    }

    .navbar.scrolled-nav {
        flex-direction: row;
        padding: 15px 30px;
        width: 90%;
        left: 5%;
    }

    .hamburger {
        display: flex;
    }

    .nav-content {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 50px 20px 80px;
        border-radius: 30px 30px 0 0;
        transform: translateY(100%);
        visibility: hidden;
        opacity: 0;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, visibility 0.6s;
        z-index: -1;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    }

    .nav-content.active {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    body.light-mode .nav-content {
        background-color: rgba(255, 255, 255, 0.95);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-links a {
        font-size: 20px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 140px 40px 50px;
    }

    .orb-container {
        position: absolute;
        top: 80px;
        right: 80px;

        width: 400px;
        height: 400px;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-title {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        text-align: center;
    }

    .hero-desc {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        width: 100%;
        text-align: center;
    }

    .btn-primary {
        grid-column: 2 / 3;
        grid-row: 3 / 4;

        justify-self: start;

        margin-top: 10px;
    }

    .socials {
        grid-column: 2 / 3;
        grid-row: 4 / 5;

        justify-self: end;

        align-self: start;
        margin-top: 10px;
    }

    .who-we-serve-section {
        padding: 80px 40px;
    }

    .wws-top {
        grid-template-columns: 1fr;
    }

    .wws-bottom {
        grid-template-columns: 1fr;
    }

    .wws-title {
        grid-column: 1 / 2;
        text-align: center;
    }

    .wws-list {
        grid-column: 1 / 2;
        align-items: center;
        text-align: center;
    }

    .approach-section {
        padding: 60px 40px;
    }

    .approach-arrow-btn {
        bottom: 60px;
        right: 40px;
    }

    .sr-stats-container {
        grid-template-columns: repeat(3, 1fr);
        border-bottom: none;
    }

    .sr-hover-line {
        display: none;
    }

    .sr-stat-item.highlight::before,
    .sr-stat-item.highlight::after {
        display: none;
    }

    .sr-stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    body.light-mode .sr-stat-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }

    .social-reality-section {
        padding: 80px 40px;
    }

    .demo-video-section {
        padding: 80px 40px;
    }

    .about-section {
        padding: 80px 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-left {
        position: static;
    }

    .about-block:first-child {
        padding-top: 40px;
    }

    .challenges-section {
        padding: 80px 40px;
    }

    .team-section {
        padding: 80px 40px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .bridge-section {
        padding: 60px 0;
    }

    .bridge-container {
        flex-direction: column;
        text-align: center;
        padding: 0 40px;
        gap: 30px;
    }

    .testimonials-section {
        padding: 80px 0;
    }

    .testimonial-card {
        width: 320px;
    }

    .site-footer {
        padding: 80px 40px 0;
        border-radius: 30px;
        width: calc(100% - 20px);
        margin: 0 auto 20px;
    }

    .footer-main-row {
        flex-direction: column;
        gap: 60px;
    }

    .footer-links-container {
        flex-wrap: wrap;
        gap: 50px;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .giant-text {
        font-size: 8vw;
    }

    .faq-section {
        padding: 80px 0;
    }

    .faq-label-wrapper {
        padding: 0 40px;
    }

    .faq-header {
        flex-direction: column;
        gap: 20px;
        padding: 0 40px;
    }

    .faq-item {
        padding: 25px 40px;
    }

    .faq-item.active {
        padding: 30px 40px;
    }

    .faq-item {
        flex-wrap: wrap;
    }

    .faq-left-content {
        width: calc(100% - 60px);
        flex: none;
        order: 1;
    }

    .faq-icon-wrapper {
        order: 2;
        margin-left: auto;
    }

    .faq-answer {
        order: 3;
        width: 100%;
        max-width: 100%;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.5s ease;
    }

    .faq-item.active .faq-answer {
        max-height: 300px;
        max-width: 100%;
        padding-left: 0;
        margin-left: 0;
        margin-top: 20px;
        border-left: none;
        width: 100%;
    }

    .faq-answer p {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 20px;
    }

    .navbar.scrolled-nav {
        padding: 15px 20px;
        top: 10px;
        width: 95%;
        left: 2.5%;
    }

    .hero {
        padding: 120px 20px 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .orb-container {
        height: 200px;
        transform: scale(0.65);
    }

    .socials {
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand-item span {
        font-size: 14px;
    }

    .brand-logo {
        width: 36px;
        height: 36px;
        font-size: 8px;
    }

    .who-we-serve-section {
        padding: 60px 20px;
    }

    .approach-section {
        padding: 40px 20px;
    }

    .approach-arrow-btn {
        bottom: 40px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .sr-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-reality-section {
        padding: 60px 20px;
    }

    .demo-video-section {
        padding: 60px 20px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-block {
        padding: 30px 0;
    }

    .about-block:first-child {
        padding-top: 30px;
    }

    .about-image-container {
        margin-bottom: 20px;
    }

    .about-placeholder-logo {
        height: 40px;
    }

    .challenges-section {
        padding: 60px 20px;
    }

    .challenge-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .challenges-container {
        padding: 40px 20px;
        min-height: 280px;
    }

    .challenge-content {
        top: 40px;
        left: 20px;
        right: 20px;
    }

    .team-section {
        padding: 60px 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .team-info {
        padding: 20px;
    }

    .team-name {
        font-size: 20px;
    }

    .team-desc {
        font-size: 14px;
    }

    .bridge-section {
        padding: 50px 0;
    }

    .bridge-container {
        padding: 0 20px;
        gap: 25px;
    }

    .video-logo {
        height: 50px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        width: 280px;
        padding: 20px;
    }

    .cta-video-section {
        padding: 80px 20px 0;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 40px;
        gap: 10px;
    }

    .cta-btn-white,
    .cta-btn-glass {
        width: 100%;
    }

    .cta-video-wrapper {
        transform: translateY(-40px);
        width: 100%;
    }

    .site-footer {
        padding: 60px 20px 0;
        border-radius: 20px;
        width: calc(100% - 20px);
        margin: 0 auto 10px;
    }

    .footer-links-container {
        flex-direction: column;
        gap: 40px;
    }

    .giant-text {
        font-size: 10vw;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-label-wrapper {
        padding: 0 20px;
    }

    .faq-header {
        padding: 0 20px;
    }

    .faq-item {
        padding: 20px 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-item.active {
        padding: 30px 20px;
    }
}

.roi-badge {
    position: absolute;
    top: 25%;
    right: 15%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    animation: floatOrb 6s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.roi-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.roi-value {
    font-size: 42px;
    font-weight: 700;
    color: #4DA1FF;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.light-mode .roi-badge {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.video-container {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.video-badge {
    position: absolute;

    bottom: -20px;
    top: auto;
    /* overlap the video */
    left: -20px;

    width: 110px;
    /* FIXED width (prevents stretch) */
    height: auto;
    /* let content control height */

    background: #e9e9e9;
    color: #111;

    padding: 10px 10px;
    border-radius: 4px;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;

    transform: rotate(-6deg);

    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);

    z-index: 3;
}

.video-container:hover .video-badge {
    opacity: 0;
}

.transparent-cta {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transparent-cta:hover {
    background: #F46B2F;
    color: #FFFFFF;
    border-color: #F46B2F;
}

body.light-mode .transparent-cta {
    color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

body.light-mode .transparent-cta:hover {
    color: #FFFFFF;
    border-color: #F46B2F;
    background: #F46B2F;
}

.systems-transition-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: #000;
}

body.light-mode .systems-transition-section {
    background: #fff;
}

.guessing-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

body.light-mode .guessing-text {
    color: #000;
}

.guessing-text .dim {
    color: rgba(255, 255, 255, 0.2);
}

body.light-mode .guessing-text .dim {
    color: rgba(0, 0, 0, 0.2);
}

.guessing-text .orange {
    color: #F46B2F;
    font-style: italic;
}

.systems-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

body.light-mode .systems-text {
    color: #000;
}

.line-animation-container.phase-3~.systems-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
    /* Text appears immediately after the faster line */
}

.systems-sub {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

body.light-mode .systems-sub {
    color: rgba(0, 0, 0, 0.7);
}

.line-animation-container.phase-3~.systems-sub {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
    /* Paragraph appears immediately after the faster line */
}

/* --- HERO: LAYOUT & TEXT HIGHLIGHTS --- */

.hero {
    direction: rtl;

}

.hero>* {
    direction: ltr;

}

.hero-highlight {
    color: #F46B2F !important;
    font-style: italic !important;
}

.letter-anim {
    animation: popUpLetter 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes popUpLetter {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.presence {
    color: #F46B2F;
    display: inline-block;
    transform: skewX(-10deg);
}

.word-wrapper.presence {
    color: #F46B2F;
    display: inline-block;
    transform: skewX(-10deg);
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem !important;

    z-index: 10;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-wrapper .hero-title,
.hero-content-wrapper .hero-desc {
    margin: 0 !important;
}

/* Float the orbs behind the text so they don't push things around */

.hero-eyebrow {
    grid-column: 3 / 4;
    grid-row: 1 / 2;

    align-self: end;
    margin-bottom: 2px;

    font-size: 13px;
    letter-spacing: 2px;
    color: #F46B2F;
}

/* --- ROI BADGE, VIDEO, LINE ANIMATION, TESTIMONIALS --- */

.roi-badge {
    position: absolute;
    top: 18%;
    right: 5%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 28px 18px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    animation: none;
    min-width: 180px;
}

.roi-badge.roi-visible {
    opacity: 0.72;
    transform: translateY(0);
    animation: roiFloat 7s ease-in-out infinite 0.8s;
}

@keyframes roiFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.roi-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    margin-bottom: 0;
}

.roi-value {
    font-size: 38px;
    font-weight: 800;
    color: #F46B2F;
    font-family: 'Helvetica Neue', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.roi-value svg {
    color: #F46B2F;
    flex-shrink: 0;
}

.roi-bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 6px;
}

.roi-bar {
    height: 3px;
    background: var(--bar-c);
    border-radius: 2px;
    width: 0;
    transition: width 1s ease var(--bar-delay);
}

.roi-badge.roi-visible .roi-bar {
    width: var(--bar-w);
}

body.light-mode .roi-badge {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
}


.video-container {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.video-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #ffffff;
    color: #000000;
    padding: 14px 22px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 22px;
    border-radius: 8px;
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 10;
    text-align: left;
    line-height: 1.2;
    opacity: 1;
    transform: translateY(0);
}

.video-container:hover .video-badge {
    opacity: 0;
    transform: translateY(6px);
}

/* --- LINE ANIMATION: 360° APPROACH --- */

.line-animation-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 40px 0;
    width: 100%;
    overflow: visible;
}

.anim-text {
    position: absolute;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 3vw, 42px);
    letter-spacing: -4px;
    text-transform: uppercase;
    color: #F46B2F;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, letter-spacing, filter;
}

.anim-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    box-shadow: 0 0 20px 5px rgba(244, 107, 47, 0.8);
    opacity: 0;
    z-index: 12;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.anim-line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #F46B2F 20%, #F46B2F 100%);
    transform: translateX(-50%);
    opacity: 0;
    z-index: 10;
    border-radius: 4px;
}

/* PHASE 1 → Text fades in & expands outward */
.line-animation-container.phase-1 .anim-text {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: 14px;
}

/* Fixes the text shooting off-screen on mobile */
@media (max-width: 768px) {
    .line-animation-container.phase-1 .anim-text {
        letter-spacing: 3px !important;
        font-size: clamp(18px, 4.5vw, 26px) !important;
    }
}

/* PHASE 2 → Text collapses to the center & blurs, glowing dot pops out */
.line-animation-container.phase-2 .anim-text {
    opacity: 0;
    transform: scale(0.5);
    letter-spacing: -20px;
    filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.5, 0, 0.5, 1);
}

.line-animation-container.phase-2 .anim-dot {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition-delay: 0.3s;
}

/* PHASE 3 → Dot shoots down and fades out, pulling the gradient line with it */
.line-animation-container.phase-3 .anim-dot {
    top: calc(50% + 180px);
    opacity: 0;
    /* Makes the dot disappear */
    transition: top 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.2s ease;
}

.line-animation-container.phase-3 .anim-line {
    opacity: 1;
    height: 180px;
    transition: height 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

/* --- TESTIMONIALS --- */
.stars,
.testimonial-stars {
    display: none !important;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.challenges-section {
    padding: 40px 80px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.challenges-inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.challenges-top {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    padding-left: 0;
}

.challenges-eyebrow {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #F46B2F;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}


body.light-mode .challenges-title {
    color: #000;
}

.challenges-subtext {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

body.light-mode .challenges-subtext {
    color: rgba(0, 0, 0, 0.55);
}

.challenges-subtext strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

body.light-mode .challenges-subtext strong {
    color: rgba(0, 0, 0, 0.9);
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    overflow: hidden;
}

body.light-mode .pain-points {
    border-color: rgba(0, 0, 0, 0.08);
    background-color: #FAFAFA;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.pain-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* More space between text */
    padding: 48px 36px;
    /* Bigger container padding */
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease;
}

.pain-item:last-child {
    border-right: none;
}

body.light-mode .pain-item {
    border-right-color: rgba(0, 0, 0, 0.12);
}

.pain-item:hover {
    background: rgba(244, 107, 47, 0.04);
}

body.light-mode .pain-item:hover {
    background: rgba(244, 107, 47, 0.08);
}

.challenges-section.show-element .pain-item:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.challenges-section.show-element .pain-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.challenges-section.show-element .pain-item:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.challenges-section.show-element .pain-item:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.65s;
}

.pain-num {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 32px;
    /* Bigger numbers */
    font-weight: 700;
    color: #F46B2F;
    line-height: 1;
}

.pain-label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 18px;
    /* Bigger title text */
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

body.light-mode .pain-label {
    color: #000;
}

.pain-desc {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    /* Bigger paragraph text */
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

body.light-mode .pain-desc {
    color: rgba(0, 0, 0, 0.45);
}

/* Responsive */
@media (max-width: 900px) {
    .challenges-section {
        padding: 80px 30px;
    }

    .pain-points {
        grid-template-columns: repeat(2, 1fr);
    }

    .pain-item:nth-child(1),
    .pain-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .pain-item:nth-child(2) {
        border-right: none;
    }

    .pain-item:nth-child(4) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .challenges-section {
        padding: 60px 20px;
    }

    .pain-points {
        grid-template-columns: 1fr;
    }

    .pain-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .pain-item:last-child {
        border-bottom: none;
    }
}

.challenges-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-end;
}

.challenges-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    align-self: flex-start;
    opacity: 0;
    transform: translateY(10px);
}

.challenges-section.show-element .challenges-cta-ghost {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease 1s, transform 0.6s ease 1s, background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.challenges-cta-ghost:hover {
    background: #F46B2F;
    color: #fff;
    border-color: #F46B2F;
    transform: translateY(-2px);
}

body.light-mode .challenges-cta-ghost {
    color: rgba(0, 0, 0, 0.7);
    border-color: rgba(0, 0, 0, 0.5);
}

body.light-mode .challenges-cta-ghost:hover {
    color: #fff;
}

.dashboard-preview {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    box-sizing: border-box;
    filter: blur(6px);
    opacity: 0.35;
    transform: scale(0.97);
    transition: filter 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
    cursor: default;
}

.dashboard-preview:hover {
    filter: blur(0);
    opacity: 1;
    transform: scale(1.01);
}

body.light-mode .dashboard-preview {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.dash-label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

body.light-mode .dash-label {
    color: rgba(0, 0, 0, 0.45);
}

.dash-live {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #F46B2F;
    letter-spacing: 1px;
    animation: dashPulse 2s ease-in-out infinite;
}

@keyframes dashPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.dash-metric-row {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
}

.dash-metric {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-metric:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 20px;
}

.dash-metric:nth-child(2) {
    padding-left: 20px;
}

.dash-metric-val {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    color: #F46B2F;
    line-height: 1;
}

.dash-metric-name {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

body.light-mode .dash-metric-name {
    color: rgba(0, 0, 0, 0.4);
}

.dash-chart {
    height: 80px;
    margin-bottom: 24px;
}

.dash-bar-group {
    display: flex;
    align-items: flex-end;
    height: 100%;
    gap: 8px;
}

.dash-bar {
    flex: 1;
    height: var(--h);
    background: var(--c);
    border-radius: 3px 3px 0 0;
    transition: height 0.6s ease;
}

.dash-footer {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
    transition: color 0.3s ease;
}

body.light-mode .dash-footer {
    color: rgba(0, 0, 0, 0.35);
}

.line-animation-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    margin: 40px 0;
}

.anim-text {
    position: absolute;
    font-size: clamp(22px, 2.5vw, 36px);
    color: #F46B2F;
    letter-spacing: 2px;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    /* Sped up from 1s */
}

/* PHASE 1 → SHOW TEXT */
.line-animation-container.phase-1 .anim-text {
    opacity: 1;
    transform: translateY(0);
}

/* PHASE 2 → TEXT DISAPPEARS */
.line-animation-container.phase-2 .anim-text {
    opacity: 0;
    transform: scaleX(0.2);
    transition: all 0.3s ease;
    /* Sped up from 0.8s */
}

.anim-line {
    position: absolute;
    left: 50%;
    top: 0;

    width: 4px;
    height: 0;

    background: #F46B2F;

    transform: translateX(-50%);
    opacity: 0;
    z-index: 10;
}

.line-animation-container.phase-3 .anim-line {
    opacity: 1;
    height: 180px;
    transition: height 0.4s ease, opacity 0.2s ease;
    /* Sped up from 1.2s */
}

@media (max-width: 900px) {
    .challenges-section {
        padding: 80px 30px;
    }

    .challenges-inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }
}

@media (max-width: 600px) {
    .challenges-section {
        padding: 60px 20px;
    }
}

/* --- TEAM SECTION: ARCS & CARD STYLES --- */

.team-arc-wrapper {
    position: relative;
    width: 100%;
    min-height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    z-index: 1;
}

.team-arc-svg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    z-index: 0;

    pointer-events: none;
    overflow: visible;
}

body.light-mode .arc-outer {
    stroke: #222222 !important;
}

.team-grid-2 {
    position: relative;
    z-index: 10;

    width: 100%;
}

.team-arc-wrapper .team-card {
    opacity: 1 !important;

    transform: translateY(0) !important;
    background-color: #111111 !important;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

body.light-mode .team-arc-wrapper .team-card {
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* --- TEAM SECTION: CENTERING & ARC ANIMATION --- */

.team-grid.team-grid-2 {
    display: flex !important;

    justify-content: center;
    gap: 100px !important;

    max-width: 1000px;
    margin: 0 auto;
}

.team-grid-2 .team-card {
    flex: 1 1 400px;
    max-width: 450px;
}

/* --- TEAM SECTION: SCROLL ANIMATION --- */

.animated-arc {
    stroke-dasharray: 2600;
    stroke-dashoffset: 2600;
    animation: none;

}

.team-arc-wrapper.show-arcs .animated-arc {
    animation: drawBaldArcs 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.team-arc-wrapper.show-arcs .animated-arc:nth-child(1) {
    animation-delay: 0.2s;
}

.team-arc-wrapper.show-arcs .animated-arc:nth-child(2) {
    animation-delay: 0.4s;
}

.team-arc-wrapper.show-arcs .animated-arc:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes drawBaldArcs {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawBaldArcs {
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 1024px) {
    .team-grid.team-grid-2 {
        gap: 50px !important;
    }
}

@media (max-width: 768px) {
    .team-grid.team-grid-2 {
        flex-direction: column;
        align-items: center;
        gap: 30px !important;
    }

    .team-grid-2 .team-card {
        width: 100%;
    }
}

/* --- TEAM SECTION: HEADER VISIBILITY --- */

#team-title,
#team-title .letter {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
}

#team .team-sub-title {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

#team .section-label,
#team .team-main-title,
#team .team-sub-title {
    position: relative;
    z-index: 20 !important;
}

#team .team-sub-title {
    margin-bottom: 20px !important;
    /* Pushes the cards/arcs down slightly */
}

/* --- HERO METRICS PANEL --- */
.hero-metrics-panel {
    position: absolute;
    top: 55%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
    width: 280px;
    direction: ltr;

}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 24px;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    animation: metricFloat 6s ease-in-out infinite;
}

.metric-card:nth-child(1) {
    animation-delay: 0s;
}

.metric-card:nth-child(2) {
    animation-delay: 0.8s;
}

.metric-card:nth-child(3) {
    animation-delay: 1.6s;
}

.metric-card:nth-child(4) {
    animation-delay: 2.4s;
}

.metric-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(244, 107, 47, 0.4);
    background: rgba(255, 255, 255, 0.06);
    animation-play-state: paused;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.metric-label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.metric-value {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #F46B2F;

    line-height: 1;
}

.metric-icon {
    font-size: 14px;
}

.metric-icon.up {
    color: #91E88E;

}

.metric-icon.down {
    color: #91E88E;

}

.metric-icon.neutral {
    color: #F46B2F;
}

body.light-mode .metric-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .metric-card:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(244, 107, 47, 0.4);
}

body.light-mode .metric-label {
    color: rgba(0, 0, 0, 0.5);
}

@keyframes metricFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 1024px) {
    .hero-metrics-panel {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
        margin: 40px auto 0;
        grid-column: 1 / -1;
    }

    .metric-card {
        animation: none;

    }
}

/* --- HERO UNIFIED PERFORMANCE PANEL --- */
.hero-unified-panel {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    width: 360px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    direction: ltr;

    animation: gentleFloat 7s ease-in-out infinite 1s;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.live-indicator {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #F46B2F;
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

.header-icon {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.panel-metrics-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.panel-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.p-value {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #F46B2F;
    line-height: 1;
}

.p-label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-chart-container {
    width: 100%;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
}

.chart-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.chart-growth {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #91E88E;
    /* Light Green */
}

.css-bar-chart {
    display: flex;
    align-items: flex-end;
    height: 70px;
    gap: 6px;
    width: 100%;
}

.bar-wrapper {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px 4px 0 0;
}

.bar-fill {
    width: 100%;
    height: 0%;

    background: rgba(244, 107, 47, 0.4);
    border-radius: 4px 4px 0 0;
    transition: height 1s cubic-bezier(0.25, 1, 0.5, 1) var(--bar-delay);
}

.bar-fill.highlight {
    background: #F46B2F;
}

.css-bar-chart.animate-bars .bar-fill {
    height: var(--target-h);
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 8px));
    }
}

body.light-mode .hero-unified-panel {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .live-indicator,
body.light-mode .p-label,
body.light-mode .chart-title {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .panel-header {
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .bar-wrapper {
    background: rgba(0, 0, 0, 0.03);
}

@media (max-width: 1024px) {
    .hero-unified-panel {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 450px;
        margin: 40px auto 0;
        grid-column: 1 / -1;
        animation: none;
    }
}

/* --- HERO DASHBOARD PANEL (LANDSCAPE) --- */
.hero-dashboard-panel.landscape {
    position: absolute;
    top: 55%;


    transform: translateY(-50%);
    width: 680px;

    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    z-index: 10;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    direction: ltr;
    animation: dashboardFloatWide 8s ease-in-out infinite 1s;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.live-status {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #F46B2F;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(244, 107, 47, 0.6);
    animation: pulseGlow 2s infinite;
}

.dash-controls {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px;
    border-radius: 8px;
}

.time-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-btn:hover {
    color: #FFFFFF;
}

.time-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.dash-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Splits panel: Left is main chart, Right is 2x2 grid */
    gap: 32px;
}

.dash-main-metric {
    margin-bottom: 24px;
}

.dm-label {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.dm-value-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dm-value {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #F46B2F;
    line-height: 1;
}

.dm-growth {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dm-growth.positive {
    color: #91E88E;
    background: rgba(145, 232, 142, 0.15);
}

.dm-growth.negative {
    color: #FF4D4D;
    background: rgba(255, 77, 77, 0.15);
}

.dash-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-content: start;
}

.dash-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.db-label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.db-value {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
}

.db-value.positive {
    color: #91E88E;
}

.db-value.negative {
    color: #91E88E;
}

.sparkline {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.spark-fill {
    height: 100%;
    border-radius: 2px;
    width: 0%;

    transition: width 1s ease 0.5s;
}

.sparkline.positive .spark-fill {
    background: #91E88E;
}

.sparkline.neutral .spark-fill {
    background: #F46B2F;
}

.sparkline.negative .spark-fill {
    background: #91E88E;

}

.hero-dashboard-panel.show-data .spark-fill {
    /* JS will trigger this class to reveal sparklines */
}

.dash-chart-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.css-advanced-chart {
    display: flex;
    align-items: flex-end;
    height: 80px;
    gap: 8px;
    width: 100%;
}

.chart-col {
    flex: 1;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: flex-end;
}

.chart-bar {
    width: 100%;
    height: 0%;
    background: rgba(244, 107, 47, 0.3);
    border-radius: 4px 4px 0 0;
    transition: height 1s cubic-bezier(0.2, 0.8, 0.2, 1) var(--d);
}

.chart-bar.highlight {
    background: #F46B2F;
    box-shadow: 0 0 15px rgba(244, 107, 47, 0.4);
}

.css-advanced-chart.animate-bars .chart-bar {
    height: var(--h);
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px rgba(244, 107, 47, 0.6);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.9);
        box-shadow: 0 0 2px rgba(244, 107, 47, 0.2);
    }
}

@keyframes dashboardFloatWide {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 10px));
    }
}

body.light-mode .hero-dashboard-panel.landscape {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

body.light-mode .live-status,
body.light-mode .db-value,
body.light-mode .time-btn.active {
    color: #000000;
}

body.light-mode .dash-controls {
    background: rgba(0, 0, 0, 0.05);
}

body.light-mode .time-btn {
    color: rgba(0, 0, 0, 0.5);
}

body.light-mode .time-btn.active {
    background: #FFFFFF;
}

body.light-mode .dm-label,
body.light-mode .db-label,
body.light-mode .chart-labels {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .dash-header {
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .dash-box {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.05);
}

body.light-mode .dash-chart-section {
    background: rgba(0, 0, 0, 0.02);
}

body.light-mode .chart-col,
body.light-mode .sparkline {
    background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 1200px) {
    .hero-dashboard-panel.landscape {
        width: 100%;
        max-width: 600px;

    }
}

@media (max-width: 1024px) {
    .hero-dashboard-panel.landscape {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 600px;
        margin: 40px auto 0;
        grid-column: 1 / -1;
        animation: none;
    }

    .dash-main-grid {
        grid-template-columns: 1fr;

        gap: 24px;
    }
}

/* --- DASHBOARD SWITCHER & HOLOGRAM VIEW --- */

.hero-dashboard-switcher {
    position: absolute;
    top: 55%;

    transform: translateY(-50%);
    width: 680px;
    height: 200px;


    z-index: 10;
    direction: ltr;
    cursor: pointer;
    perspective: 1000px;
}

.switcher-hint {
    position: absolute;
    bottom: -35px;
    right: 20px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.hero-dashboard-switcher:hover .switcher-hint {
    color: #F46B2F;
}

.dash-view {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95) translateY(10px);
}

.dash-view.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

.hero-dashboard-panel.landscape {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    height: auto;
    animation: none;
}

.view-hologram {
    background: transparent;
}

.holo-bg-lines {
    position: absolute;
    inset: 20px;
    border: 1px dashed rgba(244, 107, 47, 0.15);
    border-radius: 50%;
    animation: spinSlow 30s linear infinite;
    pointer-events: none;
}

.holo-card {
    position: absolute;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(244, 107, 47, 0.2);
    border-top: 2px solid #F46B2F;

    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(244, 107, 47, 0.05);
    display: flex;
    flex-direction: column;
    animation: holoFloat 5s ease-in-out infinite alternate var(--delay);
}


.hub-title {
    font-family: 'Altone Trial', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 2px;
}

.hub-data {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 24px;
    color: #91E88E;
    font-weight: 800;
    margin-top: 8px;
}

.sat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
    gap: 16px;
}

.sat-header img {
    height: 24px;
    width: auto;
}

.sat-badge {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 6px;
    border-radius: 4px;
}

.sat-tl {
    top: 20px;
    left: 40px;
    width: 180px;
}

.sat-tr {
    top: 40px;
    right: 20px;
    width: 160px;
}

.sat-bl {
    bottom: 30px;
    left: 20px;
    width: 170px;
}

.sat-br {
    bottom: 40px;
    right: 50px;
    width: 160px;
}

.sat-ml {
    top: 180px;
    left: -10px;
    padding: 12px;
    align-items: center;
    flex-direction: row;
    gap: 12px;
}

.sat-ml img,
.sat-mr img {
    height: 20px;
}

.sat-mr {
    top: 200px;
    right: -20px;
    padding: 12px;
    align-items: center;
    flex-direction: row;
    gap: 12px;
}

.sat-bars {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.sat-fill {
    height: 100%;
    background: #F46B2F;
}

.sat-stat-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 700;
}

.sat-trend {
    color: #91E88E;
    font-size: 14px;
}

.sat-mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
    width: 100%;
}

.sat-mini-bars div {
    flex: 1;
    background: rgba(244, 107, 47, 0.6);
    border-radius: 2px 2px 0 0;
}

.sat-circle-chart {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sat-circle-chart svg {
    width: 36px;
    height: 36px;
    transform: rotate(-90deg);
}

.c-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.c-fill {
    fill: none;
    stroke: #91E88E;
    stroke-width: 3;
    stroke-linecap: round;
}

.sat-circle-chart span {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 700;
}

@keyframes holoFloat {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-12px);
    }
}



body.light-mode .holo-card {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.light-mode .hub-title,
body.light-mode .sat-stat-text,
body.light-mode .sat-circle-chart span {
    color: #000;
}

body.light-mode .sat-badge {
    color: rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 0, 0, 0.2);
}

body.light-mode .switcher-hint {
    color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 1200px) {
    .hero-dashboard-switcher {
        width: 100%;
        max-width: 600px;

        height: 400px;
    }



    .sat-ml,
    .sat-mr {
        display: none;
    }

}

@media (max-width: 1024px) {
    .hero-dashboard-switcher {
        position: relative !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 40px auto 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        height: auto !important;
    }

    .dash-view,
    .dash-view:not(.active),
    .dash-view.active {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        margin: 0 auto !important;
        transform-origin: top center !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
        justify-content: center !important;
    }

    .dash-view.view-landscape {
        order: 1 !important;
        transform: scale(0.7) !important;
        margin-bottom: -40px !important;
    }

    .dash-view.view-hologram {
        order: 2 !important;
        transform: scale(0.75) !important;
    }

    .switcher-hint {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .dash-view.view-landscape {
        transform: scale(0.55) !important;
        margin-bottom: -100px !important;
    }

    .dash-view.view-hologram {
        transform: scale(0.6) !important;
    }
}

@media (max-width: 480px) {
    .dash-view.view-landscape {
        transform: scale(0.45) !important;
        margin-bottom: -160px !important;
    }

    .dash-view.view-hologram {
        transform: scale(0.5) !important;
    }
}

/* --- DASHBOARD SWITCHER & HOLOGRAM VIEW --- */

.hero-dashboard-switcher {
    position: absolute;
    top: 45%;

    transform: translateY(-50%);
    width: 680px;
    height: 380px;
    z-index: 10;
    direction: ltr;
    cursor: pointer;
    perspective: 1000px;
}

.switcher-hint {
    position: absolute;
    bottom: -35px;
    right: 20px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.hero-dashboard-switcher:hover .switcher-hint {
    color: #F46B2F;
}

.dash-view {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95) translateY(10px);
}

.dash-view.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

.hero-dashboard-panel.landscape {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    height: 100%;
    animation: none;

}

.view-hologram {
    background: transparent;
}

.holo-bg-lines {
    position: absolute;
    inset: 20px;
    border: 1px dashed rgba(244, 107, 47, 0.15);
    border-radius: 50%;
    animation: spinSlow 30s linear infinite;
    pointer-events: none;
}

.holo-card {
    position: absolute;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(244, 107, 47, 0.2);
    border-top: 2px solid #F46B2F;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(244, 107, 47, 0.05);
    display: flex;
    flex-direction: column;
    animation: holoFloat 5s ease-in-out infinite alternate var(--delay);
}

.holo-sat {
    display: none !important;
}



.hub-title {
    font-family: 'Altone Trial', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 2px;
}

.hub-data {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 24px;
    color: #91E88E;
    font-weight: 800;
    margin-top: 8px;
}

.sat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
    gap: 16px;
}

.sat-header img {
    height: 24px;
    width: auto;
}

.sat-badge {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 6px;
    border-radius: 4px;
}

.sat-tl {
    top: 20px;
    left: 40px;
    width: 180px;
}

.sat-tr {
    top: 40px;
    right: 20px;
    width: 160px;
}

.sat-bl {
    bottom: 30px;
    left: 20px;
    width: 170px;
}

.sat-br {
    bottom: 40px;
    right: 50px;
    width: 160px;
}

.sat-ml {
    top: 180px;
    left: -10px;
    padding: 12px;
    align-items: center;
    flex-direction: row;
    gap: 12px;
}

.sat-ml img,
.sat-mr img {
    height: 20px;
}

.sat-mr {
    top: 200px;
    right: -20px;
    padding: 12px;
    align-items: center;
    flex-direction: row;
    gap: 12px;
}

.sat-bars {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.sat-fill {
    height: 100%;
    background: #F46B2F;
}

.sat-stat-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 700;
}

.sat-trend {
    color: #91E88E;
    font-size: 14px;
}

.sat-mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
    width: 100%;
}

.sat-mini-bars div {
    flex: 1;
    background: rgba(244, 107, 47, 0.6);
    border-radius: 2px 2px 0 0;
}

.sat-circle-chart {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sat-circle-chart svg {
    width: 36px;
    height: 36px;
    transform: rotate(-90deg);
}

.c-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.c-fill {
    fill: none;
    stroke: #91E88E;
    stroke-width: 3;
    stroke-linecap: round;
}

.sat-circle-chart span {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 700;
}

@keyframes holoFloat {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-12px);
    }
}

.rect-rings {
    position: absolute !important;
    inset: -20px !important;
    z-index: 1 !important;
    pointer-events: none !important;
    border: none !important;
    background: none !important;
}

.marching-ants {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: visible !important;
}

.marching-rect {
    fill: none !important;
    stroke: rgba(62, 192, 1, 0.747) !important;
    stroke-width: 2 !important;
    stroke-dasharray: 14 10 !important;
    stroke-linecap: square !important;
    animation: marchingAnts 5s linear infinite !important; /* Slowed down from 1.5s to 5s */
}

@keyframes marchingAnts {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -96;
    }
}

body.light-mode .holo-card {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.light-mode .hub-title,
body.light-mode .sat-stat-text,
body.light-mode .sat-circle-chart span {
    color: #000;
}

body.light-mode .sat-badge {
    color: rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 0, 0, 0.2);
}

body.light-mode .switcher-hint {
    color: rgba(0, 0, 0, 0.5);
}

/* =========================================
   ULTIMATE FIX: HERO DASHBOARD SIZING (SMALLER)
   ========================================= */

/* Base Desktop (Default) */
.hero-dashboard-switcher {
    position: absolute !important;
    top: 50% !important;

    transform-origin: right center !important;
    transform: translateY(-50%) scale(0.65) !important;
    /* Shrunk universally to 65% of its original size */
    width: 680px !important;
    height: 480px !important;
    margin: 0 !important;
}

/* Large Monitors (1440px+) */
@media (min-width: 1440px) {
    .hero-dashboard-switcher {

        transform: translateY(-50%) scale(0.75) !important;
        /* 75% size on large screens */
    }
}

/* Standard Laptops (1366px and below) */
@media (max-width: 1366px) {
    .hero-dashboard-switcher {
        right: 4% !important;
        transform: translateY(-50%) scale(0.55) !important;
        /* 55% size on standard laptops */
    }
}

/* Smaller Laptops (1150px and below) */
@media (max-width: 1150px) {
    .hero-dashboard-switcher {
        transform: translateY(-50%) scale(0.45) !important;
        /* 45% size on small screens */
    }
}

/* --- @MEDIA: MOBILE & TABLET (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .hero-dashboard-switcher {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        transform-origin: center center !important;
        transform: scale(0.75) !important;
        margin: 20px auto 60px !important;
        grid-column: 1 / -1 !important;
    }

    .dash-view.active {
        transform: none !important;
    }
}

/* --- MARQUEE COLORS & HOVER EFFECTS --- */

/* 1. Turn the orange marquee background to dark gray */
.marquee-orange,
.scrolling-marquee,
.brand-marquee {
    background-color: #111111 !important;

    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-content img,
.brand-marquee img,
.scrolling-marquee img {
    filter: brightness(0) invert(1) opacity(0.5) !important;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease !important;
    cursor: pointer;
}

.marquee-content img:hover,
.brand-marquee img:hover,
.scrolling-marquee img:hover {
    filter: brightness(0) invert(1) opacity(1) !important;
    transform: scale(1.05);
}

/* Light Mode Overrides for Marquee */
body.light-mode .marquee-orange,
body.light-mode .scrolling-marquee,
body.light-mode .brand-marquee {
    background-color: #f5f5f5 !important;
    border-color: rgba(0, 0, 0, 0.05);
}

/* --- CTA & FOOTER LAYOUT --- */

/* Ensure the Orange CTA section takes up its physical space properly */
.cta-orange-section {
    position: relative !important;
    z-index: 10 !important;
    display: block !important;
    clear: both !important;
    margin-bottom: 0 !important;
}

/* Push the footer strictly below the CTA section */
.site-footer,
#footer {
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    width: calc(100% - 80px) !important;
    max-width: 1600px !important;
    margin: 40px auto !important;
    clear: both !important;
}

@media (max-width: 768px) {

    .site-footer,
    #footer {
        width: calc(100% - 40px) !important;
        margin: 20px auto !important;
    }
}

/* --- BRAND MARQUEE --- */

/* 1. Set the background to the light gray from your screenshot */
.trusted-brands {
    background-color: #1a1a1a !important;

    padding: 20px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
    margin-bottom: 0px;
    border: none !important;
    transition: background-color 0.3s ease;
}

/* Ensure the title text above the marquee is visible (dark text) */
.trusted-brands h2 {
    color: #333333 !important;
}

.brand-item img {
    height: 42px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.5) !important;
    transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease !important;
}

.brand-item img:hover {
    filter: brightness(0) invert(1) opacity(1) !important;
    transform: scale(1.05);
}

body.light-mode .trusted-brands {
    background-color: #F5F5F5 !important;
}

/* --- TESTIMONIAL CARD TYPOGRAPHY --- */

.testimonial-client-info {
    display: flex;
    flex-direction: column;
    gap: 0px !important;

    margin-top: auto;
}

/* Light Orange Name */
.testimonial-author {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px !important;
    /* Reduced from 18px */
    font-weight: 700 !important;
    color: #FFAA85 !important;

    margin: 0 !important;
    line-height: 1.2 !important;
}

/* Smaller, Faded Gray Uppercase Role */
.testimonial-role {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px !important;

    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin: 0 !important;
    padding-top: 2px !important;

}

body.light-mode .testimonial-author {
    color: #F46B2F !important;

}

body.light-mode .testimonial-role {
    color: rgba(0, 0, 0, 0.5) !important;
}

/* --- HERO LAYOUT & RESPONSIVENESS --- */

.hero {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    min-height: 90vh !important;
    padding: 160px 80px 80px !important;
    direction: ltr !important;

    position: relative !important;
}

.hero-eyebrow,
.hero-title,
.hero-desc,
.btn-primary,
.socials {
    grid-column: auto !important;
    grid-row: auto !important;
    margin: 0 0 20px 0 !important;
    max-width: 600px !important;
    /* Acts as an invisible wall protecting the text */
    align-self: flex-start !important;
    text-align: left !important;
    direction: ltr !important;
}

/* Kills the forced 20px margin so the buttons sit closer together */
.hero-cta-group .btn-primary {
    margin-bottom: 0 !important;
}

.socials {
    margin-top: 30px !important;
}

.hero-title {
    margin-bottom: 24px !important;
}

.hero-desc {
    margin-bottom: 32px !important;
}

@media (max-width: 1366px) {

    .hero-eyebrow,
    .hero-title,
    .hero-desc,
    .btn-primary,
    .socials {
        max-width: 500px !important;
    }
}

@media (max-width: 1150px) {

    .hero-eyebrow,
    .hero-title,
    .hero-desc,
    .btn-primary,
    .socials {
        max-width: 400px !important;
    }

    .hero-title {
        font-size: clamp(36px, 4vw, 54px) !important;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 140px 40px 40px !important;
        align-items: center !important;
        min-height: auto !important;
    }

    .hero-eyebrow,
    .hero-title,
    .hero-desc,
    .btn-primary,
    .socials {
        max-width: 100% !important;
        align-self: center !important;
        text-align: center !important;
    }

    .hero-dashboard-switcher {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        transform: scale(0.85) !important;
        transform-origin: top center !important;
        margin: 60px auto 0 !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 40px !important;
    }

    .hero-dashboard-switcher {
        transform: scale(0.55) !important;

    }
}

.logo .logo-full,
.logo .logo-icon,
.footer-logo {
    filter: none !important;
}

body.light-mode .logo .logo-full,
body.light-mode .logo .logo-icon,
body.light-mode .footer-logo {
    filter: none !important;
}

/* =========================================
   THE FLAWLESS BOX: PINPOINT MATH FIX
   ========================================= */

@media (max-width: 1024px) {

    /* 1. Stop horizontal scroll */
    body {
        overflow-x: hidden !important;
    }

    .hero {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 120px 20px 0px !important;
        /* 0 bottom padding so it smoothly touches marquee */
        min-height: auto !important;
    }

    /* Force strict vertical order on mobile to prevent inversion */
    .hero-eyebrow {
        order: 1 !important;
    }

    .hero-title {
        order: 2 !important;
    }

    .hero-desc {
        order: 3 !important;
    }

    .hero-cta-group {
        order: 4 !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .socials {
        order: 5 !important;
    }

    .hero-dashboard-switcher {
        order: 6 !important;
    }

    .hero-eyebrow,
    .hero-title,
    .hero-desc,
    .btn-primary,
    .socials {
        text-align: center !important;
        align-self: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }

    .socials {
        justify-content: center !important;
        margin-bottom: 40px !important;
    }

    /* 2. THE WRAPPER: Exact physical heights */
    .hero-dashboard-switcher {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        margin: 0 auto 30px auto !important;
        transform: none !important;
        right: auto !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
    }

    /* 3. DASHBOARD CARDS: Absolute Center Math (Impossible to drift) */
    .dash-view {
        position: absolute !important;
        top: 0 !important;
        left: 50% !important;
        margin-left: 0 !important;
        /* Resets the broken margin math */

        width: 680px !important;
        height: 480px !important;
        transform-origin: top center !important;
    }

    .dash-view.active {
        display: block !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        /* translateX perfectly centers it before scaling */
        transform: translateX(-50%) scale(0.75) !important;
    }

    .dash-view:not(.active) {
        display: block !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateX(-50%) scale(0.75) !important;
    }

    /* 4. THE FATAL FLAW FIX: Destroy the desktop positioning */
    .hero-dashboard-panel.landscape {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 !important;
        right: auto !important;
        bottom: auto !important;
    }

    /* 5. THE TEXT: Glued to the floor of the exact-height wrapper */
    .switcher-hint {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        margin: 0 !important;
        transform: none !important;
    }
}

/* --- Standard Phones --- */
@media (max-width: 768px) {
    .hero-dashboard-switcher {
        /* Math: Scaled dash (230px) + Gap & Text (40px) = 270px */
        height: 270px !important;

    }

    .dash-view.active,
    .dash-view:not(.active) {
        transform: translateX(-50%) scale(0.48) !important;
    }
}

/* --- Extra Small Phones --- */
@media (max-width: 380px) {
    .hero-dashboard-switcher {
        /* Math: Scaled dash (201px) + Gap & Text (39px) = 240px */
        height: 240px !important;
    }

    .dash-view.active,
    .dash-view:not(.active) {
        transform: translateX(-50%) scale(0.42) !important;
    }
}

/* =========================================
   DEMO VIDEO: MOBILE LAYOUT & SPACING
   ========================================= */

@media (max-width: 1024px) {

    /* 1. Make the video container larger and relative for note placement */
    .demo-video-section .video-preview-wrapper {
        width: 90% !important;
        /* Take up more horizontal space */
        max-width: 900px !important;
        /* Increase max width slightly on tablets */
        margin: 40px auto !important;
        /* Better central spacing */
        aspect-ratio: 16 / 9 !important;
        /* Maintain the standard aspect ratio */
        position: relative !important;
        /* Required to anchor the absolute note */
        overflow: visible !important;
        /* Let the note overlap slightly */
    }

    .demo-video-section .demo-video {
        width: 100% !important;
        height: 100% !important;
        border-radius: 12px !important;
        /* Slightly more rounded corners */
        border: 2px solid rgba(255, 255, 255, 0.2) !important;
        /* Subtle border */
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6) !important;
        /* Increased shadow for depth */
    }

    /* 2. Create the smaller, top-left 'sticky note' for the turnaround time */
    .demo-video-section .turnaround-note {
        position: absolute !important;
        top: -20px !important;
        /* Offset slightly from the video edge */
        left: -20px !important;
        /* Offset slightly from the video edge */
        z-index: 15 !important;
        /* Ensure it is layered above the video */

        background-color: #f7e082 !important;
        /* A light yellow sticky note color */
        border-radius: 4px !important;
        padding: 6px 10px !important;
        /* Further reduced padding for a smaller feel */
        font-size: 13px !important;
        /* Even smaller, readable text */
        font-weight: bold !important;
        color: #444 !important;
        /* Dark text for contrast */
        box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4) !important;
        /* Stronger sticky note shadow */

        width: max-content !important;
        /* Fits the text, not full width */
        text-align: left !important;

        /* Apply a distinct common scale to manage size across different small screens */
        transform-origin: top left !important;
        transform: scale(0.85) !important;
        /* Noticeably shrink the overall note */
    }

    /* 3. Provide adequate breathing room for other sections below the hero */
    .challenges-section,
    .team-section,
    .about-section,
    .who-we-serve-section,
    .social-reality-section {
        padding: 60px 20px !important;
    }
}

/* Adjustments for extra small phones (e.g., iPhone SE) */
@media (max-width: 380px) {
    .demo-video-section .video-preview-wrapper {
        width: 95% !important;
        /* Use almost full width on the smallest screens */
    }

    .demo-video-section .turnaround-note {
        transform: scale(0.75) !important;
        /* Scale down even further on tiny screens */
        top: -15px !important;
        left: -15px !important;
    }
}

/* ============================================================
   TASK 2 ONLY: DEMO VIDEO — STICKY NOTE (mobile reskin only)
   Desktop hover/fade behavior is fully preserved.
   ============================================================ */

@media (max-width: 1024px) {

    /* Make the video container slightly larger and allow the note to peek out */
    .demo-video-section .video-container {
        width: 92% !important;
        max-width: 860px !important;
        margin: 0 auto !important;
        overflow: visible !important;
        position: relative !important;
    }

    /* Reskin .video-badge as a sticky note pinned to the bottom-left corner */
    .demo-video-section .video-badge {
        top: auto !important;
        bottom: -15px !important;
        left: -10px !important;

        background: #e9e9e9 !important;
        color: #111 !important;
        padding: 10px 14px !important;
        border-radius: 4px !important;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25) !important;

        font-family: 'Epilogue', 'Helvetica Neue', sans-serif !important;
        font-size: 18px !important;
        font-weight: 900 !important;
        line-height: 1.2 !important;

        max-width: max-content !important;
        white-space: nowrap !important;
        transform: rotate(0deg) !important;
        transform-origin: top left !important;
        z-index: 20 !important;
    }

    /* The small "TURNAROUND TIME" span inside the badge */
    .demo-video-section .video-badge span {
        font-family: 'Inter', sans-serif !important;
        font-size: 10px !important;
        color: #666 !important;
        font-weight: 900 !important;
        margin-top: 2px !important;
    }
}

/* — Extra-small phones ≤ 380px — */
@media (max-width: 380px) {

    .demo-video-section .video-container {
        width: 96% !important;
    }

    .demo-video-section .video-badge {
        font-size: 10px !important;
        max-width: max-content !important;
        white-space: nowrap !important;
        left: -8px !important;
        top: auto !important;
        bottom: -12px !important;
        padding: 6px 8px !important;
    }
}

/* ============================================================
   EPILOGUE FONT — H1 / H2 PRIMARY HEADERS (weight 900)
   ============================================================ */

h1,
h2,
.hero-title,
.wws-title,
.sr-title,
.demo-caption,
.about-main-text,
.challenges-title,
.bridge-text,
.testimonials-title,
.cta-big-title,
.guessing-text,
.systems-text,
.approach-title,
.faq-title {
    font-family: 'Epilogue', 'Helvetica Neue', sans-serif !important;
    font-weight: 900 !important;
}

/* ============================================================
   HERO CTA GROUP — Book + Watch Video side by side
   ============================================================ */

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    grid-column: 3 / 4;
    grid-row: 4 / 5;
    justify-self: end;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* Mobile — stack the CTA group */
@media (max-width: 1024px) {
    .hero-cta-group {
        grid-column: auto !important;
        grid-row: auto !important;
        justify-self: center !important;
        justify-content: center !important;
        margin: 0 0 20px 0 !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .btn-watch-video {
        justify-content: center;
    }
}

/* ============================================================
   WATCH DEMO BUTTON — pixel-matched to btn-primary
   ============================================================ */

.btn-watch-video {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: #111111 !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    /* Same padding as .btn-primary: 16px 28px — minus 1px border each side = net same height */
    padding: 15px 27px !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(14px, 1.5vw, 18px) !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    transition: border-color 0.3s ease, background 0.3s ease !important;
    white-space: nowrap !important;
    margin-top: 0 !important;
    height: auto !important;
}

.btn-watch-video:hover {
    background: #1c1c1c !important;
    border-color: #F46B2F !important;
}

/* The play circle — sized to the line-height, NOT inflating the button */
.watch-play-icon {
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    background-color: #F46B2F !important;
    color: #FFFFFF !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 8px !important;
    padding-left: 2px !important;
    flex-shrink: 0 !important;
    /* Key: flex-shrink but do NOT set min-height so it never forces button open */
    align-self: center !important;
    transition: transform 0.3s ease !important;
}

.btn-watch-video:hover .watch-play-icon {
    transform: scale(1.1) !important;
}

body.light-mode .btn-watch-video {
    background: #efefef !important;
    color: #000000 !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
}

body.light-mode .btn-watch-video:hover {
    border-color: #F46B2F !important;
}

/* ============================================================
   VIDEO MODAL OVERLAY
   ============================================================ */

.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-inner {
    position: relative;
    width: 90%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    transform: scale(0.94) translateY(16px);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-modal-overlay.active .video-modal-inner {
    transform: scale(1) translateY(0);
}

.video-modal-container {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.video-modal-container .video-logo {
    height: 80px;
    opacity: 0.4;
}

.video-modal-container .play-button {
    position: absolute;
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.video-modal-close:hover {
    background: #F46B2F;
    border-color: #F46B2F;
}

/* =========================================
   FIX: DESKTOP BUTTON ALIGNMENT
   ========================================= */

@media (min-width: 769px) {
    .hero-cta-group {
        display: flex !important;
        flex-direction: row !important;

        /* THIS IS THE MAGIC FIX: Forces both items to share the exact horizontal middle line */
        align-items: center !important;

        gap: 24px !important;
    }

    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-watch-video {
        /* Strips any rogue desktop margins causing them to shift up or down */
        margin-top: 0 !important;
        margin-bottom: 0 !important;

        /* Ensures they sit statically side-by-side */
        position: relative !important;
        top: 0 !important;
    }
}

/* ============================================================
   FIX: VIDEO MODAL HOVER EFFECTS (Grayscale to Color)
   ============================================================ */

.video-modal-container {
    filter: grayscale(100%);
    transition: filter 0.45s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-modal-container:hover {
    filter: grayscale(0%);
    border-color: #F46B2F;
    box-shadow: 0 20px 40px rgba(244, 107, 47, 0.15);
}

/* Play button hover animation inside the modal */
.video-modal-container:hover .play-button {
    transform: scale(1.1);
    background-color: #ffffff;
    color: #F46B2F;
}

@media (max-width: 768px) {
    .video-modal-inner {
        width: 95%;
    }

    .video-modal-close {
        top: -44px;
        right: 0;
    }
}

/* ============================================================
   FIX: DESKTOP VIDEO MODAL SIZING & CLIPPING
   ============================================================ */

@media (min-width: 769px) {
    .video-modal-inner {
        /* Reduce the maximum width to be more laptop-friendly */
        max-width: 900px !important;

        /* The safeguard: ensures the video never hits the top/bottom of the screen */
        max-height: 75vh !important;
    }

    /* Pull the 'X' button slightly down so it hugs the video closer */
    .video-modal-close {
        top: -40px !important;
    }
}

/* =========================================
   LEVEL UP MANIFESTO SECTION
   ========================================= */

.level-up-section {
    padding: 120px 20px;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.level-up-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.level-up-title {
    font-family: 'Epilogue', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

.text-orange {
    color: #F46B2F;
    /* Matches your brand orange */
}

.level-up-desc {
    font-family: 'Altone', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    color: #a0a0a0;
    max-width: 800px;
    margin: 0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .level-up-title {
        font-size: 48px;
    }

    .level-up-desc {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .level-up-section {
        padding: 80px 20px;
    }

    .level-up-title {
        font-size: 36px;
        text-align: left;
        /* Often looks better left-aligned on phones */
    }

    .level-up-desc {
        font-size: 18px;
        text-align: left;
    }
}

.features-section {
    padding: 120px 60px;
    background-color: #000;
    display: flex;
    justify-content: center;
}

.features-container {
    max-width: 1200px;
    width: 100%;
}

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 20px;
}

.features-main-title {
    font-family: 'Helvetica Neue', 'Epilogue', sans-serif;
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin: 0;
    transition: color 0.3s ease;
}

body.light-mode .features-main-title {
    color: #FFFFFF;
}

.features-eyebrow-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding-bottom: 6px;
}

.features-eyebrow-right span {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #F46B2F;
    text-transform: uppercase;
    white-space: nowrap;
}

.features-eyebrow-line {
    width: 60px;
    height: 1px;
    background-color: #F46B2F;
    flex-shrink: 0;
}

/* Bento grid: 3 columns */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.bento-span-2 {
    grid-column: span 2;
}

/* Base card */
.feature-card {
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 42px;
    /* Bigger padding */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
    /* More breathing room */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 340px;
    /* Taller containers */
    transition: border-color 0.35s ease, background-color 0.35s ease,
        transform 0.35s ease, box-shadow 0.35s ease;
}

body.light-mode .feature-card {
    background-color: #f5f5f5;
    border-color: rgba(0, 0, 0, 0.08);
}

/* Font Awesome icon at top of card */
.bento-icon {
    display: block;
    margin-bottom: auto;
    font-size: 36px;
    /* Scaled up icon */
    color: #F46B2F;
    transition: color 0.3s ease;
}

.feature-card h3 {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 21px;
    /* Larger title text */
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin: 0;
    transition: color 0.3s ease;
}

body.light-mode .feature-card h3 {
    color: #000;
}

.feature-card p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 18px;
    /* Larger paragraph text */
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

body.light-mode .feature-card p {
    color: rgba(0, 0, 0, 0.5);
}

/* Highlighted center card — always orange */
.bento-highlight {
    background-color: #F46B2F !important;
    border-color: #F46B2F !important;
}

.bento-highlight .bento-icon,
.bento-highlight h3,
.bento-highlight p {
    color: #fff !important;
}

/* Hover: orange fill + white text + lift — all non-special cards */
.feature-card:not(.bento-highlight):not(.transparent-reporting-card):hover {
    transform: translateY(-6px);
    border-color: #F46B2F;
    background-color: #F46B2F;
    box-shadow: 0 20px 40px rgba(244, 107, 47, 0.2);
}

.feature-card:not(.bento-highlight):not(.transparent-reporting-card):hover h3,
.feature-card:not(.bento-highlight):not(.transparent-reporting-card):hover p,
.feature-card:not(.bento-highlight):not(.transparent-reporting-card):hover .bento-icon {
    color: #fff !important;
}

body.light-mode .feature-card:not(.bento-highlight):not(.transparent-reporting-card):hover {
    background-color: #F46B2F;
}

/* =========================================
   TRANSPARENT REPORTING CARD
   ========================================= */
.transparent-reporting-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 420px !important;
    /* Scaled up to match the rest of the bigger grid */
    overflow: hidden;
}

.transparent-reporting-card:hover {
    border-color: rgba(244, 107, 47, 0.35);
    background-color: #161616;
    transform: none;
    box-shadow: none;
}

body.light-mode .transparent-reporting-card:hover {
    background-color: #ffffff;
}

.bento-card-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

/* Dashboard thumbnail — small & dimmed by default, expands on hover */
.bento-dashboard-thumb {
    flex-shrink: 0;
    width: 190px;
    max-width: 40%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px;
    box-sizing: border-box;
    transform: scale(0.88) translateY(10px);
    opacity: 0.45;
    overflow: hidden;
    align-self: center;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.5s ease,
        box-shadow 0.5s ease;
}

body.light-mode .bento-dashboard-thumb {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

.transparent-reporting-card:hover .bento-dashboard-thumb {
    width: 42%;
    max-width: 42%;
    transform: scale(1) translateY(0);
    opacity: 1;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

/* Mobile */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-span-2 {
        grid-column: span 2;
    }

    .bento-dashboard-thumb {
        width: 150px;
        max-width: 38%;
    }

    .transparent-reporting-card:hover .bento-dashboard-thumb {
        width: 38%;
        max-width: 38%;
    }
}

/* Forces the header to stack vertically on iPads and smaller screens so they never collide */
@media (max-width: 1024px) {
    .features-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 20px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-span-2 {
        grid-column: span 1;
    }

    .transparent-reporting-card {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        gap: 24px;
    }

    .bento-card-text {
        width: 100%;
    }

    .bento-dashboard-thumb {
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        align-self: stretch;
    }

    .feature-card {
        min-height: auto;
        padding: 28px 24px;
    }
}

.video-badge {
    position: absolute;
    top: auto;
    bottom: 16px;
    left: 16px;

    background: #e9e9e9;
    /* softer paper color */
    color: #111;

    padding: 10px 12px;
    border-radius: 4px;

    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2;

    transform: rotate(-4deg);

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.4) inset;

    z-index: 3;
}


/* === FINAL VIDEO + STICKY NOTE FIX === */

/* Allow sticky note to escape the video card */
.video-container {
    position: relative;
    max-width: 1100px;
    /* slightly bigger now */
    margin: 0 auto;
    overflow: visible !important;
    /* 🔑 THIS FIXES THE CLIPPING */
}

.video-badge {
    position: absolute !important;

    top: auto !important;
    bottom: -24px;
    left: -24px;

    width: 200px;
    height: auto !important;

    display: inline-block !important;

    background: #e9e9e9;
    color: #111;

    padding: 16px 20px;
    border-radius: 6px;

    font-family: 'Epilogue', 'Helvetica Neue', sans-serif !important;
    font-size: 26px;
    font-weight: 900 !important;
    line-height: 1.2;

    transform: rotate(0deg);

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);

    z-index: 999;

    align-self: flex-start !important;
    justify-self: flex-start !important;
}

.video-badge span {
    display: block;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px;
    font-weight: 900 !important;
    color: #666;
    margin-top: 4px;
}

body.light-mode .video-badge,
body.light-mode .demo-video-section .video-badge {
    color: #000000 !important;
}

body.light-mode .video-badge {
    color: #000000 !important;
}

/* subtle paper highlight */
.video-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 4px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.4),
            transparent 40%);
    pointer-events: none;
}

/* === TEST BUTTON === */
.test-btn {
    position: fixed;
    bottom: 40px;
    left: 90px;
    /* beside theme toggle */

    background: #F46B2F;
    color: #fff;

    border: none;
    border-radius: 6px;

    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
    z-index: 1000;

    transition: all 0.3s ease;
}

.test-btn:hover {
    transform: translateY(-2px);
    background: #ff7a3d;
}

/* Hidden state */
.hidden-section {
    display: none;
}

@media (min-width: 1025px) {
    .dashboard-display-section {
        padding: 80px 20px 120px;
    }

    .hero-dashboard-switcher {
        max-width: 850px !important;
        height: 380px !important;
    }

    .dash-view {
        width: 850px !important;
        height: 380px !important;
        margin-left: -225px !important;
    }
}

/* =========================================
   2. PROFESSIONAL FEATURE DASHBOARD
   ========================================= */

.dashboard-popup {
    padding: 25px !important;
    background-color: #0c0c0c !important;
    /* Darker, more premium feel */
    border-radius: 16px;
}

.db-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.db-status {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #F46B2F;
    border-radius: 50%;
    box-shadow: 0 0 8px #F46B2F;
    animation: pulse 1.5s infinite;
}

.db-timeframe {
    font-size: 10px;
    color: #555;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
}

.dashboard-professional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.db-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
}

.span-full {
    grid-column: span 2;
}

.widget-label {
    font-size: 9px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.widget-main {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

body.light-mode .widget-main {
    color: #000000;
}

.widget-trend {
    font-size: 11px;
    font-weight: 700;
    margin-top: 5px;
}

.widget-trend.positive {
    color: #4ade80;
}

/* PRO CHART STYLING */
.pro-chart {
    height: 80px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding-bottom: 5px;
}

.pro-bar {
    flex: 1;
    background: #f8b598;
    height: var(--h);
    border-radius: 2px 2px 0 0;
    transition: height 1s ease;
}

.pro-bar.active {
    background: #F46B2F;
    box-shadow: none;
}

/* =========================================
   EXACT REPLICA DASHBOARD CARD
   ========================================= */
.bento-dashboard-thumb.exact-replica {
    background-color: #FAFAFA !important;
    border: 1px solid #EFEFEF !important;
    border-radius: 16px !important;
    padding: 24px 28px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;

    /* THE ULTIMATE FIX: STRICT LOCKED DIMENSIONS */
    width: 220px !important;
    height: 330px !important;
    /* LOCKS VERTICAL HEIGHT REGARDLESS OF TEXT WRAPPING */
    max-width: none !important;
    flex-shrink: 0 !important;

    transform: scale(0.88) translateY(10px) !important;
    opacity: 0.45 !important;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, box-shadow 0.5s ease !important;
}

/* RESTORED HOVER EXPAND STATE */
.transparent-reporting-card:hover .bento-dashboard-thumb.exact-replica {
    width: 420px !important;
    max-width: none !important;
    flex-shrink: 0 !important;
    transform: scale(1) translateY(0) !important;
    opacity: 1 !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15) !important;
}

/* MOBILE/TABLET FIXES */
@media (max-width: 1024px) {
    .transparent-reporting-card:hover .bento-dashboard-thumb.exact-replica {
        width: 380px !important;
    }
}

@media (max-width: 768px) {
    .transparent-reporting-card {
        min-height: auto !important;
        /* Allows the parent container to grow */
    }

    .bento-dashboard-thumb.exact-replica,
    .transparent-reporting-card:hover .bento-dashboard-thumb.exact-replica {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        /* FIX: Removes the 330px lock so it stops squishing */
        min-height: 330px !important;
        flex-shrink: 1 !important;
        transform: none !important;
        opacity: 1 !important;
    }

    /* FIX: Force metrics to always be visible on mobile since you can't hover */
    .bento-dashboard-thumb.exact-replica .er-metrics {
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }
}

/* EXTRA SMALL MOBILE FIXES (< 500px) */
@media (max-width: 480px) {

    .bento-dashboard-thumb.exact-replica,
    .transparent-reporting-card:hover .bento-dashboard-thumb.exact-replica {
        padding: 20px 16px !important;
        /* Tighter padding so it fits the screen */
        min-height: 280px !important;
        /* Lets the box be slightly shorter */
    }

    .er-header {
        flex-direction: column !important;
        /* Stacks the title and LIVE button on tiny screens */
        align-items: flex-start !important;
        gap: 12px !important;
        white-space: normal !important;
        /* Allows text to wrap */
    }

    .er-metrics {
        padding-right: 0 !important;
        /* Removes right gap to give numbers more room */
        margin-bottom: 20px !important;
    }

    .er-value {
        font-size: 20px !important;
        /* Scales down the big orange numbers */
    }

    .er-label {
        font-size: 10px !important;
    }

    .er-chart {
        height: 60px !important;
        /* Shrinks the chart height slightly */
        gap: 4px !important;
        /* Tighter gaps between bars */
    }
}

.er-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    white-space: nowrap;
    /* Stops glitching while expanding */
}

/* RESTORED MODES CONTAINER */
.er-modes {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Tightened to prevent pushing */
    flex-shrink: 0;
}

.er-timeframe {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #888;
    background: #EBEBEB;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.er-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #999999;
    text-transform: uppercase;
}

.er-live {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #F46B2F;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.er-dot {
    width: 6px;
    height: 6px;
    background-color: #F46B2F;
    border-radius: 50%;
}

.er-divider {
    width: 100%;
    height: 1px;
    background-color: #EBEBEB;
    margin-bottom: 24px;
}

.er-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-right: 15px;

    /* HIDE METRICS ON UNHOVER */
    opacity: 0 !important;
    transform: translateY(8px) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
    pointer-events: none !important;
}

/* FADE IN METRICS ON HOVER */
.transparent-reporting-card:hover .bento-dashboard-thumb.exact-replica .er-metrics {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s !important;
    pointer-events: auto !important;
}

.er-metric {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.er-value {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #F46B2F;
    line-height: 1;
}

.er-label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #A3A3A3;
}

.er-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    margin-bottom: 24px;
}

.er-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    height: var(--h);
}

.er-bar.light {
    background-color: #F8BCA4;
}

.er-bar.dark {
    background-color: #F46B2F;
}

.er-footer {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #A3A3A3;
    line-height: 1.6;
    margin: 0;
}

/* Ensure Light Mode override doesn't break this card */
body.light-mode .bento-dashboard-thumb.exact-replica {
    background-color: #FAFAFA !important;
    border-color: #EFEFEF !important;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Maintain Mobile Integrity */
@media (max-width: 768px) {
    .dashboard-professional-grid {
        gap: 8px;
    }

    .widget-main {
        font-size: 18px;
    }
}

/* =========================
   GLOBAL FONT SYSTEM (STITCH STYLE)
========================= */

body {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

/* HEADINGS (STRONG + MODERN) */
.hero-title,
.wws-title,
.sr-title,
.demo-caption,
.approach-title,
.about-main-text {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* SUBTEXT / PARAGRAPHS */
.hero-desc,
.demo-desc,
.detail-desc,
.sr-subtitle,
.stat-desc {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
}

/* NAV + BUTTONS */
.nav-links a,
.btn-outline,
.btn-primary,
.btn-watch-video {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}

/* SMALL LABELS / UI TEXT */
.section-label,
.db-label,
.stat-desc {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
}

/* METRICS / NUMBERS LOOK PREMIUM */
.db-value,
.stat-number,
.dm-value {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* =========================
   HERO TITLE — THICKER / STRONGER
========================= */

.hero-title {
    font-weight: 800 !important;
    /* thicker than before */
    letter-spacing: -0.04em;
    /* tighter = more premium */
    line-height: 0.95;
    /* compact like high-end sites */
}

/* Optional: make highlighted word (PRESENCE) even stronger */
.hero-title .presence {
    font-weight: 900;
}

/* Slight boost for all major headings */
.wws-title,
.sr-title,
.demo-caption,
.approach-title {
    font-weight: 900 !important;
}

.hero-title,
.wws-title,
.sr-title,
.demo-caption,
.approach-title {
    font-family: 'Sora', sans-serif !important;
}

/* =========================
   HERO TITLE — FIX OVERFLOW + BALANCE
========================= */

.hero-title {
    max-width: 680px;
    /* 🔑 keeps it inside column */
    font-size: clamp(42px, 5vw, 72px);
    /* responsive scaling */
    line-height: 0.95;

    word-break: normal;
    overflow-wrap: normal;
}

/* Ensure hero grid behaves properly */
.hero {
    align-items: start;
}

/* Prevent text from pushing layout */
.hero-content {
    min-width: 0;
}

/* Optional: tighten layout spacing */
.hero-desc {
    max-width: 520px;
}

/* =========================
   MOBILE BUTTON TEXT CENTER FIX
========================= */

@media (max-width: 768px) {
    .btn-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        /* 🔑 centers everything */

        text-align: center;
        gap: 10px;
        /* space between text and arrow */

        width: 100%;
    }

    .btn-primary span,
    .btn-primary-text {
        flex: 0 1 auto;
    }

    .btn-primary i,
    .btn-primary svg {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .transparent-reporting-card {
        min-height: 520px !important;
    }

    .dashboard-popup {
        padding: 15px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .db-header {
        margin-bottom: 12px !important;
    }

    .dashboard-professional-grid {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .db-widget {
        padding: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .pro-chart {
        height: 45px !important;
        gap: 6px !important;
    }

    .widget-main {
        font-size: 20px !important;
    }

    .widget-label {
        font-size: 8px !important;
        margin-bottom: 5px !important;
    }

    .widget-trend {
        font-size: 10px !important;
    }
}

/* =========================================
   STATISTICS (SOCIAL REALITY) - MOBILE FIX
   ========================================= */
@media (max-width: 768px) {

    /* 1. Force perfect 2-column grid so they are always even */
    .sr-stats-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        align-items: stretch !important;
    }

    .sr-stat-item {
        padding: 35px 15px !important;
        /* Tightens padding so text fits */
        justify-content: center !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* 2. Force ALL items to the "highlight" state on mobile */
    .sr-stat-item .sr-stat-number,
    .sr-stat-item .sr-stat-desc {
        color: #FFFFFF !important;
        opacity: 1 !important;
    }

    /* Keep the light mode highlight solid black */
    body.light-mode .sr-stat-item .sr-stat-number,
    body.light-mode .sr-stat-item .sr-stat-desc {
        color: #000000 !important;
    }
}

/* Extra small phones (< 480px) */
@media (max-width: 480px) {
    .sr-stat-item {
        padding: 25px 10px !important;
    }

    .sr-stat-item .sr-stat-number {
        font-size: 28px !important;
        /* Scale numbers down slightly so they don't wrap */
        margin-bottom: 8px !important;
    }

    .sr-stat-item .sr-stat-desc {
        font-size: 11px !important;
    }
}

/* =========================================
   1440PX HERO OVERLAP FIX
   ========================================= */
@media (max-width: 1440px) and (min-width: 1025px) {

    /* Dynamically scale down the massive text so it doesn't push too far right */
    .hero-title,
    .hero-content h1,
    .hero h1 {
        font-size: 5.6vw !important;
    }

    /* Shrink the dashboard graphic slightly and pin it to the right wall */
    .hero-visual,
    .dashboard-wrapper,
    .hero-dashboard-container,
    .dashboard-popup {
        transform: scale(0.85) !important;
        transform-origin: right center !important;
        right: 0 !important;
        /* Ensures it stays hugged to the right side */
    }
}

/* =========================================
   CTA TITLE FLUID SCALING FIX (MOBILE & IPAD)
   ========================================= */
@media (max-width: 1024px) {

    .cta-title,
    .cta-content h2,
    .cta-section h2 {
        font-size: 6vw !important;
        /* Scales down smoothly on iPads */
        white-space: normal !important;
        /* Allows natural wrapping */
    }
}

@media (max-width: 768px) {

    .cta-title,
    .cta-content h2,
    .cta-section h2 {
        font-size: 9vw !important;
        /* Scales down smoothly on phones */
        line-height: 1.2 !important;
        /* Gives the bottom of the letters room to breathe */
        padding: 0 15px !important;
        /* Keeps the letters off the absolute edges */
        word-wrap: break-word !important;
        /* Safely breaks massive words if needed */
        word-break: break-word !important;
        white-space: normal !important;
    }
}

/* =========================================
   RESPONSIVE FIXES (TABLET TO ULTRA-SMALL)
   ========================================= */
@media (max-width: 1024px) {

    /* Triggers early stacking on smaller laptops/large tablets */
    .footer-main-row {
        flex-direction: column;
        gap: 60px;
    }

    .footer-links-container {
        gap: 80px;
    }

    .footer-newsletter {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .form-card {
        padding: 40px 30px;
    }

    /* Forces the footer to neatly stack everything on iPads/Tablets */
    .site-footer,
    #footer {
        padding: 70px 30px 20px !important;
        border-radius: 24px !important;
        width: calc(100% - 30px) !important;
    }

    .footer-main-row {
        flex-direction: column;
        gap: 50px;
        margin-bottom: 50px;
    }

    .footer-links-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-bottom: 40px;
    }

    .giant-text {
        font-size: 10vw;
    }
}

/* =========================================
   PERMANENTLY STACKED & CENTERED DASHBOARDS
   ========================================= */

/* 1. Force the main wrapper to stack vertically */
.hero-dashboard-switcher {
    position: absolute !important;
    top: 50% !important;
    right: 0% !important;
    transform: translateY(-50%) !important;
    width: 100% !important;
    max-width: 680px !important;
    /* Prevents overflow */
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
}

/* 2. Force BOTH dashboards to display permanently */
.dash-view {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    inset: auto !important;
    margin: 0 !important;
}

.holo-sat {
    display: none !important;
}

/* 3. Base Desktop Sizes */
.dash-view.view-landscape {
    transform: scale(0.85) !important;
    transform-origin: center center !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
}

.dash-view.view-hologram {
    transform: scale(0.9) !important;
    transform-origin: center center !important;
    width: 400px !important;
    height: 400px !important;
}

.hero-dashboard-panel.landscape {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    margin: 0 !important;
}

@media (max-width: 1024px) {
    .hero-dashboard-switcher {
        position: relative !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 40px 0 0 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: visible !important;
    }

    .dash-view.view-landscape,
    .dash-view.view-landscape.active {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto !important;
        transform: scale(0.9) !important;
        transform-origin: center top !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        overflow: visible !important;
        /* CRITICAL: Allows rings to show outside */
    }

    .hero-dashboard-panel.landscape {
        position: relative !important;
        z-index: 2 !important;
        /* Panel stays on top of rings */
        left: auto !important;
        right: auto !important;
        margin: 0 auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 680px !important;
        box-sizing: border-box !important;
    }


    .dash-view.view-hologram {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-dashboard-switcher {
        gap: 20px !important;
        margin-top: 30px !important;
    }

    .dash-view.view-landscape,
    .dash-view.view-landscape.active {
        transform: scale(0.8) !important;
        margin-bottom: -60px !important;
        margin: 0 auto !important;
        width: 95% !important;
    }

    .dash-view.view-hologram,
    .dash-view.view-hologram.active {
        transform: scale(0.85) !important;
    }
}

@media (max-width: 480px) {

    .dash-view.view-landscape,
    .dash-view.view-landscape.active {
        transform: scale(0.95) !important;
        margin-bottom: -20px !important;
        width: 100% !important;
    }

    .dash-view.view-hologram,
    .dash-view.view-hologram.active {
        transform: scale(0.9) !important;
    }
}

/* =========================================
   HERO DASHBOARD INITIAL ENTRY ANIMATION
   ========================================= */

/* 1. Hide everything initially and push it down slightly */
.hero-dashboard-panel .dash-header,
.hero-dashboard-panel .dash-main-metric,
.hero-dashboard-panel .dash-chart-section,
.hero-dashboard-panel .dash-box {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 2. When the JS adds .show-data (at 800ms), stagger them in */
.hero-dashboard-panel.show-data .dash-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.hero-dashboard-panel.show-data .dash-main-metric {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.hero-dashboard-panel.show-data .dash-chart-section {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* 3. Stagger the 4 small metric boxes individually */
.hero-dashboard-panel.show-data .dash-box:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}
.hero-dashboard-panel.show-data .dash-box:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}
.hero-dashboard-panel.show-data .dash-box:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.55s;
}
.hero-dashboard-panel.show-data .dash-box:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.65s;
}

/* 4. Ensure sparklines also animate out smoothly on load */
.spark-fill {
    width: 0 !important; /* Force to 0 initially */
    transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.hero-dashboard-panel.show-data .spark-fill {
    width: var(--w, 100%); /* JS takes over here */
}


@media (min-width: 1700px) {
    .hero {
        /* Gives even more room for massive 4K/Ultrawide screens */
        max-width: 1650px !important;
    }

    .hero-title {
        max-width: 850px !important;
        font-size: 96px !important;
    }

    .hero-desc {
        max-width: 650px !important;
        font-size: 22px !important;
    }

    .hero-dashboard-switcher {
        /* Scales the dashboard closer to full size on massive screens */
        transform: translateY(-50%) scale(0.95) !important;
        right: 2% !important;
    }
}