/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0A0A0E;
    /* Deeper black */
    --dark-card: #12121A;
    /* Refined card background */
    --light-bg: #F8FAFC;
    --purple: #8B5CF6;
    /* Modern Violet */
    --purple-light: #A78BFA;
    --blue: #3B82F6;
    --blue-light: #60A5FA;
    --orange: #F97316;
    --orange-light: #FB923C;
    --text-primary: #F8FAFC;
    /* Off-white */
    --text-secondary: #94A3B8;
    /* Slate Gray */
    --border: rgba(255, 255, 255, 0.08);
    /* Softer borders */

    /* Light Theme Utilities */
    --light-card: #FFFFFF;
    --light-text-p: #1E293B;
    --light-text-s: #64748B;
    --light-border: rgba(0, 0, 0, 0.06);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: absolute;
    /* Changed from fixed to stay at top */
    top: 1.5rem;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    pointer-events: auto;
    /* Re-enable clicks */
}


.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: -5px;
}

.brand-logo {
    height: 85px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand-name-img {
    height: 35px;
    width: auto;
    object-fit: contain;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
    /* Remove green background: High contrast grayscale turns green to dark and white to bright */
    filter: grayscale(100%) brightness(0.7) contrast(300%);
    mix-blend-mode: screen;
    transition: all 0.3s ease;
}

.brand-logo:hover,
.brand-name-img:hover {
    transform: scale(1.05);
}


.nav-links {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 1.5rem;
    z-index: 1001;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    /* Lighter background for glass effect */
    backdrop-filter: blur(30px);
    /* Stronger blur */
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 4rem;
    /* Significantly larger padding */
    border-radius: 100px;
    box-shadow:
        0 4px 24px -1px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    /* Increased font size */
    transition: all 0.3s;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.nav-links a:hover {
    color: white;
    transform: translateY(-1px);
}


.nav-actions {
    display: flex;
    align-items: center;
}


@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }
}

.nav-cta {
    background: var(--orange);
    color: white !important;
    padding: 0.85rem 2rem;
    /* Slightly larger */
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    /* Added font size */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 2rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    background-color: #000000;
}

.animation-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: #060608;
    /* Deeper black for better contrast */
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 80%;
    /* Large enough to be the focus of the background */
    width: auto;
    opacity: 0.15;
    /* Subtle background presence */
    filter: grayscale(100%) brightness(0.8);
    /* Desaturated to look like a thought silhouette */
    pointer-events: none;
    z-index: 0;
}

.animation-container span {
    position: absolute;
    color: var(--text-secondary);
    display: block;
    font-size: 24px;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 10px rgba(97, 220, 163, 0.2);
    user-select: none;
    pointer-events: none;
    cursor: default;
    z-index: 2;
    /* Ensure letters are above the boy silhouette */
    opacity: 0;
    will-change: transform, opacity;
    animation-timing-function: linear;
    animation-name: rotateFloat;
}

@keyframes rotateFloat {
    0% {
        opacity: 0;
        transform: rotate(0deg) scale(0.5);
    }

    20% {
        opacity: 0.3;
    }

    80% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
        transform: rotate(360deg) scale(1.5);
    }
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--purple-light), var(--blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.email-input-group {
    display: flex;
    gap: 0.5rem;
    background: var(--dark-card);
    padding: 0.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.email-input {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1rem;
    outline: none;
    min-width: 280px;
}

.email-input::placeholder {
    color: var(--text-secondary);
}

.cta-primary {
    background: var(--orange);
    color: white !important;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 1px solid var(--border);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Dashboard */
.hero-dashboard {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.single-card {
    width: 100%;
    max-width: 800px;
    /* Wider for combined content */
}

.dashboard-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.card-1 .card-title,
.card-2 .card-title {
    color: var(--purple-light);
}

.combined-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2.5rem;
    align-items: start;
}

.module-group {
    flex: 1;
}

.module-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.module-sep {
    width: 1px;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.card-badge {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Dashbord List Styles */
.dashboard-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.dashboard-list li:last-child {
    border-bottom: none;
}

.dashboard-list li:hover {
    transform: translateX(8px);
    color: white;
}

.card-1 .dashboard-list li:hover .list-num {
    background: var(--purple);
    border-color: var(--purple-light);
}

.card-2 .dashboard-list li:hover .list-num {
    background: var(--blue);
    border-color: var(--blue-light);
}

.list-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(147, 51, 234, 0.15);
    color: var(--purple-light);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.insight-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Gradient Orbs */
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--purple), transparent);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--blue), transparent);
    bottom: -100px;
    left: -100px;
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 30px);
    }
}

