:root {
    --black: #000000;
    --platinum: #F5F5F5;
    --electric-blue: #00D4FF;
    --silver-purple-gradient: linear-gradient(135deg, #C0C0C0 0%, #A4508B 100%);
    --bg-gradient: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
}

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

body {
    background-color: var(--black);
    color: var(--platinum);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

#particle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

#hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.hero-split {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-video {
    width: 60%;
    height: 100%;
    background: var(--bg-gradient);
    position: relative;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(164, 80, 139, 0.2) 100%);
    animation: gradientShift 10s ease infinite alternate;
}

@keyframes gradientShift {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.hero-image {
    width: 40%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(30%) brightness(0.8);
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    text-align: center;
    z-index: 10;
    pointer-events: none;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-content > * {
    pointer-events: auto;
}

.hero-top-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    opacity: 0;
    transform: scale(0.9);
    gap: 0.5rem; /* Ensure tight grouping */
}

.hero-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: 0;
    background: var(--silver-purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-logo {
    max-width: 180px; /* Reduced logo size */
    height: auto;
}

.tagline {
    font-size: clamp(2rem, 6vw, 3.5rem);
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.tagline-top {
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    display: block;
}

.tagline-bottom {
    font-weight: 900;
    background: linear-gradient(180deg, #ffffff 0%, #d1d1d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.8));
    opacity: 0;
    transform: translateY(30px);
    display: block;
}

.subtitle {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0;
    color: var(--electric-blue);
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    background: rgba(0,0,0,0.4);
    padding: 8px 20px;
    display: inline-block;
    border-left: 3px solid var(--electric-blue);
    border-right: 3px solid var(--electric-blue);
}

.tagline-wrapper, .subtitle-wrapper {
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.cta-wrapper {
    overflow: hidden;
    margin-bottom: 0.5rem;
    margin-top: 3rem; /* Lower the button significantly */
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--silver-purple-gradient);
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 2rem;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(164, 80, 139, 0.4);
    border-color: var(--electric-blue);
}

/* Animations */
.fade-in {
    animation: fadeIn 1.2s cubic-bezier(0.2, 0, 0.2, 1) forwards;
}

.slide-up {
    animation: slideUp 1s cubic-bezier(0.2, 0, 0.2, 1) forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator Removed */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

/* Main Navigation */
#main-nav {
    position: fixed;
    top: -100px; /* Initially hidden above viewport */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: top 0.4s ease, background 0.4s ease, padding 0.4s ease;
    backdrop-filter: blur(10px); /* Always apply blur for better readability */
    background: rgba(0, 0, 0, 0.5); /* Slight background always */
}

#main-nav.visible {
    top: 0; /* Slide down when visible */
}

#main-nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#main-nav .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
}

.nav-logo img {
    height: 60px; /* Zmniejszone znacznie z 70px */
    width: auto;
    transition: transform 0.3s ease;
}

.nav-brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--silver-purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center; /* Ensure items are vertically centered */
}

.nav-menu a {
    color: var(--platinum);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    opacity: 1;
    color: var(--electric-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-menu a.nav-cta-btn {
    background: var(--silver-purple-gradient);
    color: white;
    padding: 0.5rem 1.2rem;
    opacity: 1;
    border-radius: 4px; /* Optional rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0; /* Removed extra margin since flex gap handles spacing */
    vertical-align: middle; /* Ensure vertical alignment */
}

.nav-menu a.nav-cta-btn:hover {
    color: white;
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(164, 80, 139, 0.4);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lang-switcher {
    font-size: 0.75rem;
    font-weight: 700;
    color: #444;
    letter-spacing: 1px;
}

.lang-switcher span {
    cursor: pointer;
    transition: color 0.3s ease;
}

.lang-switcher span.active {
    color: var(--electric-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.lang-switcher span:hover:not(.active) {
    color: #888;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--platinum);
    transition: all 0.3s ease;
}

/* Manifesto Section */
#manifesto {
    position: relative;
    padding: 150px 0;
    background: #0a0a0a;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.manifesto-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    filter: blur(20px) grayscale(100%);
    z-index: 1;
}

.manifesto-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(at 0% 0%, rgba(164, 80, 139, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(0, 212, 255, 0.1) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(164, 80, 139, 0.1) 0px, transparent 50%),
                radial-gradient(at 0% 100%, rgba(0, 212, 255, 0.15) 0px, transparent 50%);
    z-index: 2;
    animation: meshFlow 20s ease infinite alternate;
}

@keyframes meshFlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.manifesto-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    text-align: center;
    margin-bottom: 6rem;
    color: var(--platinum);
    letter-spacing: 4px;
    position: relative;
    width: 100%;
}

.manifesto-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--silver-purple-gradient);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.manifesto-col {
    text-align: center;
    padding: 4rem 2.5rem;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.manifesto-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--silver-purple-gradient);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.manifesto-col:hover {
    background: rgba(20, 20, 20, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

    .manifesto-col:hover::before {
        transform: scaleX(1);
    }

    .manifesto-col h3::after {
        content: '';
        display: block;
        width: 30px;
        height: 1px;
        background: var(--silver-purple-gradient);
        margin: 10px auto;
    }

.manifesto-col .icon {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: var(--silver-purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(164, 80, 139, 0.3));
}

.manifesto-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.manifesto-col p {
    color: #ccc;
    font-size: 1rem;
    font-weight: 300;
}

.values-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.values-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.values-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
}

/* Reveal Animation Class */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.2, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* AI Revolution Section */
#ai-revolution {
    position: relative;
    padding: 150px 0;
    background: #000;
    overflow: hidden;
    min-height: 100vh;
}

.section-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    text-align: center;
    margin-bottom: 6rem;
    color: var(--platinum);
    letter-spacing: 4px;
    width: 100%;
}

.ai-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    opacity: 0.3;
    z-index: 3;
    pointer-events: none;
}

.ai-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(1.2);
}

