/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - EXACTLY YOUR ORIGINAL DESIGN */
.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 15px 30px;
    transition: all 0.4s ease;
    animation: navFloat 3s ease-in-out infinite;
    pointer-events: auto;
}

@keyframes navFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-3px); }
}

.nav-floating:hover {
    background: rgba(0, 0, 0, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(-50%) scale(1.02);
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: inherit;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    z-index: inherit;
    pointer-events: auto;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
    filter: brightness(1);
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Desktop Navigation - EXACTLY YOUR ORIGINAL */
.desktop-nav {
    display: flex;
    gap: 25px;
    z-index: inherit;
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    pointer-events: auto;
    z-index: inherit;
    display: block;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Mobile Navigation - FIXED FOR CLICKABILITY */
.mobile-hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
    pointer-events: auto;
    position: relative;
}

.mobile-hamburger span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    pointer-events: none;
}

.mobile-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.mobile-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-top: 10px;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    pointer-events: auto;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
    pointer-events: auto;
    cursor: pointer;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

/* ALL YOUR ORIGINAL STYLES EXACTLY AS THEY WERE */
.hero-immersive {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000000;
    overflow: hidden;
}

.neural-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

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

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(128, 128, 128, 0.1), transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(128, 128, 128, 0.1), transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(128, 128, 128, 0.05), transparent 50%);
    animation: grayPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes grayPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
}

.line-1, .line-2 {
    display: block;
}

.line-2 {
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 0.8rem;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 1.5s forwards;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #ffffff, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Morphing Section */
.morphing-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 0;
}

.morph-container {
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.morph-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.morph-content.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-text {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #cccccc;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

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

.floating-shapes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(128, 128, 128, 0.1), transparent);
    border-radius: 50%;
    animation: floatSlow 10s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Value Proposition Showcase */
.value-prop-showcase {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.showcase-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-left {
    z-index: 2;
}

.showcase-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-text {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #cccccc;
    line-height: 1.7;
}

.highlight-animated {
    color: #ffffff;
    font-weight: 600;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
    50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.6); }
}

.showcase-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clarity-logo-animated {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(128, 128, 128, 0.1), transparent);
}

.logo-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: logoRotate 20s linear infinite;
}

@keyframes logoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    z-index: 2;
}

/* Core Values Orbital Display */
.values-orbital {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
}

.orbital-container {
    max-width: 1100px;
    padding: 0 20px;
    text-align: center;
}

.orbital-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 80px;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orbital-system {
    position: relative;
    width: 700px;
    height: 700px;
    margin: 0 auto;
}

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(128, 128, 128, 0.1), transparent);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
    z-index: 10;
    transition: all 0.3s ease;
}

.central-hub:hover {
    transform: translate(-50%, -50%) scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.hub-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hub-description {
    font-size: 0.75rem;
    color: #cccccc;
    line-height: 1.3;
    text-align: center;
}

.orbital-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.ring-1 {
    width: 480px;
    height: 480px;
    animation: orbitSlow 30s linear infinite;
}

.ring-2 {
    width: 580px;
    height: 580px;
    animation: orbitSlow 40s linear infinite reverse;
}

@keyframes orbitSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbital-item {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 5;
}

.orbital-item:hover {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.orbital-icon img {
    width: 35px;
    height: 35px;
    filter: invert(1);
    transition: all 0.3s ease;
}

.orbital-item:hover .orbital-icon img {
    transform: scale(1.1);
}

.orbital-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 320px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 25px;
    z-index: 2000;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.orbital-item:hover .orbital-content {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.orbital-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orbital-content p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
}

.orbital-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.1));
    border-radius: 15px;
    z-index: -1;
}

.orbital-content::after {
    content: '×';
    position: absolute;
    top: 10px;
    right: 15px;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.orbital-content:hover::after {
    opacity: 1;
}

/* Sequential Personality Timeline */
.personality-sequential {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 0;
}

.sequential-container {
    max-width: 1000px;
    padding: 0 20px;
    width: 100%;
}

.sequential-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.personality-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.timeline-item:nth-child(even).animate {
    transform: translateX(0);
}

.timeline-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 30px;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    border-radius: 50%;
    border: 3px solid #000000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    animation: dotPulse 3s ease-in-out infinite;
    z-index: 2;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-item:hover .marker-dot {
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    animation-duration: 1.5s;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); }
    50% { transform: scale(1.2); box-shadow: 0 0 25px rgba(255, 255, 255, 0.8); }
}

.marker-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.3));
    margin-top: 8px;
    transition: all 0.3s ease;
}