/* Features Section */
.features {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--purple-light);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.purple-gradient {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
}

.blue-gradient {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.orange-gradient {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-preview {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-ui {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ui-element {
    height: 12px;
    background: rgba(147, 51, 234, 0.3);
    border-radius: 6px;
}

.ui-element.short {
    width: 60%;
}

.chart-preview {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    height: 80px;
    width: 100%;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--blue-light), var(--blue));
    border-radius: 6px;
    transition: height 0.5s;
}

.accessibility-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.acc-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    opacity: 0.6;
}

/* Why Section */
.why-section {
    background: var(--light-bg);
    padding: 120px 0;
    color: #1A1A24;
}

/* Section Joiner Visual (Hero to Features) */
.section-divider-visual {
    position: relative;
    width: 100%;
    margin-top: -100px;
    margin-bottom: 2rem;
    z-index: 20;
}

.joiner-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 2rem;
}

.joiner-img-flat {
    width: 260px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--border);
    display: block;
    background: var(--dark-card);
    flex-shrink: 0;
}

.joiner-text {
    flex: 1;
    text-align: left;
}

.joiner-text .section-title {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.joiner-text .section-subtitle {
    margin-bottom: 0;
    text-align: left;
}

@media (max-width: 1024px) {
    .joiner-flex {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .joiner-text,
    .joiner-text .section-title,
    .joiner-text .section-subtitle {
        text-align: center;
    }

    .joiner-img-flat {
        margin: 0 auto;
    }

    .section-divider-visual {
        margin-top: -50px;
    }
}

.why-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-title {
    font-size: 2.5rem;
    color: #1A1A24;
    margin-bottom: 1.5rem;
}

.why-description {
    font-size: 1.125rem;
    color: #52525B;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 3D Visual Section */
.why-visual {
    perspective: 1000px;
}

.why-image-3d-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    /* Adjust based on image aspect ratio */
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-image-3d {
    position: relative;
    width: 100%;
    max-width: 450px;
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-style: preserve-3d;
}

.why-image-3d-wrapper:hover .why-image-3d {
    transform: rotateY(-5deg) rotateX(5deg) translateY(-10px);
}

.main-3d-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    background: #1A1A24;
    border-radius: 24px;
    box-shadow:
        -20px 20px 50px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(147, 51, 234, 0.1);
    display: block;
    transform: translateZ(20px);
}

.floating-element {
    position: absolute;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--purple-light);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 5;
    animation: float3D 4s ease-in-out infinite;
    opacity: 0.8;
}

.letter-a {
    top: 10%;
    right: -5%;
    font-size: 3.5rem;
    animation-delay: 0.2s;
}

.letter-b {
    top: 40%;
    left: -10%;
    font-size: 2.5rem;
    color: var(--blue-light);
    animation-delay: 0.8s;
}

.letter-c {
    bottom: 15%;
    right: 10%;
    font-size: 3rem;
    animation-delay: 1.5s;
}

.number-1 {
    top: 25%;
    left: 5%;
    font-size: 2rem;
    color: var(--orange-light);
    animation-delay: 0.5s;
}

.number-2 {
    bottom: 30%;
    left: -5%;
    font-size: 4rem;
    color: var(--purple-light);
    animation-delay: 1.2s;
}

@keyframes float3D {

    0%,
    100% {
        transform: translateZ(50px) translateY(0) rotate(0deg);
    }

    50% {
        transform: translateZ(80px) translateY(-20px) rotate(5deg);
    }
}

.visual-card-overlay {
    position: absolute;
    bottom: 20px;
    right: -30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateZ(100px);
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid white;
}

@media (max-width: 1024px) {
    .why-image-3d-wrapper {
        height: 400px;
        margin-top: 3rem;
    }

    .visual-card-overlay {
        right: 20px;
        padding: 1.5rem;
    }
}

/* Analytics Section */
.analytics-section {
    padding: 120px 0;
}

.analytics-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.analytics-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
}

.analytics-card.large {
    grid-column: span 2;
}

.card-time {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.analytics-chart {
    margin-top: 2rem;
}

.line-chart {
    width: 100%;
    height: auto;
}

.circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 2rem auto 0;
}

.progress-ring {
    width: 100%;
    height: 100%;
}

.progress-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.75rem;
    font-weight: 700;
}

.mini-bars {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
    height: 100px;
    margin-top: 2rem;
}

.mini-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--purple-light), var(--purple));
    border-radius: 6px;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.quote-icon {
    font-size: 3rem;
    color: var(--purple);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--blue));
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
}

