:root {
    --primary: #0a0a0f;
    --secondary: #1a1a2e;
    --accent-cyan: #00d4ff;
    --accent-orange: #ff6b35;
    --accent-purple: #7b2cbf;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --glow-cyan: 0 0 30px rgba(0, 212, 255, 0.5);
    --glow-purple: 0 0 30px rgba(123, 44, 191, 0.5);
    --glow-orange: 0 0 30px rgba(255, 107, 53, 0.5);
}

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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

.floating-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.floating-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 212, 255, 0.15);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(123, 44, 191, 0.15);
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.floating-orb.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(255, 107, 53, 0.1);
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(-20px, 20px); }
    75% { transform: translate(20px, 30px); }
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

nav.scrolled::before {
    opacity: 1;
}

nav.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    padding: 15px 50px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.nav-links a:hover::before {
    transform: translateX(-50%) scale(1);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 30px;
    height: 2px;
    background: var(--accent-cyan);
    transition: all 0.3s ease;
}

section {
    min-height: 100vh;
    position: relative;
    z-index: 2;
    padding: 0px 50px;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: visible;
    perspective: 1000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    z-index: 10;
    position: relative;
}

.hero-team-logo {
    position: relative;
}

.hero-team-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, rgba(123, 44, 191, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: -1;
    animation: logoGlow 4s ease-in-out infinite;
}

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

.js-cube {
    position: absolute;
    width: 220px;
    height: 220px;
    transform-style: preserve-3d;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6));
}

.js-cube.left {
    left: 15%;
    top: 45%;
}

.js-cube.right {
    right: 15%;
    top: 35%;
}

.js-cube .cube-face {
    position: absolute;
    width: 220px;
    height: 220px;
    border: 2px solid var(--accent-cyan);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.js-cube .cube-face:nth-child(1) { transform: translateZ(110px); }
.js-cube .cube-face:nth-child(2) { transform: rotateY(180deg) translateZ(110px); }
.js-cube .cube-face:nth-child(3) { transform: rotateY(90deg) translateZ(110px); }
.js-cube .cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(110px); }
.js-cube .cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(110px); }
.js-cube .cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(110px); }

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 50%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5)); }
    to { filter: drop-shadow(0 0 40px rgba(123, 44, 191, 0.5)); }
}

.hero-team-number {
    font-family: 'Share Tech Mono', monospace;
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-cyan);
    opacity: 0.8;
    text-shadow: 0 0 50px var(--accent-cyan);
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { opacity: 0.8; text-shadow: 0 0 50px var(--accent-cyan); }
    50% { opacity: 1; text-shadow: 0 0 80px var(--accent-cyan), 0 0 120px var(--accent-purple); }
}

.hero-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 30px;
    overflow: hidden;
}

.hero-tagline span {
    display: inline-block;
    animation: typewriter 3s steps(30) forwards;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid var(--accent-orange);
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.scroll-indicator .arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--accent-cyan);
    border-bottom: 2px solid var(--accent-cyan);
    transform: rotate(45deg);
}

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

.cube-container {
    position: absolute;
    width: 300px;
    height: 300px;
    perspective: 1000px;
    opacity: 0.8;
    z-index: 0;
}

.cube-container.left {
    left: 2%;
    top: 25%;
}

.cube-container.right {
    right: 2%;
    top: 15%;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeRotate 10s infinite linear;
}

.cube div {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 8px solid var(--accent-cyan);
    background: rgba(0, 212, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: visible;
}

.cube .face1 { transform: translateZ(150px); }
.cube .face2 { transform: rotateY(180deg) translateZ(150px); }
.cube .face3 { transform: rotateY(90deg) translateZ(150px); }
.cube .face4 { transform: rotateY(-90deg) translateZ(150px); }
.cube .face5 { transform: rotateX(90deg) translateZ(150px); }
.cube .face6 { transform: rotateX(-90deg) translateZ(150px); }

@keyframes cubeRotate {
    from { transform: rotateX(-20deg) rotateY(0deg); }
    to { transform: rotateX(-20deg) rotateY(360deg); }
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin: 60px 0;
    position: relative;
    display: block;
    width: 100%;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.section-title::after {
    content: '';
    position: absolute;
    align-self: center;
    bottom: -10px;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    box-shadow: 0 0 20px var(--accent-cyan);
}

.about {
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(0, 212, 255, 0.3);
}

.about-text .highlight {
    color: var(--accent-cyan);
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::after {
    left: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.stat-number {
    font-family: 'Share Tech Mono', monospace;
    font-size: 3rem;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px var(--accent-cyan);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.robot {
    background: var(--primary);
}

.robot-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.robot-image {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border: 2px solid var(--accent-cyan);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
}

.robot-image::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--accent-cyan), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0.3;
}

.robot-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, var(--primary) 70%);
}

.robot-image::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--accent-cyan), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0.3;
}

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