.timeline-item:hover .marker-line {
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.6));
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.timeline-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.timeline-content:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.9);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent, rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.timeline-content:hover h3 {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.timeline-content p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.timeline-content:hover p {
    color: #ffffff;
    transform: translateX(5px);
}

/* CTA Immersive */
.cta-immersive {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

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

.particle-burst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(128, 128, 128, 0.2), transparent);
    border-radius: 50%;
    animation: burstPulse 6s ease-in-out infinite;
}

@keyframes burstPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.6; }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
}

.highlight-pulse {
    color: #ffffff;
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { text-shadow: 0 0 20px rgba(128, 128, 128, 0.5); }
    50% { text-shadow: 0 0 40px rgba(128, 128, 128, 1); }
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #cccccc;
    margin-bottom: 40px;
}

/* Footer */
.footer-minimal {
    padding: 50px 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(128, 128, 128, 0.1);
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    max-width: 250px;
    filter: brightness(1);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    opacity: 1;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 15px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #888888;
}

/* Mobile - 768px and below - FIXED STATIC NAVBAR */
@media (max-width: 768px) {
    /* Hide desktop nav, show mobile */
    .desktop-nav {
        display: none;
    }
    
    .mobile-hamburger {
        display: flex;
        z-index: 10003 !important;
        pointer-events: auto !important;
        position: relative !important;
        cursor: pointer !important;
    }
    
    .mobile-menu {
        z-index: 10002 !important;
        pointer-events: auto !important;
    }
    
    /* FIXED STATIC NAVBAR - NO MOVEMENT */
    .nav-floating {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 10004 !important;
        pointer-events: auto !important;
        
        /* REMOVE ALL MOVEMENT */
        transform: none !important;
        animation: none !important;
        border-radius: 25px;
        padding: 12px 20px;
        margin: 0 15px;
        max-width: calc(100vw - 30px);
    }
    
    .nav-content {
        gap: 15px;
        justify-content: space-between;
        pointer-events: auto !important;
    }
    
    .logo-image {
        height: 30px;
        max-width: 150px;
    }
    
    /* Add body padding to prevent content hiding behind navbar */
    body {
        padding-top: 70px !important;
    }
    
    /* Rest of your mobile styles... */
    .orbital-system {
        width: 90vw;
        max-width: 400px;
        height: 90vw;
        max-height: 400px;
    }
    
    .central-hub {
        width: 50%;
        height: 50%;
        padding: 20px;
        font-size: 0.9rem;
    }
    
    .ring-1 {
        width: 75%;
        height: 75%;
    }
    
    .ring-2 {
        width: 85%;
        height: 85%;
    }
    
    .orbital-item {
        width: 15%;
        height: 15%;
        top: -7.5%;
    }
    
    .orbital-icon img {
        width: 60%;
        height: 60%;
    }
    
    .orbital-content {
        width: 80vw;
        max-width: 300px;
        padding: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
        transform: translateY(20px) !important;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column !important;
        transform: translateY(20px) !important;
    }
    
    .timeline-marker {
        margin: 0 0 15px 0;
        order: 1;
    }
    
    .timeline-content {
        order: 2;
        max-width: 100%;
        margin: 0;
        padding: 20px;
    }
    
    .marker-line {
        height: 20px;
    }
    
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .clarity-logo-animated {
        width: 150px;
        height: 150px;
    }
    
    .footer-logo-image {
        height: 40px;
        max-width: 200px;
    }
}

/* Small mobile - 480px and below */
@media (max-width: 480px) {
    .nav-floating {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 10px 15px;
        border-radius: 20px;
    }
    
    .logo-image {
        height: 25px;
        max-width: 120px;
    }
    
    .orbital-system {
        width: 95vw;
        max-width: 320px;
        height: 95vw;
        max-height: 320px;
    }
    
    .orbital-content {
        width: 90vw;
        max-width: 280px;
        padding: 16px;
    }
    
    .clarity-logo-animated {
        width: 120px;
        height: 120px;
    }
    
    .footer-logo-image {
        height: 35px;
        max-width: 150px;
    }
    
    /* Disable heavy animations on small screens */
    .floating-particles,
    .particle-burst {
        animation: none;
        opacity: 0.2;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover,
    .timeline-content:hover,
    .central-hub:hover,
    .orbital-item:hover {
        transform: none;
        background: inherit;
        box-shadow: none;
    }
    
    .mobile-nav-link:active {
        background: rgba(255, 255, 255, 0.15);
        transform: scale(0.98);
    }
    
    .mobile-hamburger:active {
        transform: scale(0.95);
    }
}