.author-location {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* About Us & Founders Section */
.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    margin-bottom: 6rem;
}

.about-text {
    max-width: 700px;
}

.about-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.about-list li {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 2;
    position: relative;
    padding-left: 1.5rem;
}

.about-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--purple-light);
    font-size: 1.5rem;
    line-height: 1.3;
}

.about-disclaimer {
    background: rgba(147, 51, 234, 0.1);
    border-left: 3px solid var(--purple);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.about-disclaimer p {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.about-disclaimer p:last-child {
    margin-bottom: 0;
}

.about-mission-vision {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.15);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
}

.founders-section {
    margin-top: 6rem;
}

.founders-heading {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.2);
}

.founder-photo {
    width: 200px;
    height: 200px;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    position: relative;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.4);
}

.founder-info {
    width: 100%;
}

.founder-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--purple-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 10px;
    color: var(--purple-light);
    transition: all 0.3s;
}

.founder-linkedin:hover {
    background: var(--purple);
    color: white;
    transform: translateY(-2px);
}

.about-gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blue), transparent);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    top: 20%;
    right: -200px;
    z-index: -1;
}

/* Resources */
.resources {
    padding: 120px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.resource-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.resource-image {
    height: 200px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
}

.blue-bg {
    background: linear-gradient(135deg, var(--blue), var(--blue-light)) !important;
}

.orange-bg {
    background: linear-gradient(135deg, var(--orange), var(--orange-light)) !important;
}

.resource-content {
    padding: 2rem;
}

.resource-tag {
    display: inline-block;
    background: rgba(147, 51, 234, 0.2);
    color: var(--purple-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.resource-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.resource-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.resource-link {
    color: var(--purple-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.resource-link:hover {
    color: var(--purple);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.trust-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.trust-icon {
    font-size: 2.5rem;
}

.trust-text {
    color: var(--text-secondary);
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #0A0A0E, #12121A);
}

.cta-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: left;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 550px;
}

.cta-visual {
    position: relative;
}

.cta-side-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.cta-visual:hover .cta-side-img {
    transform: perspective(1000px) rotateY(-2deg) translateY(-10px);
}

.cta-button {
    background: var(--orange);
    color: white !important;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.4);
}

.cta-gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--orange), transparent);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Roadmap 3D Section - Dynamic & High Contrast */
.roadmap {
    padding: 100px 0 160px;
    overflow: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
    position: relative;
}

.roadmap .section-title {
    color: #0F172A;
    font-size: 3.5rem;
}

.roadmap .section-subtitle {
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

.roadmap-3d-scene {
    position: relative;
    max-width: 1100px;
    margin: 2rem auto 0;
    height: 800px;
    /* Increased height to prevent cutoff */
    perspective: 2500px;
    transform-style: preserve-3d;
}

.roadmap-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg,
            transparent,
            rgba(139, 92, 246, 0.25),
            rgba(59, 130, 246, 0.25),
            transparent);
    transform: translateY(-50%) rotateX(75deg);
    filter: blur(2px);
}

.milestone-3d {
    position: absolute;
    width: 320px;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    top: 50%;
    will-change: transform;
}

/* Precise Staggered positioning with Auto-Float Animation */
.milestone-3d:nth-child(2) {
    left: 0%;
    transform: translateY(-140px) rotateY(15deg) rotateX(5deg);
    animation: autoFloat1 7s ease-in-out infinite;
}

.milestone-3d:nth-child(3) {
    left: 28%;
    transform: translateY(80px) rotateY(-10deg) rotateX(-5deg);
    animation: autoFloat2 8s ease-in-out infinite;
    animation-delay: -1s;
}

.milestone-3d:nth-child(4) {
    left: 56%;
    transform: translateY(-120px) rotateY(10deg) rotateX(10deg);
    animation: autoFloat1 9s ease-in-out infinite;
    animation-delay: -2s;
}

.milestone-3d:nth-child(5) {
    left: 80%;
    transform: translateY(100px) rotateY(-15deg) rotateX(-5deg);
    animation: autoFloat2 7.5s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes autoFloat1 {

    0%,
    100% {
        transform: translateY(-140px) rotateY(15deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-165px) rotateY(18deg) rotateX(8deg);
    }
}

@keyframes autoFloat2 {

    0%,
    100% {
        transform: translateY(80px) rotateY(-10deg) rotateX(-5deg);
    }

    50% {
        transform: translateY(55px) rotateY(-8deg) rotateX(-2deg);
    }
}

.milestone-marker {
    width: 52px;
    height: 52px;
    background: var(--purple);
    border: 5px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    position: relative;
    z-index: 2;
}

.milestone-card-3d {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    padding: 2.25rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
    /* Much deeper shadow for better visibility */
    transform: translateZ(60px);
}

.milestone-tag {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--purple);
    letter-spacing: 0.12rem;
    display: block;
    margin-bottom: 0.85rem;
}

.milestone-card-3d h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1E293B;
    font-weight: 700;
}