.robot-image-inner {
    position: relative;
    z-index: 10;
    text-align: center;
}

.robot-icon {
    font-size: 8rem;
    margin-bottom: 20px;
}

.robot-image span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--accent-cyan);
}

.robot-specs {
    display: grid;
    gap: 20px;
}

.spec-card {
    background: rgba(26, 26, 46, 0.6);
    border-left: 4px solid var(--accent-orange);
    padding: 20px 30px;
    border-radius: 0 10px 10px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spec-card:hover {
    background: rgba(26, 26, 46, 0.9);
    transform: translateX(10px);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.spec-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.spec-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.team {
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
    transform: scale(0);
    transition: transform 0.4s ease;
}

.team-card:hover::after {
    transform: scale(1);
}

.team-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-cyan);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    z-index: 10;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

.team-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
    z-index: 10;
}

.team-role {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 10;
}

.contact {
    background: var(--primary);
    min-height: auto;
    padding: 100px 50px;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2), inset 0 0 20px rgba(0, 212, 255, 0.05);
}

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

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group textarea + label {
    top: 20px;
    transform: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--accent-cyan);
    background: var(--primary);
    padding: 0 5px;
}

.submit-btn {
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border: none;
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::after {
    width: 300px;
    height: 300px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4);
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--accent-cyan);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    transform: translateX(10px);
    border-left: 3px solid var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.contact-details span {
    display: block;
}

.contact-details .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details .value {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover {
    transform: translateY(-10px) rotate(360deg);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4);
    background: var(--accent-cyan);
}

.social-link:hover::before {
    opacity: 1;
}

footer {
    background: var(--secondary);
    padding: 40px 50px;
    text-align: center;
    position: relative;
    z-index: 2;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer .team-number {
    font-family: 'Share Tech Mono', monospace;
    color: var(--accent-cyan);
    font-size: 1.2rem;
    margin-top: 10px;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (max-width: 1024px) {
    .about-content,
    .robot-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title {
        left: 50%;
        transform: translateX(-50%);
    }

    .cube-container {
        width: 120px;
        height: 120px;
    }
    
    .cube div {
        width: 120px;
        height: 120px;
    }
    
    .cube .face1 { transform: translateZ(60px); }
    .cube .face2 { transform: rotateY(180deg) translateZ(60px); }
    .cube .face3 { transform: rotateY(90deg) translateZ(60px); }
    .cube .face4 { transform: rotateY(-90deg) translateZ(60px); }
    .cube .face5 { transform: rotateX(90deg) translateZ(60px); }
    .cube .face6 { transform: rotateX(-90deg) translateZ(60px); }
}

@media (max-width: 768px) {
    .floating-orb {
        display: none;
    }
    
    .js-cube {
        display: none;
    }
    
    nav {
        padding: 12px 15px;
    }

    .logo-image {
        height: 50px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .mobile-menu {
        display: flex;
        z-index: 1001;
    }

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

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

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

    section {
        padding: 60px 20px;
        min-height: auto;
    }

    .section-title {
        font-size: 1.8rem;
        left: 0;
        transform: none;
        margin-bottom: 40px;
        text-align: center;
        display: block;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: 100vh;
    }

    .hero-content {
        padding: 20px 0;
    }

    .hero-team-logo {
        padding: 0 20px;
    }

    .hero-team-logo img {
        max-width: 100%;
        height: auto;
        width: 250px;
    }

    .hero-team-number {
        font-size: 4rem;
        -webkit-text-stroke: 1px var(--accent-cyan);
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 4px;
    }

    .hero-tagline span {
        white-space: normal;
        animation: none;
        border-right: none;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .about-content {
        gap: 40px;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .robot-content {
        gap: 40px;
    }

    .robot-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .robot-icon {
        font-size: 4rem;
    }

    .robot-specs {
        gap: 15px;
    }

    .spec-card {
        padding: 15px 20px;
    }

    .spec-card p {
        font-size: 0.95rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .team-card {
        padding: 20px 15px;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
    }

    .team-name {
        font-size: 1rem;
    }

    .team-role {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .contact-content {
        gap: 40px;
    }

    .contact-form {
        gap: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 15px 30px;
        font-size: 0.9rem;
    }

    .contact-info {
        order: -1;
    }

    .contact-info h3 {
        font-size: 1.2rem;
    }

    .contact-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 30px;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }

    footer {
        padding: 30px 20px;
    }

    footer p {
        font-size: 0.8rem;
    }

    footer .team-number {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-team-logo img {
        width: 180px;
    }

    .hero-team-number {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .team-card {
        padding: 15px 10px;
    }

    .team-avatar {
        width: 60px;
        height: 60px;
    }

    .team-name {
        font-size: 0.85rem;
    }

    .team-role {
        font-size: 0.65rem;
    }

    .contact-item {
        padding: 12px;
    }

    .contact-details .value {
        font-size: 0.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
