:root {
    --white: #ffffff;
    --black: #000000;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --accent: #2563eb;
    --accent-light: #3b82f6;
}

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

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

/* Enhanced grid background with subtle animation */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.015;
    background-image: 
        linear-gradient(var(--black) 1px, transparent 1px),
        linear-gradient(90deg, var(--black) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.3s ease;
}

/* Enhanced progress indicator */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--black), var(--gray-900));
    z-index: 1001;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Enhanced Header with glassmorphism */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0rem;
    color: var(--black);
    font-family: 'JetBrains Mono', monospace;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a:hover {
    color: var(--black);
    transform: translateY(-2px);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

/* Remove gray highlight on mobile tap */
.hamburger:active,
.hamburger:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Ensure the button doesn't change color when active */
button.hamburger:active,
button.hamburger:focus {
    background-color: transparent !important;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: var(--black); /* Changed from var(--black) to white */
    border-radius: 4px;
    position: absolute;
    transition: transform 0.15s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Active state */
.hamburger.active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger.active .hamburger-inner::before {
    transform: translateY(8px) rotate(90deg);
}

.hamburger.active .hamburger-inner::after {
    opacity: 0;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        border-bottom: 1px solid var(--gray-300);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--gray-300);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active ~ .nav-links {
        display: block;
    }
}

/* Enhanced Hero with floating elements */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(59, 130, 246, 0.01));
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(115, 115, 115, 0.01));
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

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

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--black);
    opacity: 0;
    animation: slideInUp 1s ease 0.2s forwards;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gray-600);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 650px;
    opacity: 0;
    animation: slideInUp 1s ease 0.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    opacity: 0;
    animation: slideInUp 1s ease 0.6s forwards;
}

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

/* Enhanced Buttons */
.btn {
    padding: 1.2rem 2.8rem;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

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

.btn-primary::before {
    background: var(--gray-800);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--gray-300);
}

.btn-secondary::before {
    background: var(--black);
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Enhanced Sections with stagger animations */
section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--gray-300);
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    transition: all 0.3s ease;
}

/* Estilo para centrar el título con ID 'title' */
.section-title1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(45deg, var(--white), var(--gray-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-align: center;
}

.section-title:hover {
    color: var(--gray-400);
    transform: translateX(10px);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.7;
}

/* Enhanced manifesto with typing effect */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-top: -1rem;
}

.manifesto {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 2rem;
    overflow: hidden;
}

.manifesto-points {
    list-style: none;
    margin-top: 2rem;
}

.manifesto-points li {
    padding: 0.8rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    transform: translateX(-10px);
    opacity: 0;
}

.manifesto-points li.animate {
    transform: translateX(0);
    opacity: 1;
}

.manifesto-points li:hover {
    color: var(--black);
    transform: translateX(5px);
    border-bottom-color: var(--gray-500);
}

.manifesto-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: 500;
    transition: all 0.3s ease;
}

.manifesto-points li:hover::before {
    transform: scale(1.2);
}

/* Enhanced Labs Section */
.labs {
    background: linear-gradient(135deg, var(--black), var(--gray-900));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.labs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: drift 60s linear infinite;
}

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