.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.3;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    position: relative;
    z-index: 5;
    margin-right: auto;
    align-items: stretch;
}

.ai-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 400px;
    justify-content: flex-start;
}

.ai-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--electric-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    background: rgba(20, 20, 20, 0.9);
}

.ai-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(164, 80, 139, 0.4));
    transition: transform 0.5s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-icon svg {
    width: 100%;
    height: 100%;
}

.ai-card:hover .ai-icon {
    transform: scale(1.1) rotate(5deg);
}

.ai-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-card p {
    color: #aaa;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

/* NOVA Section */
#nova {
    position: relative;
    padding: 150px 0;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.nova-bg-model {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.nova-bg-model img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.nova-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(164, 80, 139, 0.2) 0%, rgba(0, 212, 255, 0.2) 50%, rgba(0, 0, 0, 1) 100%);
    z-index: 2;
    animation: gradientShift 15s ease infinite alternate;
}

.nova-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
    position: relative;
    z-index: 5;
    align-items: center;
}

.nova-title {
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 900;
    margin-bottom: 2rem;
    background: var(--silver-purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 10px;
}

.vera-title {
    font-size: clamp(3.5rem, 12vw, 6.5rem);
}

.nova-desc {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin-bottom: 4rem;
    line-height: 1.8;
}

.nova-stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--platinum);
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--electric-blue);
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-top: 0.5rem;
}

.nova-cta {
    background: var(--platinum);
    color: var(--black);
    border: none;
}

.nova-cta:hover {
    background: var(--electric-blue);
    color: white;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    background: #111;
    border: 12px solid #222;
    border-radius: 40px;
    overflow: visible;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.profile-header {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--silver-purple-gradient);
}

.profile-info {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
}

.profile-post {
    width: 100%;
    height: calc(100% - 70px);
}

.profile-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.f-icon svg {
    width: 60%;
    height: 60%;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.f-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.1);
    animation: floating 4s ease-in-out infinite;
}

.instagram { top: 10%; right: -30px; animation-delay: 0s; color: #E1306C; }
.tiktok { top: 40%; left: -45px; animation-delay: 1s; color: #00f2ea; }
.youtube { bottom: 15%; right: -25px; animation-delay: 2s; color: #FF0000; }
.facebook { top: 20%; left: -35px; animation-delay: 0.5s; color: #1877F2; }
.twitter { bottom: 30%; left: -40px; animation-delay: 1.5s; color: #000000; }
.snapchat { bottom: 5%; left: 10px; animation-delay: 2.5s; color: #FFFC00; text-shadow: 0 0 5px rgba(0,0,0,0.5); }
.linkedin { top: 25%; right: -40px; animation-delay: 3s; color: #0077B5; }

@keyframes floating {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Services Section */
#services {
    position: relative;
    padding: 150px 0;
    background: #050505;
    overflow: hidden;
    min-height: 100vh;
}

.service-strip {
    position: absolute;
    top: 0;
    width: 10vw;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.strip-left { 
    left: 0; 
    border-right: 1px solid rgba(255,255,255,0.05); 
}

.strip-right { 
    right: 0; 
    border-left: 1px solid rgba(255,255,255,0.05); 
}

.service-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

#services .container {
    max-width: 1200px;
    width: 100%;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 20px;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--silver-purple-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active {
    color: var(--platinum);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--electric-blue);
    transform: translateY(-5px);
}

.s-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 8px rgba(164, 80, 139, 0.3));
    transition: all 0.5s ease;
}

.s-icon svg {
    width: 100%;
    height: 100%;
}

.service-card:hover .s-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: var(--platinum);
}

.service-card p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0;
    transition: margin 0.3s ease;
}

/* Technology Stack Section */
#technology {
    position: relative;
    padding: 150px 0;
    background: #000;
    overflow: hidden;
    min-height: 100vh;
}

.tech-circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 1;
}

.tech-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    text-align: center;
    margin-bottom: 6rem;
    color: var(--platinum);
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.tech-stack-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    z-index: 5;
}

