/* AIGyde - Gen Z V2 Theme (Derived from aigyde2.html) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    /* Gen Z Palette */
    --lime: #8c52ff;
    /* Electric Lime ccff00 */
    --pink: #ff4dff;
    /* Hot Pink */
    --purple: #ccff00;
    /* Vivid Purple 8c52ff */
    --dark: #0a0a0a;
    /* Almost Black */
    --gray: #1a1a1a;
    /* Dark Gray surface */
    --white: #ffffff;

    --bg-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");

    --nav-height: 80px;
    --container-width: 1200px;
}

/* RESET & BASE */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

ul {
    list-style: none;
}

/* GRAIN TEXTURE OVERLAY */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-noise);
    pointer-events: none;
    z-index: 9999;
}

/* BACKGROUND BLOBS */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 50%, rgba(140, 82, 255, 0.15), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(204, 255, 0, 0.1), transparent 40%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: fluidMove 20s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.blob-1 {
    width: 350px;
    /* "Little Lime" (Visually: Purple var but actually Lime) No wait, check comments. 
                     var(--purple) is visual Lime #ccff00. 
                     So blob-1 uses var(--purple) -> is visually Lime.
                     User wants "little lime". So shrinking blob-1 is correct. */
    height: 350px;
    background: var(--purple);
    top: -100px;
    right: -50px;
    /* Moved from left: -100px to right */
    left: auto;
    /* Reset left */
    opacity: 0.3;
}

.blob-2 {
    width: 550px;
    /* "Some Purple". var(--lime) is visually Purple #8c52ff. */
    height: 550px;
    background: var(--lime);
    bottom: -100px;
    right: -100px;
    /* Already on right */
    animation-delay: -5s;
    opacity: 0.25;
}

.blob-3 {
    width: 250px;
    /* "Little Pink". var(--pink) is Pink. */
    height: 250px;
    background: var(--pink);
    top: 40%;
    right: 15%;
    /* Moved from left: 30% to right: 20% */
    left: auto;
    animation-delay: -10s;
    opacity: 0.25;
}

.blob-4 {
    width: 400px;
    height: 400px;
    background: #00f3ff;
    /* Cyan/Electric Blue */
    top: 30%;
    /* Moved to be "midly in center" vertically */
    right: 35%;
    /* Centered horizontally on the right half roughly */
    left: auto;
    bottom: auto;
    animation-delay: -15s;
    opacity: 0.35;
}