.labs .section-title {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.labs .section-subtitle {
    color: var(--gray-300);
    position: relative;
    z-index: 2;
}

/* Subtitle container with two columns on desktop, one column on mobile */
.subtitle-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-subtitle,
.assessment-text {
    width: 100%;
}

.assessment-text {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    padding-left: 0;
}


/* Terminal container with flex layout */
.terminal {
    background: var(--gray-900);
    padding: 2.5rem;
    margin: 3rem 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    border: 1px solid var(--gray-700);
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Terminal container with flex layout */
.terminal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 2rem; /* Space between columns */
}

/* Terminal lines container */
.terminal-lines,
.assessment-column {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0; /* Prevents flex items from overflowing */
}

/* Assessment column specific styles */
.assessment-column {
    padding: 0 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-line {
    color: var(--gray-300);
    margin: 0.5rem 0;
    opacity: 0;
    animation: typewriter 0.5s ease forwards;
}

/* Terminal lines animation */
.terminal-line {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
    color: var(--gray-300);
    text-shadow: 0 0 5px rgba(68, 68, 68, 0.932);
}

.terminal-line.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.terminal-line:nth-child(1) { transition-delay: 0.1s; }
.terminal-line:nth-child(2) { transition-delay: 0.3s; }
.terminal-line:nth-child(3) { transition-delay: 0.5s; }
.terminal-line:nth-child(4) { transition-delay: 0.7s; }
.terminal-line:nth-child(5) { transition-delay: 0.9s; }

@keyframes typewriter {
    to {
        opacity: 1;
    }
}

.terminal-line:first-child {
    color: var(--white);
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 1.2em;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Gallery styles */
.gallery {
    --s: 80px;
    width: var(--s);
    height: var(--s);
    position: relative;
    margin: 39px;
    margin-left: 2rem; /* Space between terminal lines and gallery */
    margin-top: 62px;
}

.gallery input {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
}

.gallery input + div {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #222;
    pointer-events: none;
    z-index: 1;
}

.gallery input + div::before,
.gallery input + div::after {
    content: '';
    position: absolute;
    background: white;
    transition: 0.3s;
    transform-origin: center;
}

.gallery input + div::before {
    width: 60%;
    height: 3px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

.gallery input + div::after {
    width: 3px;
    height: 60%;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
}

.gallery input:checked + div {
    transform: rotate(135deg);
}

.gallery img {
    position: absolute;
    width: var(--s);
    height: var(--s);
    border-radius: 50%;
    object-fit: cover;
    transform: translate(0, 0) scale(0.5);
    transition: all 0.6s cubic-bezier(0.5, 0, 0.5, 1);
    opacity: 0;
    transform-origin: center;
}

.gallery input:checked ~ img {
    opacity: 1;
    transform: scale(1);
}

.gallery input:checked ~ img:nth-child(3) { 
    transform: rotate(0deg) translate(120px) rotate(0deg) scale(1); 
}
.gallery input:checked ~ img:nth-child(4) { 
    transform: rotate(45deg) translate(120px) rotate(-45deg) scale(1); 
    transition-delay: 0.1s;
}
.gallery input:checked ~ img:nth-child(5) { 
    transform: rotate(90deg) translate(120px) rotate(-90deg) scale(1);
    transition-delay: 0.2s;
}
.gallery input:checked ~ img:nth-child(6) { 
    transform: rotate(135deg) translate(120px) rotate(-135deg) scale(1);
    transition-delay: 0.3s;
}
.gallery input:checked ~ img:nth-child(7) { 
    transform: rotate(180deg) translate(120px) rotate(-180deg) scale(1);
    transition-delay: 0.4s;
}
.gallery input:checked ~ img:nth-child(8) { 
    transform: rotate(225deg) translate(120px) rotate(-225deg) scale(1);
    transition-delay: 0.5s;
}
.gallery input:checked ~ img:nth-child(9) { 
    transform: rotate(270deg) translate(120px) rotate(-270deg) scale(1);
    transition-delay: 0.6s;
}
.gallery input:checked ~ img:nth-child(10) { 
    transform: rotate(315deg) translate(120px) rotate(-315deg) scale(1);
    transition-delay: 0.7s;
}

/* Compact Citiverse Section */
.citiverse {
    background: linear-gradient(135deg, var(--gray-50), rgba(45, 47, 50, 0.02));
    padding: 3.5rem 0;
}

.citiverse .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.citiverse-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1.5rem;
    align-items: start;
}

.citiverse-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;  /* Increased from 1.5rem */
}

.citiverse-description {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-100);
    position: sticky;
    top: 2rem;
}

.citiverse-intro {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    border-left: 3px solid var(--primary);
}

.citiverse-intro p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
}

.citiverse-category {
    margin-bottom: 1rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.2s ease;
}

.category-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.2s ease;
}

.category-header:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--primary);
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.citiverse-category.active .category-content {
    padding: 0 1.5rem 1.5rem;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    margin-top: -0.5rem;
}

.citiverse-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.citiverse-category h3 {
    color: var(--gray-900);
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.citiverse-category h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.citiverse-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.citiverse-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;  
    line-height: 1.6;  
    color: var(--gray-700);
}