.tech-layer {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.5s ease;
}

.tech-layer:hover {
    background: rgba(20, 20, 20, 0.8);
    border-color: rgba(0, 212, 255, 0.3);
}

.tech-layer h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
    transition: color 0.3s ease;
}

.tech-layer:hover h3 {
    color: var(--electric-blue);
}

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.tech-item {
    width: 120px;
    height: 60px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    padding: 0 10px;
}

.tech-item:hover {
    border-color: var(--electric-blue);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.t-icon {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    background: var(--silver-purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.tech-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.ethics-badge {
    margin-top: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
    color: var(--platinum);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* Tooltip */
.tech-tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 0.9rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
    max-width: 250px;
    border: 1px solid var(--electric-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

/* Roadmap Section */
#roadmap {
    position: relative;
    padding: 150px 0;
    background: #000;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.roadmap-bg-model {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.roadmap-bg-model img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.roadmap-wrapper {
    position: relative;
    margin-top: 4rem;
    margin-left: 20%;
    padding-left: 5%;
}

.progress-track {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: var(--silver-purple-gradient);
    box-shadow: 0 0 15px rgba(164, 80, 139, 0.5);
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-phase {
    flex: 1;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.phase-marker {
    width: 60px;
    height: 60px;
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #444;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 0 rgba(164, 80, 139, 0);
}

.timeline-phase.active .phase-marker {
    border-color: var(--electric-blue);
    color: var(--electric-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: scale(1.1);
}

.phase-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    transition: color 0.4s ease;
}

.timeline-phase.active .phase-header h3 {
    color: var(--platinum);
}

.phase-time {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
}

.phase-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 0 2rem;
}

.timeline-phase.active .phase-details {
    max-height: 400px;
    opacity: 1;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.milestones {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.milestones li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #aaa;
    position: relative;
    padding-left: 25px;
}

.milestones li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
}

.phase-icon {
    font-size: 3rem;
    margin-top: 2rem;
    opacity: 0.3;
}

/* Founder Section */
#founder {
    position: relative;
    padding: 150px 0;
    background: #030303;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.founder-bg-effect {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(164, 80, 139, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.founder-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
    transition: transform 0.7s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, rgba(164, 80, 139, 0.2) 100%);
    z-index: 2;
}

.founder-text {
    color: var(--platinum);
}

.founder-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--silver-purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.founder-role {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--electric-blue);
    margin-bottom: 3rem;
}

.founder-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.founder-story strong {
    color: white;
    font-weight: 700;
}

.founder-sign {
    margin-top: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #666;
}

/* Contact Section */
#contact {
    position: relative;
    padding: 150px 0;
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(0.4) grayscale(100%);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #000 100%);
}

.cta-container {
    position: relative;
    z-index: 5;
    text-align: center;
    width: 100%;
}

.contact-title {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 1.5rem;
    color: var(--platinum);
    text-shadow: 0 0 30px rgba(0,0,0,0.8);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 6rem;
}

.primary-cta {
    background: var(--silver-purple-gradient);
    border: none !important;
    padding: 1.5rem 3.5rem;
    font-size: 1.1rem;
}

.secondary-cta {
    background: transparent;
    border: 1px solid var(--platinum) !important;
    padding: 1.5rem 3.5rem;
    font-size: 1.1rem;
}

.pulse {
    animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
    0% { box-shadow: 0 0 0 0 rgba(164, 80, 139, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(164, 80, 139, 0); }
    100% { box-shadow: 0 0 0 0 rgba(164, 80, 139, 0); }
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.mini-cta-wrapper {
    margin: 4rem auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.mini-cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
}

.mini-cta-text {
    font-size: 1.5rem;
    color: var(--platinum);
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.casting-btn {
    opacity: 1;
    margin-bottom: 0;
    padding: 1.2rem 4rem;
    font-size: 1.2rem;
    background: transparent;
    border: 1px solid var(--electric-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    letter-spacing: 3px;
    font-weight: 900;
}

.casting-btn:hover {
    background: var(--electric-blue);
    color: var(--black);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    transform: translateY(-3px) scale(1.02);
}

/* Confirmation Popup */
.form-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.form-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #0a0a0a;
    border: 1px solid var(--electric-blue);
    padding: 3rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    border-radius: 20px;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.2);
}

.form-popup.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-icon {
    width: 60px;
    height: 60px;
    background: var(--electric-blue);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.popup-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--platinum);
}

.popup-content p {
    color: #aaa;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-close {
    background: var(--silver-purple-gradient);
    color: white;
    border: none;
    padding: 0.8rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.popup-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(164, 80, 139, 0.4);
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--platinum);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23F5F5F5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
    cursor: pointer;
}

.form-group select option {
    background-color: #000;
    color: var(--platinum);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--silver-purple-gradient);
    color: white;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(164, 80, 139, 0.4);
}

