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

/* Force-hide hero feature badges on all sub-500px breakpoints */
@media (max-width: 500px), (max-device-width: 500px) {
    .hero-section .features,
    .hero-section > .features,
    .hero-section .features * {
        display: none !important;
        visibility: hidden !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

html {
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: auto;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: black;
    width: 1440px;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    transform-origin: top center;
    will-change: transform;
}

/* Scale content between 768px and 1024px */
@media (min-width: 768px) and (max-width: 1023px) {
    body {
        transform: scale(calc(100vw / 1440));
        transform-origin: top center;
        width: 1440px;
    }
}


.home-section {
    position: relative;
    width: 1440px;
    height: 1213px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 66px;
    padding-top: 164px;
    padding-right: 185px;
    padding-bottom: 2px;
    padding-left: 185px;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    top: 0;
    left: auto;
    right: auto;
    flex-shrink: 0;
}

.home-background {
    position: absolute;
    inset: 0;
    width: 1440px;
    height: 1213px;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.home-background img {
    position: absolute;
    width: 1440px;
    height: 1213px;
    object-fit: cover;
    object-position: 50% 50%;
}

/* Scale hero content smoothly between 767px and 500px */
@media (max-width: 767px) and (min-width: 500px) {
    .hero-section,
    .features {
        transform: scale(calc(100vw / 768));
        transform-origin: top center;
        width: 768px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .main-heading {
        font-size: 32px;
        line-height: 38px;
    }

    .home-background img {
        filter: blur(4px) brightness(0.9);
    }
    
    .download-button {
        width: 100%;
        max-width: 300px;
    }
    
    .download-button-content {
        padding: 14px 22px;
        background: rgba(107, 107, 107, 0.8) !important;
        border: 2px solid rgba(255, 255, 255, 0.55);
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45), 0 0 14px rgba(255, 255, 255, 0.16) inset;
    }
    
    .download-icon {
        width: 40px;
    }
    
    .download-icon-google {
        height: 44px;
    }
    
    .download-icon-apple {
        height: 46px;
    }
    
    .download-label {
        font-size: 13px;
        letter-spacing: 0.01em;
    }
    
    .download-title {
        font-size: 20px;
        letter-spacing: 0.01em;
    }
}

/* Remove blur/darkening for sub-500px */
@media (max-width: 499px) {
    .home-background img {
        filter: none;
    }
}

/* Fallback for devices under ~500px physical width */
@media (max-device-width: 500px) {
    .home-background img {
        filter: none !important;
    }
}

/* Mobile Hero Background Positioning - 767px to 415px */
@media (max-width: 767px) and (min-width: 415px) {
    .home-background {
        width: 100%;
        height: 100%;
        min-height: 100%;
        overflow: hidden;
        inset: 0;
        display: block;
    }
    
    .home-background img {
        width: 100%;
        height: 100%;
        min-height: 100%;
        left: 0;
        top: 0;
        max-width: none;
        object-fit: cover;
        object-position: center;
    }
}

/* Mobile Hero Background Positioning - 414px to 376px */
@media (max-width: 414px) and (min-width: 376px) {
    .home-background {
        width: 100%;
        height: 100%;
        min-height: 100%;
        overflow: hidden;
        inset: 0;
        display: block;
    }
    
    .home-background img {
        width: 100%;
        height: 100%;
        min-height: 100%;
        left: 0;
        top: 0;
        max-width: none;
        object-fit: cover;
        object-position: center;
    }
}

/* Mobile Hero Background Positioning - 375px and under */
@media (max-width: 375px) {
    .home-background {
        width: 100%;
        height: 100%;
        min-height: 100%;
        overflow: hidden;
        inset: 0;
        display: block;
    }
    
    .home-background img {
        width: 100%;
        height: 100%;
        min-height: 100%;
        left: 0;
        top: 0;
        max-width: none;
        object-fit: cover;
        object-position: center;
    }
}



/* Header Section */
.header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
    position: sticky;
    top: 2px;
    z-index: 1000;
    width: 1044.187px;
    flex-shrink: 0;
    box-sizing: border-box;
    margin: -94px auto 0 auto;
    align-self: center;
}

.header.sticky {
    position: sticky;
    top: 2px;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 1044.187px;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-fixed .navigation-bar {
    width: 100%;
}

.navigation-bar {
    background: rgba(203, 203, 203, 0.1);
    display: flex;
    gap: 180px;
    height: 72px;
    align-items: center;
    padding: 8px 32px;
    border-radius: 32px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
    backdrop-filter: blur(88px);
    -webkit-backdrop-filter: blur(94px);
}

.logo {
    height: 42.164px;
    width: 152.593px;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ctas {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.cta-slider {
    position: absolute;
    height: 44px;
    width: 146px;
    background: white;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 32px;
    left: 0;
    top: 0;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.ctas[data-active="home"] .cta-slider {
    left: 0;
}

.ctas[data-active="about"] .cta-slider {
    left: calc(146px + 15px);
}

.ctas[data-active="pricing"] .cta-slider {
    left: calc((146px + 15px) * 2);
}

.ctas[data-active="contact"] .cta-slider {
    left: calc((146px + 15px) * 3);
}

.cta {
    display: flex;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 32px;
    width: 146px;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-active {
    background: transparent;
    box-shadow: none;
}

.cta p {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    color: white;
}

.cta-active p {
    color: #0c8ce9;
}

/* Mobile Header Styles (under 768px) */
@media (max-width: 767px) {
    .header {
        width: 100%;
        padding: 16px;
        margin: -89px auto 0 auto;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: row;
        position: sticky;
        top: 2px;
        box-sizing: border-box;
    }
    
    .header.sticky {
        position: sticky;
        top: 2px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-header-container {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        gap: 0;
        position: relative;
    }
    
    .mobile-nav-bar {
        background: rgba(203, 203, 203, 0.1);
        height: 57px;
        display: flex;
        align-items: center;
        padding: 6.411px 25.644px;
        border-radius: 25.644px;
        box-shadow: 0px 0px 1.603px 0px rgba(0, 0, 0, 0.4);
        flex-shrink: 0;
    }
    
    .mobile-nav-logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .mobile-logo {
        height: 24px;
        width: 87px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
    }
    
    .mobile-logo img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .mobile-nav-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .mobile-menu-icon img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Desktop Header Styles (768px and above) */
@media (min-width: 768px) {
    .mobile-header-container {
        display: none;
    }
    
    .desktop-nav {
        display: flex;
    }
}

/* Mobile Hero Section Styles (under 767px) */
@media (max-width: 767px) {
    body {
        width: 100%;
        min-height: 100vh;
    }
    
    .home-section {
        width: 100%;
        height: auto;
        min-height: 100vh;
        padding-top: 0;
        padding-right: 16px;
        padding-bottom: 0;
        padding-left: 16px;
        gap: 24px;
        justify-content: flex-start;
        align-items: center;
    }
    
    .hero-section {
        gap: 16px;
        padding-top: 120px;
        width: 100%;
        max-width: 100%;
    }
    
    .main-heading {
        font-size: 28px;
        line-height: 34px;
        white-space: normal;
        width: 100%;
    }
    
    .subheading p {
        font-size: 16px;
        line-height: 24px;
        width: 100%;
        padding: 0 16px;
    }
    
    .features {
        display: none;
    }
    
    .download-button-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
    }
    
    .download-button {
        width: 100%;
        max-width: 280px;
    }
    
    .download-button-content {
        width: 100%;
        padding: 12px 20px;
    }
    
    .download-icon {
        width: 36px;
    }
    
    .download-icon-google {
        height: 40px;
    }
    
    .download-icon-apple {
        height: 42px;
    }
    
    .download-label {
        font-size: 12px;
    }
    
    .download-title {
        font-size: 18px;
    }
}

/* Make download buttons same as above 768px for sub-500px */
/* Stop scaling hero section content under 500px - keep fixed size and position */
@media (max-width: 500px), (max-device-width: 500px) {
    body {
        transform: none !important;
        transform-origin: initial !important;
        width: 100% !important;
    }
    
    /* Make header part of home-section under 500px */
    .header {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 16px !important;
        width: 100% !important;
        box-sizing: border-box;
        justify-content: space-between !important;
        align-items: center !important;
        z-index: 1001;
    }
    
    .home-section {
        transform: none !important;
        transform-origin: initial !important;
        position: relative !important;
        padding-top: 80px !important;
        overflow: visible !important;
    }
    
    .hero-section {
        transform: none !important;
        transform-origin: initial !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        margin-top: 0 !important;
        position: relative !important;
    }
    
    /* Enlarge hero text for sub-500px */
    .hero-section .main-heading {
        font-size: 40px !important;
        line-height: 50px !important;
    }
    
    /* Hide subheading text entirely on sub-500px */
    .hero-section .subheading {
        display: none !important;
    }
    
    .hero-section .subheading .subhead-line-1,
    .hero-section .subheading .subhead-line-2 {
        display: block;
    }
    
    .hero-section .subheading p {
        font-size: 24px !important;
        line-height: 30px !important;
    }
    
    .hero-section *,
    .hero-section .main-heading,
    .hero-section .subheading,
    .hero-section .download-buttons {
        transform: none !important;
    }
    
    /* Make header container part of home-section; keep items separate */
    .mobile-header-container {
        position: relative !important;
        transform: translateY(20%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        gap: 12px !important;
        box-sizing: border-box !important;
    }
    
    /* Apply desktop navigation effects to each nav item separately */
    .mobile-nav-bar {
        background: rgba(203, 203, 203, 0.1) !important;
        padding: 40px 32px !important;
        border-radius: 40px !important;
        box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4) !important;
        backdrop-filter: blur(88px) !important;
        -webkit-backdrop-filter: blur(94px) !important;
        height: 56px !important;
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
    
    .mobile-nav-logo {
        flex-shrink: 0 !important;
    }
    
    .mobile-nav-menu {
        flex-shrink: 0 !important;
    }
    
    /* 2x mobile logo and menu icon sizes on sub-500px */
    .mobile-logo {
        height: 48px !important;
        width: 174px !important;
    }
    
    .mobile-logo img {
        height: 48px !important;
        width: 174px !important;
    }
    
    .mobile-menu-icon {
        width: 48px !important;
        height: 48px !important;
    }
    
    .mobile-menu-icon img {
        width: 48px !important;
        height: 48px !important;
    }
    
    /* 2x larger download buttons on sub-500px */
    .download-button-group {
        gap: 24px !important;
    }
    
    .download-button {
        max-width: 100% !important;
    }
    
    .download-button-content {
        padding: 24px 40px !important;
    }
    
    .download-icon {
        width: 72px !important;
    }
    
    .download-icon-google {
        height: 80px !important;
    }
    
    .download-icon-apple {
        height: 84px !important;
    }
    
    .download-label {
        font-size: 24px !important;
    }
    
    .download-title {
        font-size: 36px !important;
    }
    
    .download-button-content {
        background: rgba(0, 0, 0, 0.16) !important;
        box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4) !important;
        border: none !important;
        border-radius: 300px !important;
    }
    
    .subheading p {
        font-size: 20px !important;
        line-height: 24px;
        white-space: normal !important;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Mobile Hero Section - 414px to 376px */
@media (max-width: 414px) and (min-width: 376px) {
    .hero-section {
        padding-top: 100px;
        gap: 14px;
    }
    
    .main-heading {
        font-size: 26px;
        line-height: 32px;
    }
    
    .subheading p {
        font-size: 15px;
        line-height: 22px;
    }
}

/* Mobile Hero Section - 375px and under */
@media (max-width: 375px) {
    .hero-section {
        padding-top: 90px;
        gap: 12px;
    }
    
    .main-heading {
        font-size: 24px;
        line-height: 30px;
    }
    
    .subheading p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .features {
        padding: 6px;
    }
    
    .feature-item {
        padding: 6px 10px;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
    }
    
    .feature-text {
        font-size: 11px;
    }
    
    .download-button-content {
        padding: 10px 16px;
    }
    
    .download-icon {
        width: 32px;
    }
    
    .download-icon-google {
        height: 36px;
    }
    
    .download-icon-apple {
        height: 38px;
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.heading-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.main-heading {
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    color: white;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

.main-heading span {
    display: block;
}

.subheading {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subheading p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    text-align: center;
    color: white;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

/* Mobile heading sizing (767px to 500px) */
@media (max-width: 767px) and (min-width: 500px) {
    .main-heading {
        font-size: 32px;
        line-height: 38px;
    }
    
    .subheading p {
        font-size: 22px;
        line-height: 32px;
    }
}

/* Features Section */
.features {
    background: rgba(0, 0, 0, 0);
    display: flex;
    height: 64px;
    align-items: center;
    padding: 8px;
    border-radius: 32px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.features > div {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

/* Hide hero feature badges on all breakpoints 500px and below */
@media (max-width: 500px), (max-device-width: 500px) {
    .hero-section .features {
        display: none !important;
        visibility: hidden !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

.feature-item {
    display: flex;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 32px;
}

.feature-content {
    display: flex;
    gap: 16px;
    align-items: center;
}

.feature-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: black;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

.feature-separator {
    display: flex;
    height: 20px;
    align-items: center;
    justify-content: center;
    width: 0;
    flex-shrink: 0;
}

.feature-separator > div {
    transform: rotate(270deg);
    flex: none;
}

.separator-icon {
    width: 20px;
    height: 0;
    display: block;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-button-group {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-shrink: 0;
}

.download-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
    flex-shrink: 0;
}

.download-button-content {
    background: rgba(0, 0, 0, 0.16);
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 300px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-button-content:hover {
    background: rgba(0, 0, 0, 0.25);
}

.download-icon {
    width: 44px;
    height: auto;
    object-fit: contain;
}

.download-icon-google {
    height: 48.909px;
}

.download-icon-apple {
    height: 52px;
}

.download-text {
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    align-items: flex-start;
    justify-content: center;
    color: white;
    white-space: nowrap;
}

.download-label {
    font-size: 16px;
    line-height: normal;
}

.download-title {
    font-size: 24px;
    line-height: normal;
}


/* About Section */
.about-section {
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.about-container {
    background: black;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding: 160px 0 0 0;
    position: relative;
    width: 100%;
    max-width: 1229px;
}

.about-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.about-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: normal;
    color: #0c8ce9;
}

.about-title .title-white {
    color: white;
}

.about-title .title-dot {
    color: #0c8ce9;
}

.about-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    color: white;
    width: 100%;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    color: #b1b1b1;
    max-width: 1142px;
    width: 100%;
}

/* Key Features Container */
.key-features-container {
    background: rgba(53, 53, 53, 0.28);
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 32px;
    box-shadow: 0px 0px 2px 0px rgba(255, 255, 255, 0.25);
    width: 100%;
    max-width: 1141px;
}

.key-features-header {
    display: flex;
    align-items: center;
    width: 100%;
}

.key-features-title-wrapper {
    display: flex;
    align-items: center;
    padding-left: 24px;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.key-features-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    color: #0c8ce9;
    text-align: center;
    white-space: nowrap;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    width: 100%;
}

/* Feature Card */
.feature-card {
    background: rgba(31, 31, 31, 0.8);
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-height: 572px;
    height: auto;
    align-items: center;
    padding: 24px;
    border-radius: 32px;
    box-shadow: 0px 0px 2px 0px rgba(255, 255, 255, 0.25);
    width: 100%;
}

.feature-card-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    height: auto;
}

.feature-card-small-gap .feature-card-content {
    gap: 20px;
}

.feature-card-justify-between .feature-card-content {
    justify-content: space-between;
}

.feature-card-title {
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: normal;
    color: white;
    width: 100%;
}

.feature-title-text {
    font-size: 32px;
    margin-bottom: 0;
}

.feature-title-spacer {
    font-size: 24px;
    margin-bottom: 0;
}

.feature-description-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #9d9d9d;
    font-size: 20px;
    margin-bottom: 0;
}

.feature-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    border: none;
}

/* Currency Section */
.currency-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 16px;
    width: 100%;
}

.currency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.currency-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    color: #34a853;
}

.currency-list-wrapper {
    background: black;
    border-radius: 32px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    width: 453px;
    height: 304px;
    overflow: hidden;
    perspective: 1200px;
    perspective-origin: center center;
}

.currency-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    padding: 0 48px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: auto;
    scrollbar-width: none;
    position: relative;
    transform-style: preserve-3d;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: y proximity;
}

.currency-list::-webkit-scrollbar {
    display: none;
}

.currency-scrollbar-track {
    position: absolute;
    right: 8px;
    top: 32px;
    bottom: 32px;
    width: 8px;
    background: #181818;
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
}

.currency-scrollbar-track.scrolling {
    opacity: 1;
}

.currency-scrollbar-thumb {
    position: absolute;
    right: 10px;
    width: 4px;
    background: #969696;
    border-radius: 16px;
    min-height: 40px;
    pointer-events: auto;
    cursor: grab;
    z-index: 2;
    transition: top 0.05s linear, height 0.1s ease-out, opacity 0.1s ease-in-out;
    opacity: 0;
}

.currency-scrollbar-thumb:hover,
.currency-scrollbar-thumb:active {
    cursor: grabbing;
}

.currency-scrollbar-thumb.scrolling {
    opacity: 1;
}

.currency-scrollbar-thumb.scrolling {
    opacity: 1;
}

/* Scrollbar styles are now handled by webkit-scrollbar */

.currency-item {
    display: flex;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    gap: 16px;
    min-height: 44px;
    height: 44px;
    align-items: center;
    justify-content: flex-start;
    padding: 14.5px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    width: 357px;
    transition: transform 0.1s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.1s cubic-bezier(0.23, 1, 0.32, 1),
                font-size 0.1s cubic-bezier(0.23, 1, 0.32, 1),
                color 0.1s cubic-bezier(0.23, 1, 0.32, 1),
                height 0.1s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    flex-shrink: 0;
    transform-style: preserve-3d;
    transform-origin: center center;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    will-change: transform, opacity, font-size;
    margin-bottom: 0;
}

.currency-item-active {
    background: rgba(203, 203, 203, 0.1);
    min-height: 64px;
    height: 64px;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
    color: white;
    font-size: 20px;
    width: 357px;
    opacity: 1;
    z-index: 10;
    margin-bottom: 0;
    margin-top: 0;
}

.currency-item-active .currency-item-inner {
    display: flex;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    gap: 16px;
    height: 44px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    border-radius: 0;
    width: 100%;
}

.currency-item-inner {
    display: flex;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    gap: 16px;
    height: 44px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    border-radius: 0;
    width: 100%;
}

.currency-item-faded-top .currency-name,
.currency-item-faded-top .currency-symbol,
.currency-item-faded-top .currency-code,
.currency-item-faded-top .currency-symbol-arabic {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.currency-item-faded-bottom .currency-name,
.currency-item-faded-bottom .currency-symbol,
.currency-item-faded-bottom .currency-code,
.currency-item-faded-bottom .currency-symbol-arabic {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.currency-item-middle .currency-name,
.currency-item-middle .currency-symbol,
.currency-item-middle .currency-code,
.currency-item-middle .currency-symbol-arabic {
    color: rgba(255, 255, 255, 0.75);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.75);
    background: none;
}

.currency-name {
    width: 144px;
    white-space: pre-wrap;
    flex-shrink: 0;
    text-align: left;
}

.currency-symbol {
    width: 34px;
    white-space: pre-wrap;
    text-align: center;
    flex-shrink: 0;
    flex-grow: 1;
    position: relative;
}

.currency-symbol-arabic {
    width: 33px;
    height: 15px;
    white-space: pre-wrap;
    direction: rtl;
    text-align: center;
    flex-shrink: 0;
    flex-grow: 1;
    position: relative;
}

.currency-code {
    white-space: pre-wrap;
    margin-left: auto;
    text-align: right;
    flex-shrink: 0;
}

.currency-item-black {
    color: black !important;
}

.currency-item-black .currency-name,
.currency-item-black .currency-symbol,
.currency-item-black .currency-code,
.currency-item-black .currency-symbol-arabic {
    color: black !important;
    -webkit-text-fill-color: black !important;
    background: none !important;
}

/* Project Modes */
.project-modes {
    height: 372px;
}

.project-modes-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    width: 357px;
    transform: translateY(30%);
}

.project-mode-card {
    background: rgba(203, 203, 203, 0.1);
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
}

/* Individual Project card - size based on content */
.project-mode-card[data-node-id="1:55"] {
    width: 100%;
}

/* Group Project card - size based on content */
.project-mode-card[data-node-id="1:65"] {
    width: 100%;
}

.project-mode-icon {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.project-mode-icon-inner {
    position: absolute;
    inset: -4.55%;
    width: 102.27%;
    height: 109.1%;
}

.project-mode-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.project-mode-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

/* Individual Project (1:55) - specific styles */
.project-mode-card[data-node-id="1:55"] .project-mode-content {
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 0;
    padding-top: 0;
    width: 258px;
}

/* Group Project (1:65) - specific styles */
.project-mode-card[data-node-id="1:65"] .project-mode-content {
    height: 68px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 0;
    padding-bottom: 0;
    width: auto;
}

.project-mode-title {
    display: flex;
    align-items: center;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    flex-shrink: 0;
}

/* Individual Project title has top padding */
.project-mode-card[data-node-id="1:55"] .project-mode-title {
    padding-top: 8px;
}

/* Group Project title has no top padding */
.project-mode-card[data-node-id="1:65"] .project-mode-title {
    padding-top: 0;
}

.project-mode-title-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-mode-title p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: white;
    margin: 0;
}

.project-mode-description {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Individual Project description - flex-wrap and content-center */
.project-mode-card[data-node-id="1:55"] .project-mode-description {
    flex-wrap: wrap;
    align-content: center;
}

/* Group Project description - no flex-wrap, content-stretch */
.project-mode-card[data-node-id="1:65"] .project-mode-description {
    flex-wrap: nowrap;
    align-content: stretch;
}

.project-mode-description-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-mode-description p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    color: #7e7e7e;
    margin: 0;
}

/* Country Section */
.country-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 16px;
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
}

.country-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: none;
    outline: none;
}

.country-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    color: #34a853;
    border: none;
    outline: none;
}

.country-list-wrapper {
    background: black;
    border-radius: 32px;
    border: none;
    outline: none;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    width: 453px;
    height: 304px;
    overflow: hidden;
    perspective: 1200px;
    perspective-origin: center center;
}

.country-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    padding: 0 48px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: auto;
    scrollbar-width: none;
    position: relative;
    transform-style: preserve-3d;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: y proximity;
}

.country-list::-webkit-scrollbar {
    display: none;
}

.country-scrollbar-track {
    position: absolute;
    right: 8px;
    top: 32px;
    bottom: 32px;
    width: 8px;
    background: #181818;
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
}

.country-scrollbar-track.scrolling {
    opacity: 1;
}

.country-scrollbar-thumb {
    position: absolute;
    right: 10px;
    width: 4px;
    background: #969696;
    border-radius: 16px;
    min-height: 40px;
    pointer-events: auto;
    cursor: grab;
    z-index: 2;
    transition: top 0.05s linear, height 0.1s ease-out, opacity 0.1s ease-in-out;
    opacity: 0;
}

.country-scrollbar-thumb:hover,
.country-scrollbar-thumb:active {
    cursor: grabbing;
}

.country-scrollbar-thumb.scrolling {
    opacity: 1;
}

.country-scrollbar-thumb.scrolling {
    opacity: 1;
}

.country-item {
    display: flex;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    gap: 16px;
    min-height: 44px;
    height: 44px;
    align-items: center;
    justify-content: space-between;
    padding: 14.5px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    width: 357px;
    transition: transform 0.1s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.1s cubic-bezier(0.23, 1, 0.32, 1),
                font-size 0.1s cubic-bezier(0.23, 1, 0.32, 1),
                color 0.1s cubic-bezier(0.23, 1, 0.32, 1),
                height 0.1s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    flex-shrink: 0;
    transform-style: preserve-3d;
    transform-origin: center center;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    will-change: transform, opacity, font-size;
    margin-bottom: 0;
}

.country-item-active {
    background: rgba(203, 203, 203, 0.1);
    min-height: 64px;
    height: 64px;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
    color: white;
    font-size: 20px;
    width: 357px;
    opacity: 1;
    z-index: 10;
    margin-bottom: 0;
    margin-top: 0;
}

.country-item-inner {
    display: flex;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    gap: 16px;
    height: 44px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    border-radius: 0;
    width: 100%;
}

.country-item-faded-top .country-name,
.country-item-faded-top .country-code,
.country-item-faded-top .country-flag {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.country-item-faded-bottom .country-name,
.country-item-faded-bottom .country-code,
.country-item-faded-bottom .country-flag {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.country-name {
    width: 144px;
    white-space: pre-wrap;
    flex-shrink: 0;
}

.country-code {
    width: 34px;
    white-space: pre-wrap;
    text-align: center;
    flex-shrink: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.country-code-zero {
    color: #141414;
}

.country-flag {
    font-size: 24px;
    line-height: 0;
    white-space: nowrap;
    flex-shrink: 0;
    width: 30px;
    text-align: right;
    margin-left: auto;
}

.country-item-black {
    color: black !important;
}

.country-item-black .country-name,
.country-item-black .country-code {
    color: black !important;
    -webkit-text-fill-color: black !important;
    background: none !important;
}

/* Notifications */
.notifications {
    height: 371px;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: center;
    justify-content: center;
    transform: translateY(30%);
}

.notification-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0px 0px 2px 0px rgba(255, 255, 255, 0.25);
}

.notification-lockscreen {
    width: 340px;
    overflow: hidden;
}

.notification-container {
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
    padding: 12px 16px;
    width: 100%;
}

.notification-line {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

.notification-app-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.notification-app-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.notification-app-name-wrapper {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
}

.notification-app-name {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 0;
    color: #665beb;
    white-space: nowrap;
    flex-shrink: 0;
    justify-content: center;
}

.notification-app-name p {
    line-height: 16px;
}

.notification-dot {
    position: relative;
    width: 3px;
    height: 3px;
    flex-shrink: 0;
}

.notification-dot img {
    width: 100%;
    height: 100%;
    display: block;
}

.notification-time {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 0;
    color: #222;
    white-space: nowrap;
    flex-shrink: 0;
    justify-content: center;
}

.notification-time p {
    line-height: 16px;
}

.notification-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-chevron > div {
    flex: none;
    transform: scaleY(-1);
}

.notification-chevron > div > div {
    height: 4.317px;
    width: 7px;
    position: relative;
}

.notification-chevron img {
    width: 100%;
    height: 100%;
    display: block;
    max-width: none;
}

.notification-main {
    display: flex;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
}

.notification-text-wrapper {
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    min-width: 0;
    width: 100%;
}

.notification-title {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 0;
    color: #222;
    height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    justify-content: center;
}

.notification-title p {
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notification-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #686868;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    margin: 0;
    display: block;
    flex-shrink: 0;
}

.notification-banner {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 12px 16px;
    width: 359px;
}

.notification-icon-large {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.notification-icon-large img {
    width: 100%;
    height: 100%;
    display: block;
}

.notification-content {
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    gap: 1px;
    align-items: flex-start;
    justify-content: center;
    min-height: 0;
    min-width: 0;
}

.notification-header-inline {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    width: 100%;
}

.notification-title-inline {
    flex: 1 0 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: normal;
    color: #222;
    letter-spacing: -0.3px;
    min-height: 0;
    min-width: 0;
    white-space: pre-wrap;
    margin: 0;
}

.notification-time-inline {
    display: flex;
    flex-direction: column;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 0;
    color: #3f3f3f;
    text-align: right;
    letter-spacing: -0.24px;
    opacity: 0.5;
    white-space: nowrap;
    flex-shrink: 0;
    justify-content: flex-end;
}

.notification-time-inline p {
    line-height: 14px;
}

.notification-bottom {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.notification-text-inline {
    flex: 1 0 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: normal;
    color: #3f3f3f;
    min-height: 0;
    min-width: 0;
    white-space: pre-wrap;
}

/* View Toggle */
.view-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    position: relative;
    width: 100%;
    min-height: 400px; /* lock height so buttons stay pinned when view changes */
    padding-bottom: 80px; /* reserve space for fixed buttons */
}

.view-image {
    position: relative;
    border-radius: 8px;
    flex-shrink: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card view size */
.view-toggle[data-active-view="card"] .view-image {
    height: 294px;
    width: 222px;
}

/* Table view size */
.view-toggle[data-active-view="table"] .view-image {
    height: 180px;
    width: 532px;
}

.view-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
    pointer-events: none;
    border-radius: 8px;
}

.view-toggle-buttons {
    background: rgba(203, 203, 203, 0.1);
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 8px;
    border-radius: 32px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    flex-shrink: 0;
}

.view-toggle-slider {
    position: absolute;
    height: 44px;
    width: 146px;
    background: white;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 32px;
    left: 8px;
    top: 8px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.view-toggle-buttons[data-active="table"] .view-toggle-slider {
    left: calc(8px + 146px + 15px);
}

.view-toggle-button {
    display: flex;
    gap: 8px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 32px;
    width: 146px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.view-toggle-button p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    text-align: center;
    color: white;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.view-toggle-buttons[data-active="card"] .view-toggle-button[data-view="card"] p {
    color: #0c8ce9;
}

.view-toggle-buttons[data-active="table"] .view-toggle-button[data-view="table"] p {
    color: #0c8ce9;
}

.view-toggle-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: filter 0.3s ease;
}

.view-toggle-icon img {
    width: 100%;
    height: 100%;
    transition: filter 0.3s ease;
}

/* Card icon: make white when inactive, keep blue when active */
.view-toggle-button[data-view="card"] .view-toggle-icon img {
    filter: brightness(0) invert(1);
}

.view-toggle-buttons[data-active="card"] .view-toggle-button[data-view="card"] .view-toggle-icon img {
    filter: none;
}

/* Table icon: make white when inactive, blue when active */
.view-toggle-button[data-view="table"] .view-toggle-icon img {
    filter: brightness(0) invert(1);
}

.view-toggle-buttons[data-active="table"] .view-toggle-button[data-view="table"] .view-toggle-icon img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(1352%) hue-rotate(182deg) brightness(95%) contrast(89%);
}

/* Roles */
.roles {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.role-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    margin: 0 auto;
}

.roles-icons {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0 auto;
}

.role-icon {
    height: 110px;
    width: 157px;
    position: relative;
    flex-shrink: 0;
    overflow: visible;
    margin: 0 auto;
}

.role-icon-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: 1;
}

.role-icon-inner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    position: relative;
}

.role-icon-inner img[src$=".png"] {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.roles-toggle-buttons {
    background: rgba(203, 203, 203, 0.1);
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 8px;
    border-radius: 32px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
    position: relative;
    transform: translateY(260%);
}

.role-toggle-slider {
    position: absolute;
    height: 44px;
    width: 149px;
    background: white;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 32px;
    left: 8px;
    top: 8px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.roles-toggle-buttons[data-active="members"] .role-toggle-slider {
    left: 8px;
}

.roles-toggle-buttons[data-active="project-managers"] .role-toggle-slider {
    left: calc(8px + 149px + 15px);
}

.roles-toggle-buttons[data-active="agents"] .role-toggle-slider {
    left: calc(8px + (149px + 15px) * 2);
}

.role-toggle-button {
    display: flex;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 32px;
    width: 149px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.role-toggle-active {
    background: transparent;
    box-shadow: none;
}

.role-toggle-button p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    text-align: center;
    color: white;
}

.role-toggle-active p {
    color: #0c8ce9;
}

@media (max-width: 767px) {
    .roles-toggle-buttons {
        transform: translateY(160%);
    }
}

/* Pricing Section */
.pricing-section {
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.pricing-container {
    background: black;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    padding: 0;
    position: relative;
    width: 100%;
    max-width: 1229px;
}

.pricing-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.pricing-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: normal;
    color: #0c8ce9;
}

.pricing-title .title-white {
    color: white;
}

.pricing-title .title-dot {
    color: #0c8ce9;
}

.pricing-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    color: #b1b1b1;
    max-width: 1142px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.pricing-availability {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    color: #b1b1b1;
    max-width: 1142px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.pricing-contact-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    color: white;
    max-width: 1142px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.pricing-email-link {
    color: #0c8ce9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pricing-email-link:hover {
    color: #0a7bc7;
}

.pricing-email-arrow {
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.3s ease;
    transform: rotate(-45deg);
}

.pricing-email-link:hover .pricing-email-arrow {
    transform: rotate(-45deg) scale(1.2);
}

.pricing-early-access-container {
    background: rgba(53, 53, 53, 0.28);
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 32px;
    box-shadow: 0px 0px 2px 0px rgba(255, 255, 255, 0.25);
    width: 100%;
    max-width: 600px;
}

.pricing-early-access {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.pricing-early-access-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    color: #34A853;
    width: 100%;
}

.pricing-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: center;
    max-width: 500px;
}

.pricing-email-input {
    width: 100%;
    max-width: 500px;
    padding: 16px 24px;
    background: rgba(53, 53, 53, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.pricing-email-input::placeholder {
    color: #b1b1b1;
}

.pricing-email-input:focus {
    border-color: #34A853;
    background: rgba(53, 53, 53, 0.4);
}

.pricing-submit-button {
    width: 100%;
    max-width: 500px;
    padding: 12px 20px;
    background: #34A853;
    border: 1px solid white;
    border-radius: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 2px 0px 0px white;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.pricing-submit-button:hover {
    background: #2A8A44;
    transform: translateY(-1px);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3), 0px 2px 0px 0px white;
}

.pricing-submit-button:active {
    transform: translateY(0);
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 0px 0px white;
}

/* Success Message */
.success-message-container {
    margin-top: 24px;
    padding: 16px 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    animation: fadeIn 0.3s ease-in;
}

.success-message-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    color: #10b981;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact-section {
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.contact-container {
    background: black;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding: 0 0;
    position: relative;
    width: 100%;
    max-width: 1229px;
}

.contact-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.contact-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: normal;
    color: #0c8ce9;
}

.contact-title .title-white {
    color: white;
}

.contact-title .title-dot {
    color: #0c8ce9;
}

.contact-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    color: #b1b1b1;
    max-width: 1142px;
    width: 100%;
}

.contact-email-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    color: white;
}

.contact-email-link {
    color: #0c8ce9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email-link:hover {
    color: #0a7bc7;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 4px;
}

.contact-email-arrow {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.3s ease;
    transform: rotate(-45deg);
}

.contact-email-link:hover .contact-email-arrow {
    transform: rotate(-45deg) scale(1.2);
}


/* Success Popup Styles */
.success-popup {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999 !important;
    pointer-events: none;
    visibility: hidden;
}

.success-popup.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: all !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.success-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.success-popup-content {
    position: relative !important;
    z-index: 10 !important;
    width: 90% !important;
    max-width: 500px !important;
    animation: popupSlideIn 0.4s ease-out;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    pointer-events: auto !important;
    margin: 0 auto !important;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-popup-inner {
    background: rgba(20, 20, 20, 0.95) !important;
    border-radius: 32px !important;
    padding: 48px 32px !important;
    text-align: center !important;
    box-shadow: 0px 0px 2px 0px rgba(255, 255, 255, 0.25) !important;
    width: 100% !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    pointer-events: auto !important;
    min-height: 200px !important;
}

.success-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 24px !important;
    background: #10b981 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 48px !important;
    color: white !important;
    font-weight: bold !important;
    animation: iconBounce 0.6s ease-out;
    box-shadow: 0px 0px 2px 0px rgba(255, 255, 255, 0.25) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.success-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 40px !important;
    line-height: normal !important;
    color: #0c8ce9 !important;
    margin-bottom: 16px !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.success-title .title-white {
    color: white;
}

.success-title .title-dot {
    color: #0c8ce9;
}

.success-message {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    font-size: 24px !important;
    color: #b1b1b1 !important;
    margin-bottom: 32px !important;
    line-height: normal !important;
    max-width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.success-close-btn {
    padding: 12px 32px !important;
    background: #10b981 !important;
    border: 1px solid white !important;
    border-radius: 32px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: white !important;
    cursor: pointer !important;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 2px 0px 0px white !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-block !important;
}

.success-close-btn:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3), 0px 2px 0px 0px white;
}

.success-close-btn:active {
    transform: translateY(0);
}

/* Confetti Container */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 32px;
    z-index: 1;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #10b981;
    animation: confettiFall linear forwards;
}

.confetti:nth-child(2n) {
    background: white;
}

.confetti:nth-child(3n) {
    background: #10b981;
}

.confetti:nth-child(4n) {
    background: white;
}

.confetti:nth-child(5n) {
    background: #10b981;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(600px) rotate(720deg);
        opacity: 0;
    }
}
/* Footer */
.footer {
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    width: 100%;
    max-width: 1229px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: #b1b1b1;
    text-align: center;
    margin: 0;
}