@keyframes fluidMove {
    0% {
        transform: translate(0, 0) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    100% {
        transform: translate(50px, 50px) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
.nav-logo,
.btn,
.marquee-item {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 80px;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1 span,
.text-highlight {
    color: var(--lime);
    -webkit-text-fill-color: var(--lime);
    font-style: italic;
}

p {
    color: #a1a1aa;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* NEW: Utility Classes to replace inline styles */
.text-lime {
    color: var(--lime) !important;
}

.text-pink {
    color: var(--pink) !important;
}

.text-purple {
    color: var(--purple) !important;
}

.text-blue {
    color: #4d9fff !important;
}

.text-italic {
    font-style: italic;
}

.text-uppercase {
    text-transform: uppercase;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.subheading {
    color: var(--lime);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* UTILITIES */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* NAVIGATION (Floating) */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    z-index: 1000;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #d4d4d8;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--lime);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--lime);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 100px;
    font-size: 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background-color: var(--lime);
    color: var(--dark);
    border: 1px solid var(--lime);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px -10px rgba(140, 82, 255, 0.5);
    /* Fixed shadow color to match lime/purple mix */
}

/* Spotlight Ring Effect */
.btn-primary {
    position: relative;
    overflow: visible;
    /* Allow ring to go outside */
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 100px;
    border: 2px solid var(--lime);
    opacity: 0;
    z-index: -1;
    animation: spotlightPulse 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes spotlightPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* CUSTOM CURSOR */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--lime);
    background: rgba(140, 82, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s, height 0.3s;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 10px var(--lime);
}

.custom-cursor.hovering {
    width: 50px;
    height: 50px;
    background: rgba(140, 82, 255, 0.2);
    border-color: var(--pink);
    box-shadow: 0 0 20px var(--pink);
}

/* SCROLL REVEAL ANIMATION */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* HERO SECTION */
header.hero {
    padding-top: 180px;
    /* Space for fixed nav */
    min-height: auto;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(140, 82, 255, 0.2);
    border: 1px solid rgba(140, 82, 255, 0.5);
    color: #d8b4fe;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.mission-box {
    background: var(--gray);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-box p.lead {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 20px;
}

/* HOME MARQUEE */
.marquee {
    width: 100%;
    background: var(--lime);
    color: var(--dark);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    transform: rotate(-2deg) scale(1.05);
    margin: 40px 0 80px;
    border-top: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
}

.marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.marquee-item {
    display: inline-block;
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    margin-right: 40px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* CARDS */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.bento-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    border-color: var(--lime);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.bento-card:nth-child(1) {
    grid-column: span 2;
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
}

.bento-card:nth-child(2) {
    background: var(--purple);
    color: white;
}

.bento-card:nth-child(2) .icon-box,
.bento-card:nth-child(2) p,
.bento-card:nth-child(2) h3 {
    color: var(--dark) !important;
}

.vm-grid .bento-card p {
    color: var(--white) !important;
}

/* Exception for the specific design requested in original file? 
   Original had: p { color: rgba(255, 255, 255, 0.9); } which clashes with purple bg? 
   Wait, --purple is #ccff00 (Lime Greenish?) in root?
   Checking root: 
   --lime: #8c52ff; (Purple color actually)
   --purple: #ccff00; (Lime color actually - names are swapped or confusing in original css)
   
   Let's check the previous CSS file content to be sure.
   Original:
   --lime: #8c52ff; (This is PURPLE hex)
   --pink: #ff4dff;
   --purple: #ccff00; (This is LIME hex)
   
   So when class is text-lime it is purple color. 
   When class is text-purple it is lime color.
   This is confusing naming, but I will stick to the variable definitions 
   but maybe rename classes to match visual color or just stick to variable names.
   I will KEEP existing variable mapping to avoid breaking other things, 
   but I will ensure contrast is correct.
*/


.icon-box {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* TEAM CARDS */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    transition: 0.4s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--lime);
}

.team-role {
    color: var(--lime);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

/* FOOTER */
footer {
    position: relative;
    padding: 80px 20px 40px;
    margin-top: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lime), transparent);
    opacity: 0.6;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    text-align: center;
    line-height: 1;
    margin-bottom: 40px;
    cursor: default;
    transition: all 0.5s ease;
}

.footer-logo:hover {
    color: transparent;
    background: linear-gradient(90deg, #fff, var(--lime));
    -webkit-background-clip: text;
    background-clip: text;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.partner-card {
    text-align: center;
    padding: 30px;
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: 0.3s;
}

.partner-card:hover {
    border-color: var(--lime);
    transform: translateY(-5px);
}

/* PRODUCT PAGE: Modules Container Layout */
.modules-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sticky-wrapper {
    position: relative;
    height: 100%;
}

.sticky-visual {
    position: sticky;
    top: 120px;
}

.sticky-visual img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.module-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: 0.4s;
}

.module-card:hover {
    border-color: var(--lime);
    transform: translateX(5px);
}

.module-number {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--lime);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.module-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* PRODUCT PAGE: Hero Styles */
.product-hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin: 20px 0;
}

.product-hero-desc {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #ccc;
}

.framework-title {
    font-size: 3rem;
    margin-top: 10px;
}

/* FOOTER RESPONSIVE HELPERS */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    font-size: 1.5rem;
    flex-wrap: wrap;
}

.footer-socials a {
    color: white;
    transition: color 0.3s;
}

/* PRODUCT PAGE: Tour Section */
.tour-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.tour-row:nth-child(even) {
    direction: rtl;
}

.tour-row:nth-child(even)>* {
    direction: ltr;
}

.tour-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.tour-text p {
    font-size: 1.05rem;
    color: #a1a1aa;
}

.tour-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* TABLET */
@media (max-width: 1024px) {
    h1 {
        font-size: 56px;
    }

    .section-title {
        font-size: 2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .bento-card:nth-child(1) {
        grid-column: span 2;
    }

    .bento-card {
        padding: 30px;
    }

    .product-hero-title {
        font-size: 3rem;
    }

    .product-hero-desc {
        font-size: 1.1rem;
    }

    .framework-title {
        font-size: 2.2rem;
    }

    .modules-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sticky-visual {
        position: relative;
        top: 0;
        display: flex;
        justify-content: center;
    }

    .sticky-visual img {
        max-width: 80%;
        margin: 0 auto;
    }

    .tour-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .tour-row:nth-child(even) {
        direction: ltr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 900px) {
    .navbar {
        width: 95%;
        padding: 10px 20px;
        border-radius: 20px;
    }

    .nav-links,
    .desktop-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        gap: 12px;
    }

    .nav-links.active a {
        padding: 10px 0;
        font-size: 16px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-card:nth-child(1) {
        grid-column: span 1;
    }

    .bento-card {
        padding: 24px;
        border-radius: 20px;
    }

    .product-hero-title {
        font-size: 2.5rem;
    }

    .product-hero-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .framework-title {
        font-size: 1.8rem;
    }

    header.hero {
        padding-top: 140px;
        padding-bottom: 50px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .mission-box {
        padding: 24px;
        border-radius: 20px;
    }

    .marquee {
        margin: 20px 0 50px;
    }

    .marquee-item {
        font-size: 18px;
        margin-right: 24px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-card {
        padding: 30px;
        border-radius: 20px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .partner-card {
        padding: 24px;
        border-radius: 20px;
    }

    .modules-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sticky-visual {
        position: relative;
        top: 0;
    }

    .modules-list {
        padding-left: 20px;
        border-left-width: 1px;
    }

    .module-card {
        padding: 20px;
    }

    .module-card::before {
        left: -31px;
        width: 16px;
        height: 16px;
        top: 30px;
    }

    .tour-row {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 50px;
    }

    .tour-row:nth-child(even) {
        direction: ltr;
    }

    .tour-text h3 {
        font-size: 1.4rem;
    }

    .flex-center {
        flex-direction: column;
        gap: 12px;
    }

    .flex-center .btn {
        width: 100%;
        max-width: 300px;
    }

    footer {
        padding: 50px 15px 30px;
        margin-top: 60px;
    }

    .footer-logo {
        font-size: 15vw;
        margin-bottom: 24px;
    }

    .footer-links {
        gap: 16px 20px;
        font-size: 0.9rem;
    }

    .footer-socials {
        gap: 16px;
        font-size: 1.3rem;
    }

    .mt-100 {
        margin-top: 50px;
    }

    .mb-100 {
        margin-bottom: 50px;
    }

    .mt-50 {
        margin-top: 30px;
    }

    .mb-50 {
        margin-bottom: 30px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .product-hero-title {
        font-size: 2rem;
    }

    .framework-title {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 8px 16px;
        top: 12px;
    }

    .nav-logo img {
        height: 40px !important;
    }

    .nav-logo span {
        font-size: 18px !important;
    }

    header.hero {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .container {
        padding: 0 16px;
    }

    .bento-card {
        padding: 20px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .subheading {
        font-size: 0.85rem;
    }

    .mission-box {
        padding: 20px;
    }

    .mission-box p.lead {
        font-size: 1.05rem;
    }

    .module-card {
        padding: 16px;
        border-radius: 14px;
    }

    .module-card h3 {
        font-size: 1.1rem;
    }

    .tour-text h3 {
        font-size: 1.2rem;
    }

    .team-card {
        padding: 24px;
    }

    .partner-card {
        padding: 20px;
    }

    .footer-logo {
        font-size: 18vw;
    }

    .marquee-item {
        font-size: 14px;
        margin-right: 16px;
    }
}

/* RESPONSIVE FORM STYLES */
@media (max-width: 600px) {
    .form-grid-2col {
        grid-template-columns: 1fr !important;
    }

    .terms-content-box {
        padding: 24px !important;
        border-radius: 20px !important;
    }

    .fomo-section {
        padding: 30px 20px !important;
    }

    .fomo-section h2 {
        font-size: 2rem !important;
    }

    .collab-form-box {
        padding: 24px !important;
    }
}

/* INFOGRAPHIC TIMELINE LAYOUT */
.modules-list {
    position: relative;
    padding-left: 30px;
    /* Space for the line */
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    /* The timeline line */
}

.module-card {
    margin-bottom: 40px;
    /* Space between steps */
    position: relative;
    border-left: none !important;
    /* Override previous colored borders */
}

/* The Nodes (Dots) on the timeline */
.module-card::before {
    content: '';
    position: absolute;
    left: -41px;
    /* Center on the border line (-30px padding - 1px border - 10px half width) */
    top: 40px;
    /* Align with title roughly */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--dark);
    border: 4px solid var(--gray);
    z-index: 1;
    transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Coloring the Nodes */
.module-card:nth-child(odd)::before {
    border-color: var(--lime);
    box-shadow: 0 0 10px var(--lime);
}

.module-card:nth-child(even)::before {
    border-color: var(--pink);
    box-shadow: 0 0 10px var(--pink);
}

/* Hover Effects on Node */
/* CONSENT BANNER */
.consent-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 600px;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px 32px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.consent-banner.visible {
    transform: translateX(-50%) translateY(0);
}

.consent-content {
    flex: 1;
}

.consent-content h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.consent-content p {
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.4;
    color: #a1a1aa;
}

.consent-content a {
    color: var(--lime);
    text-decoration: underline;
}

.consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.consent-btn {
    padding: 10px 24px;
    font-size: 13px;
}

@media (max-width: 600px) {
    .consent-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        bottom: 20px;
    }

    .consent-actions {
        width: 100%;
        justify-content: center;
    }

    .consent-btn {
        flex: 1;
    }
}