.milestone-card-3d p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.75;
}

.milestone-3d:hover {
    transform: scale(1.08) translateZ(120px) rotateY(0deg) rotateX(0deg) !important;
    animation-play-state: paused;
    z-index: 100;
}

.milestone-3d:hover .milestone-card-3d {
    border-color: var(--purple-light);
    box-shadow: 0 50px 100px rgba(139, 92, 246, 0.2);
}

@media (max-width: 1024px) {
    .roadmap-3d-scene {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        perspective: none;
        transform: none;
        margin-bottom: 4rem;
    }

    .milestone-3d {
        position: relative;
        width: 100%;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
    }

    .roadmap-line {
        display: none;
    }
}

@media (max-width: 600px) {
    .roadmap-3d-scene {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--purple-light);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: inline-block;
    width: 24px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2.5rem;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
}

.faq-answer p {
    padding-bottom: 1.75rem;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-item.active {
    border-color: var(--purple-light);
    background: rgba(139, 92, 246, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--purple-light);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Adjust as needed */
    opacity: 1;
}

.badge-soon {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple-light);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    margin-left: 1rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(139, 92, 246, 0.2);
    vertical-align: middle;
}

.faq-question {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

.faq-icon {
    margin-left: auto;
}

/* Footer */
.footer {
    background: var(--dark-card);
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    max-width: 320px;
}

.footer-brand-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: white;
    transform: translateY(-3px);
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s;
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--purple-light);
    transform: translateX(3px);
}

.footer-newsletter {
    max-width: 280px;
}

.newsletter-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.375rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 0.75rem;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem;
    color: white;
    outline: none;
    font-size: 0.9375rem;
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
}

.newsletter-button {
    background: var(--purple);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.newsletter-button:hover {
    background: var(--purple-light);
    transform: scale(1.05);
}

.newsletter-privacy {
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    gap: 2rem;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-legal-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: var(--text-primary);
}

.footer-legal-links span {
    color: var(--border);
}

.footer-bottom-right {
    text-align: right;
}

.footer-disclaimer {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    font-style: italic;
    max-width: 400px;
}

.footer-contact-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.contact-item svg {
    color: var(--purple-light);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--purple-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features-grid,
    .testimonials-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .analytics-grid {
        grid-template-columns: 1fr;
    }

    .analytics-card.large {
        grid-column: span 1;
    }

    .why-content {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }

    .footer-newsletter {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav {
        top: 0;
        padding: 1.25rem 0;
        background: rgba(14, 14, 18, 0.95);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--border);
    }

    .nav-container {
        justify-content: space-between;
    }


    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0A0A0E;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 2px solid var(--purple);
        backdrop-filter: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
        border: none;
        border-radius: 0;
    }


    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links a {
        font-size: 1.1rem;
        font-weight: 600;
        width: 100%;
        text-align: left;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        top: 50%;
        transform: translateY(-50%);
    }

    .logo {
        top: 50%;
        transform: translateY(-50%);
    }

    .brand-logo {
        height: 50px;
    }

    /* Hamburger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-bg-image {
        height: 60%;
        /* Slightly smaller height to fit mobile viewport better */
        opacity: 0.25;
        /* Increased opacity for mobile visibility */
        bottom: 5%;
    }

    .hero-dashboard {
        display: block;
    }

    .combined-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .module-sep {
        width: 100%;
        height: 1px;
        min-height: auto;
        background: linear-gradient(to right, transparent, var(--border), transparent);
    }

    .joiner-flex {
        gap: 2rem;
    }

    .joiner-img-flat {
        width: 100%;
        max-width: 320px;
    }

    .joiner-text .section-title {
        font-size: 2rem;
    }

    .cta-flex {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .cta-content {
        text-align: center;
    }

    .cta-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-side-img {
        transform: none;
    }

    .email-input-group {
        flex-direction: column;
    }

    .email-input {
        min-width: auto;
    }

    .about-heading {
        font-size: 1.5rem;
    }

    .founders-heading {
        font-size: 1.5rem;
    }

    .founder-photo {
        width: 150px;
        height: 150px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand,
    .footer-newsletter {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-bottom-right {
        text-align: left;
    }

    .footer-contact-bar {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .footer-logo {
        font-size: 2rem;
    }
}