/* Footer */
footer {
    background: #000;
    padding: 100px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    text-align: left;
}

.footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--platinum);
    margin-bottom: 2rem;
}

.f-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(0.9);
}

.f-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.f-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.f-nav a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.f-nav a:hover {
    color: var(--electric-blue);
    padding-left: 5px;
}

.footer-col.info p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.f-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.f-legal a {
    color: #444;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.f-legal a:hover {
    color: #888;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-star {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: #333;
}

.copyright {
    color: #333;
    font-size: 0.7rem;
}

/* Tablet & Laptop Navigation Breakpoint */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 1024px) {
    /* Switch to mobile menu earlier to avoid overlap */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        backdrop-filter: blur(20px);
        z-index: 999;
        gap: 2.5rem;
    }

    .nav-menu.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu a {
        font-size: 1.5rem;
        opacity: 1;
    }

    .nav-menu a.nav-cta-btn {
        padding: 1rem 2.5rem;
        font-size: 1.2rem;
    }

    /* Adjust container padding */
    .container {
        padding: 0 1.5rem;
    }

    .ai-grid {
        gap: 2rem;
        max-width: 100%;
    }

    .ai-card {
        padding: 3rem 2rem;
        min-height: 350px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #hero {
        flex-direction: column;
        height: auto;
        min-height: auto; /* Allow hero to be shorter on mobile if content is short */
    }
    .hero-split {
        flex-direction: column;
        position: absolute; /* Changed from relative to absolute */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; /* Cover entire hero section */
        z-index: 1;
    }
    .hero-video {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    .hero-image {
        display: none;
    }
    .hero-content {
        position: relative;
        height: 100vh; /* Full viewport height */
        width: 100%;
        transform: none;
        left: 0;
        top: 0;
        padding: 6rem 1.5rem 2rem; /* Add top padding to clear fixed nav/status bar */
        justify-content: flex-start; /* Align content to start (top) */
        background: rgba(0,0,0,0.4); /* Slight overlay for readability */
        margin-top: 0; /* Remove negative margin */
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 10;
    }
    .tagline {
        font-size: 2rem;
        line-height: 1.2;
    }
    .subtitle {
        font-size: 0.75rem;
        letter-spacing: 1px;
        padding: 5px 15px;
        margin-top: 1rem;
    }
    .hero-logo {
        max-width: 180px;
    }
    .hero-brand-name {
        font-size: 1.5rem;
    }
    .cta-wrapper {
        margin-top: 2rem;
    }
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .manifesto-title {
        font-size: 2.2rem;
        margin-bottom: 4rem;
        letter-spacing: 2px;
    }
    #manifesto {
        padding: 40px 0; /* Reduced from 80px */
    }
    .manifesto-col {
        padding: 2.5rem 1.5rem;
    }
    .manifesto-col .icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .manifesto-col h3 {
        font-size: 1.2rem;
    }
    .values-list {
        text-align: center;
        padding-left: 0;
    }
    .values-list li {
        padding-left: 0;
        display: block;
    }
    .values-list li::before {
        display: none;
    }
    .ai-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .ai-card {
        min-height: auto;
        padding: 2.5rem 1.5rem;
    }
    .ai-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1.5rem;
    }
    .ai-card h3 {
        font-size: 1.2rem;
        min-height: auto;
        margin-bottom: 1rem;
    }
    .ai-bg-image {
        width: 100%;
        opacity: 0.1;
        height: 50%;
        top: auto;
        bottom: 0;
    }
    .section-title {
        margin-bottom: 3rem;
    }

    .nova-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .nova-stats {
        justify-content: center;
        gap: 2rem;
    }
    .phone-mockup {
        width: 260px;
        height: 520px;
    }
    .floating-icons {
        display: block;
    }
    .f-icon {
        width: 40px;
        height: 40px;
    }
    .vera-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: 5px;
    }
    #nova {
        padding: 40px 0; /* Reduced from 80px */
    }
    .nova-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .service-card {
        padding: 2rem 1.5rem;
    }
    .tabs-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 3rem;
    }
    .tab-btn {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    .service-strip {
        display: none;
    }
    .tech-icons {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
        justify-items: center;
    }

    .tech-item {
        width: 100%;
        max-width: 180px;
        height: 50px;
    }

    #technology {
        display: none; /* Hide technology section on mobile */
    }

    .tech-layer {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .tech-stack-container {
        gap: 2rem;
    }

    .tech-title {
        margin-bottom: 3rem;
    }

    .ethics-badge {
        margin-top: 4rem;
        padding: 1rem 1.5rem;
        font-size: 0.7rem;
        width: 100%;
        text-align: center;
    }
    .timeline {
        flex-direction: column;
        gap: 4rem;
    }
    .progress-track {
        display: none;
    }
    .roadmap-bg-model {
        display: none;
    }
    .roadmap-wrapper {
        margin-left: 0;
        padding-left: 0;
    }
    .cta-group {
        flex-direction: column;
        align-items: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .f-desc {
        margin: 0 auto;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Contact Section Mobile Adjustments */
    #contact {
        padding: 40px 0; /* Reduced from 80px */
        min-height: auto;
    }

    .contact-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Footer Mobile Adjustments */
    footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .f-logo {
        height: 35px;
        margin-bottom: 1rem;
    }

    .f-desc {
        font-size: 0.85rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .f-nav {
        align-items: center;
        gap: 1.2rem;
    }

    .f-nav a {
        font-size: 1rem;
        padding: 5px 0;
    }

    .footer-col.info p {
        margin-bottom: 1.5rem;
    }

    .f-legal {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }
    
    /* Navigation styles moved to 1024px breakpoint above */

    .nav-actions {
        gap: 1rem;
    }
    
    .nav-brand-text {
        font-size: 1rem;
    }
    
    .nav-logo img {
        height: 35px;
    }

    #roadmap {
        padding: 40px 0; /* Reduced from 60px */
    }

    /* Founder Section Mobile Adjustments */
    #founder {
        padding: 40px 0; /* Reduced from 80px */
        min-height: auto;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .image-wrapper {
        height: 400px;
    }

    .founder-name {
        font-size: 2.5rem;
    }

    .founder-role {
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .founder-sign {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }

    .roadmap-wrapper {
        margin-top: 2rem;
    }

    .timeline-phase {
        text-align: left;
        margin-bottom: 2rem;
    }

    .timeline-phase:last-child {
        margin-bottom: 0;
    }

    .phase-marker {
        margin: 0 0 1rem 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .timeline-phase.active .phase-details {
        max-height: 1000px;
        padding: 2rem 1.5rem;
    }

    .phase-header h3 {
        font-size: 1.3rem;
    }

    .milestones li {
        font-size: 0.9rem;
    }

    @media (max-width: 480px) {
        .timeline-phase.active .phase-details {
            padding: 1.5rem 1rem;
        }

        .phase-header h3 {
            font-size: 1.1rem;
        }

        .milestones li {
            font-size: 0.85rem;
            margin-bottom: 0.8rem;
        }
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--platinum);
    padding: 1.5rem 2rem;
    z-index: 10000;
    transition: bottom 0.5s cubic-bezier(0.2, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-consent.active {
    bottom: 0;
}

.cookie-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
    font-weight: 300;
}

.cookie-btn {
    background: var(--silver-purple-gradient);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(164, 80, 139, 0.4);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1.5rem 1rem;
    }
    
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-text {
        font-size: 0.8rem;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

.credit-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.credit-link:hover {
    color: var(--electric-blue);
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}