.citiverse-features li:before {
    content: '•';
    position: absolute;
    left: 0.3rem;
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1;
    top: 0.2rem;
}

.citiverse-features li:hover {
    color: var(--black);
    transform: translateX(5px);
    border-bottom-color: var(--gray-500);
}

.citiverse-features.compact li {
    padding-left: 1.3rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.citiverse-features.compact li:before {
    content: '→';
    font-size: 0.9rem;
    left: 0;
    top: 0.1rem;
}

.citiverse-description {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-100);
    position: sticky;
    top: 1.5rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.citiverse-impact {
    margin-top: -0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-100);
}

.citiverse-impact .citiverse-features.compact li {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.citiverse-impact .citiverse-features.compact li:hover {
    padding-left: 1.75rem;
}

.citiverse-impact .citiverse-features.compact li:nth-child(1) { animation-delay: 0.2s; }
.citiverse-impact .citiverse-features.compact li:nth-child(2) { animation-delay: 0.4s; }
.citiverse-impact .citiverse-features.compact li:nth-child(3) { animation-delay: 0.6s; }

.citiverse-impact h4 {
    color: var(--gray-800);
    margin: 0 0 0.75rem 0;
    font-size: 1.05rem;
}

.citiverse-tagline {
    font-style: italic;
    color: var(--gray-600);
    margin: 1.25rem 0 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive styles */
@media (max-width: 991px) {
    .citiverse {
        padding: 2.5rem 0;
    }
    
    .citiverse-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .citiverse-description {
        position: static;
        margin-top: 0.5rem;
    }
    
    .citiverse-intro,
    .citiverse-category {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .citiverse-intro p {
        font-size: 0.95rem;
    }
    
    .citiverse-features li {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

.citiverse-description h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--black);
}

.citiverse-tagline {
    font-size: 1rem;
    color: var(--gray-600);
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

/* Identity Section */
.identity {
    padding: 6rem 0;
    background-color: #0a0a0a;
    color: #eeeeee;
    font-family: 'Courier New', monospace;
    border: 1px solid #333;
    border-radius: 8px;
    margin: 0rem 0;
    position: relative;
    overflow: hidden;
}

.identity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 0, 0.05),
        rgba(0, 255, 0, 0.05) 1px,
        transparent 1px,
        transparent 20px
    );
    pointer-events: none;
    z-index: 0;
}

.identity .container {
    position: relative;
    z-index: 1;
}

.identity .section-title {
    color: #fafcfa;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.identity .section-subtitle {
    color: #9d9d9d;
    font-family: 'Courier New', monospace;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 2rem;
    position: relative;
}

.identity-features {
    list-style: none;
    margin-top: 2rem;
}

.identity-features li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #cccccc;
}

.identity-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.identity-description h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.identity-description p {
    font-size: 1.1rem;
    color: #9a9a9a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.identity-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.identity-feature-box {
    background: var(--gray-900);
    border: 1px solid var(--gray-500);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.identity-feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--white);
}

.identity-feature-box h2 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

/* Services Section */
.services {
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Methodology Section */
.methodology {
    padding: 6rem 0;
    background-color: var(--white);
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.methodology-step {
    position: relative;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.methodology-step:hover {
    transform: translateY(-5px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.methodology-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.methodology-step p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Animated Stats */
.stats {
    padding: 6rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    animation: matrixRain 20s linear infinite;
    z-index: 0;
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(2, 2, 2, 0.05), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--black);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 10px rgba(242, 247, 255, 0.5);
}

.stat-item:hover .stat-number {
    color: var(--black);
    transform: scale(1.1);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Enhanced Talent Section */
.talent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-top: 3rem;
}

.talent-benefits {
    background: linear-gradient(135deg, var(--gray-50), rgba(37, 99, 235, 0.02));
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.talent-benefits:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
}

.benefit-list li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.benefit-list li:hover {
    color: var(--black);
    transform: translateX(5px);
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gray-600);
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-box {
    background: var(--black);
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(70, 70, 70, 0.05);
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gray-200);
}

.cta-box h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--gray-200);
}

.cta-box p {
    color: var(--gray-500);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Enhanced Coming Soon Cards */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.project-card {
    padding: 2rem;
    border: 2px dashed var(--gray-300);
    background: var(--gray-50);
    text-align: center;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(21, 21, 21, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.project-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--black);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-card h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--black);
    position: relative;
    z-index: 2;
}

.project-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Enhanced Contact */
.contact {
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    padding: 2.5rem;
    border: 1px solid var(--gray-700);
    transition: all 0.3s ease;
    background: var(--gray-900);
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--white);
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-item p {
    color: var(--gray-300);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, var(--black), var(--gray-900));
    color: var(--gray-400);
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 2rem;
}

/* Enhanced fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 991px) {
    .about-grid,
    .talent-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .citiverse-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero::before,
    .hero::after {
        width: 200px;
        height: 200px;
    }

    .identity-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .identity-features-grid {
        grid-template-columns: 1fr;
    }
    
    .identity-description {
        margin-top: 2rem;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
    }
}

/* Desktop styles */
@media (min-width: 768px) {
    .subtitle-container {
        flex-direction: row;
        gap: 2rem;
    }
    
    .section-subtitle {
        flex: 2;
    }
    
    .assessment-text {
        flex: 1;
        padding-left: 1.5rem;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        padding-top: 0;
    }
}

/* Additional Responsive Design Enhancements */

/* Tablets and smaller laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 6rem 0;
    }

    .hero-title {
        font-size: clamp(2.5rem, 4.5vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 500px;
    }

    .nav-links {
        gap: 2rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 3.5vw, 3rem);
    }

    .section-title1 {
        font-size: clamp(2.5rem, 4.5vw, 4rem);
    }

    .about-grid,
    .talent-grid,
    .citiverse-grid,
    .identity-grid,
    .services-grid,
    .methodology-steps {
        gap: 2.5rem;
    }

    .terminal {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }

    .assessment-column {
        border-left: none;
        border-right: none;
        padding: 0;
    }

    .gallery {
        margin: 2rem auto;
    }
}

/* Small tablets and large mobiles (max-width: 600px) */
@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 0;
        min-height: 80vh;
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
        max-width: 90%;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
    }

    .section-title1 {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

    .section-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .about-grid,
    .talent-grid,
    .citiverse-grid,
    .identity-grid,
    .services-grid,
    .methodology-steps,
    .stats-grid,
    .contact-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .identity-features-grid {
        grid-template-columns: 1fr;
    }

    .terminal {
        padding: 1.5rem;
        font-size: 0.85rem;
    }

    .terminal-line {
        font-size: 0.8rem;
    }

    .gallery {
        --s: 60px;
        margin: 1.5rem auto;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

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

    .stat-label {
        font-size: 0.85rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .footer-content h3 {
        font-size: 1rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Very small devices (max-width: 480px) */
@media (max-width: 480px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    body {
        font-size: 0.9rem;
        width: 100%;
        position: relative;
    }
    
    /* Ensure text in Labs section is properly justified on mobile */
    .labs .section-subtitle,
    .labs .assessment-text {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
    }
    
    /* Ensure all sections don't cause horizontal scroll */
    .container {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
    
    .hero, section, footer {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero {
        padding: 3rem 0;
        min-height: 70vh;
    }

    .hero-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
        margin-top: 64px;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: clamp(2.3rem, 2.8vw, 2rem);
    }

    .section-title1 {
        font-size: clamp(1.8rem, 3.5vw, 3rem);
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .terminal {
        padding: 1rem;
    }

    .terminal-line {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .gallery {
        --s: 42px;  /* Tamaño base */
        margin: 3rem auto;  /* Centrado horizontal con margen vertical */
        position: relative;
        width: var(--s);  /* Asegura que el ancho sea igual al tamaño del botón */
        left: 5%;
        transform: translateX(-50%)!important;  /* Centrado preciso */
    }

    .stat-item {
        padding: 1rem;
    }

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

    .contact-item {
        padding: 1rem;
    }

    .contact-item h3 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .project-card h3 {
        font-size: 0.9rem;
    }

    .project-card p {
        font-size: 0.85rem;
    }

    .identity-feature-box {
        padding: 1rem;
    }

    .identity-feature-box h2 {
        font-size: 1rem;
    }

    .gallery input:checked ~ img {
        opacity: 1;
        transform: scale(1);
    }
    
    .gallery input:checked ~ img:nth-child(3) { 
        transform: rotate(0deg) translate(60px) rotate(0deg) scale(1); 
    }
    .gallery input:checked ~ img:nth-child(4) { 
        transform: rotate(45deg) translate(60px) rotate(-45deg) scale(1); 
        transition-delay: 0.1s;
    }
    .gallery input:checked ~ img:nth-child(5) { 
        transform: rotate(90deg) translate(60px) rotate(-90deg) scale(1);
        transition-delay: 0.2s;
    }
    .gallery input:checked ~ img:nth-child(6) { 
        transform: rotate(135deg) translate(60px) rotate(-135deg) scale(1);
        transition-delay: 0.3s;
    }
    .gallery input:checked ~ img:nth-child(7) { 
        transform: rotate(180deg) translate(60px) rotate(-180deg) scale(1);
        transition-delay: 0.4s;
    }
    .gallery input:checked ~ img:nth-child(8) { 
        transform: rotate(225deg) translate(60px) rotate(-225deg) scale(1);
        transition-delay: 0.5s;
    }
    .gallery input:checked ~ img:nth-child(9) { 
        transform: rotate(270deg) translate(60px) rotate(-270deg) scale(1);
        transition-delay: 0.6s;
    }
    .gallery input:checked ~ img:nth-child(10) { 
        transform: rotate(315deg) translate(60px) rotate(-315deg) scale(1);
        transition-delay: 0.7s;
    }
}

/* Large screens (min-width: 1440px) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: clamp(4rem, 6vw, 6rem);
    }

    .section-title {
        font-size: clamp(2.5rem, 4.5vw, 4rem);
    }

    .section-title1 {
        font-size: clamp(3.5rem, 5.5vw, 5rem);
    }

    .about-grid,
    .talent-grid,
    .citiverse-grid,
    .identity-grid {
        gap: 8rem;
    }

    .services-grid,
    .methodology-steps,
    .stats-grid,
    .projects-grid,
    .contact-grid {
        gap: 3rem;
    }

    .terminal {
        padding: 3rem;
    }

    .gallery {
        --s: 100px;
    }
}

/* Adjust grid background for smaller screens */
/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    /* Prevent scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 100%;
        touch-action: none;
    }
    
    /* Container that will prevent scrolling */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: transparent;
        z-index: 999;
        pointer-events: none;
    }
    
    /* Fix for iOS Safari */
    @supports (-webkit-touch-callout: none) {
        body.menu-open {
            position: relative;
            overflow: hidden;
            -webkit-overflow-scrolling: touch;
            height: 100vh;
        }
    }
    
    /* Add overlay when menu is open */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .nav-links.active::before {
        opacity: 1;
        pointer-events: auto;
    }
    .hamburger {
        display: inline-block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: right 0.3s ease-in-out;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links li a {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    /* Stagger animations for menu items */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }
}

@media (max-width: 768px) {
    .grid-bg {
        background-size: 40px 40px;
    }
}

/* Ensure smooth transitions for orientation changes */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* High-density displays (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .grid-bg {  
        background-size: 30px 30px;
    }

    .btn {
        font-weight: 600;
    }

    .hero-title,
    .section-title,
    .section-title1 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr !important;
    }
    /* Target only the right column in the about section */
    .about .about-grid .fade-in-right {
        margin-top: 1rem !important;
        border-left: none !important;
        border-top: 2px solid #e8e9eb;
        padding-left: 0 !important;
        padding-top: 2rem;
    }
    /* Ensure the Join the Mission button isn't affected */
    .hero-buttons .btn-secondary {
        margin-left: 0;
        padding-left: 1.5rem;
    }
}

/* Scroll reveal stagger */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.1s; }
.stagger-4 { transition-delay: 0.1s; }
.stagger-5 { transition-delay: 0.1s; }