body {
    background-color: black;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.logo-container {
    padding: 1.5rem 1rem;
    background-color: black;
    transition: padding 0.3s ease;
    border-bottom: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100px;
    height: auto;
    max-width: 100px;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    filter: brightness(0) invert(1); /* Make logo white */
}

.logo-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

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

.logo-link:hover .logo {
    filter: brightness(0) invert(1) brightness(1.1);
}

/* Navigation Styles */
.main-nav {
    background-color: black;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.main-nav .container {
    position: relative;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.nav-menu li {
    padding: 0;
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 200;
}

.nav-menu a:hover {
    color: #ccc;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 12px;
    z-index: 1002;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    top: 0;
    right: 0;
    transform: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active {
    background-color: rgba(255, 255, 255, 0.2);
}

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

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

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

.hero-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 200px);
    overflow: hidden;
    background-color: black;
    margin-top: calc(140px);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Sticky Header */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: black;
}

/* Section Styles */
.section-title {
    text-align: center;
    color: white;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 200;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: white;
}

/* About Section */
.about-section {
    background-color: black;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.about-intro:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    background-color: #111;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

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

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-tagline {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.service-card {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card.product-focused::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.3));
}

.service-card.expertise-focused::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), #fff);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    background-color: #222;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

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

.service-features li {
    color: #ccc;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
}

.service-features li::before {
    content: '•';
    color: white;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Platforms Section */
.platforms-section {
    background-color: black;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.platforms-content {
    max-width: 1200px;
    margin: 0 auto;
}

.platforms-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.platforms-tagline {
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

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

.platform-card {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    background-color: #222;
}

.platform-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.platform-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.platform-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}



/* Contact Section */
.contact-section {
    background-color: #111;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    background: #222;
}

/* Platform-specific social link styles - keeping original black/white theme */
.social-link.twitter {
    background: #1a1a1a;
}

.social-link.linkedin {
    background: #1a1a1a;
}

.social-link.instagram {
    background: #1a1a1a;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #555;
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Footer */
.footer {
    background-color: black;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container {
        padding: 0.75rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .hero-container {
        margin-top: calc(120px);
        height: calc(100vh - 160px);
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .about-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .services-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .projects-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .contact-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        background-color: black;
        z-index: 1001;
        flex-direction: row;
    }

    .logo-container {
        padding: 0;
        margin: 0;
        justify-content: flex-start;
        width: auto;
        position: relative;
        left: auto;
        top: auto;
        z-index: auto;
        flex-shrink: 0;
    }

    .logo {
        width: 60px;
        height: auto;
        max-width: 60px;
        margin: 0;
    }

    .main-nav {
        padding: 0;
        height: auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        background-color: transparent;
        padding-left: 0;
        padding-right: 0;
        z-index: auto;
        width: auto;
        flex-shrink: 0;
    }

    .main-nav .container {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: auto;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin: 0;
        padding: 8px;
        order: 2;
        margin-left: auto;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        width: 18px;
        height: 2px;
    }

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

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

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.98);
        padding: 2rem 1rem;
        gap: 1.5rem;
        justify-content: flex-start;
        align-items: center;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex !important;
        animation: fadeIn 0.3s ease-out;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        animation: slideIn 0.5s ease-out forwards;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        letter-spacing: 2px;
        font-weight: 200;
        color: white;
    }

    .nav-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
        transition: all 0.3s ease;
        color: white;
    }

    .hero-container {
        margin-top: calc(100px);
        height: calc(100vh - 140px);
    }

    .hero-video {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }

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

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

    .about-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .services-tagline {
        font-size: 1rem;
    }

    .projects-tagline {
        font-size: 1rem;
    }

    .contact-text {
        font-size: 1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

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

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

/* Enable smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive adjustments for Services */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .services-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

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

    .platforms-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }

    .service-card {
        padding: 1.25rem;
    }

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

    .service-card h3 {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }

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

    .services-tagline {
        font-size: 1rem;
    }

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

    .platform-card {
        padding: 1.5rem;
    }

    .platform-card h3 {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }

    .platforms-tagline {
        font-size: 1rem;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
}

/* Founders Section */
.founders-section {
    background-color: #111;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.founders-content {
    max-width: 1200px;
    margin: 0 auto;
}

.founders-image {
    text-align: center;
    margin-bottom: 4rem;
}

.founders-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.founders-img:hover {
    transform: scale(1.02);
}

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

.founder-bio {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.founder-bio:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    background-color: #222;
}

.founder-bio h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.founder-bio p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 300;
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for Founders section */
@media (max-width: 768px) {
    .founders-section {
        padding: 60px 0;
    }

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

    .founder-bio {
        padding: 1.5rem;
    }

    .founder-bio h3 {
        font-size: 1.2rem;
    }

    .founders-img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .founders-section {
        padding: 40px 0;
    }

    .founders-bios {
        gap: 1.5rem;
    }

    .founder-bio {
        padding: 1.25rem;
    }

    .founder-bio h3 {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }

    .founder-bio p {
        font-size: 0.95rem;
    }
}

/* Mobile landscape improvements - hide video, show default background */
@media (max-width: 480px) and (orientation: landscape) {
    .hero-container {
        margin-top: calc(80px);
        height: calc(100vh - 120px);
        background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    }
    
    .hero-video {
        display: none !important;
    }
    
    .header-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.3rem 0.75rem;
        background-color: black;
        z-index: 1001;
        flex-direction: row;
    }
    
    .logo-container {
        padding: 0;
        margin: 0;
        justify-content: flex-start;
        width: auto;
        position: relative;
        left: auto;
        top: auto;
        z-index: auto;
        flex-shrink: 0;
    }
    
    .logo {
        width: 50px;
        max-width: 50px;
    }
    
    .main-nav {
        padding: 0;
        height: auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        background-color: transparent;
        padding-left: 0;
        padding-right: 0;
        z-index: auto;
        width: auto;
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle {
        padding: 6px;
        margin-left: auto;
    }
    
    .mobile-menu-toggle span {
        width: 16px;
        height: 2px;
    }

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

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

    /* Ensure mobile navigation stays visible in landscape */
    .nav-menu {
        top: 70px;
    }
}

/* Additional mobile video improvements */
@media (max-width: 480px) {
    .hero-video {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        min-height: 100%;
        min-width: 100%;
    }
    
    /* Ensure video fills container properly on mobile */
    .hero-container {
        position: relative;
        overflow: hidden;
        background-color: black;
    }
}

/* Force mobile navigation on small screens regardless of orientation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
}

/* Ensure mobile menu toggle is properly styled and visible */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .mobile-menu-toggle span {
        background-color: white !important;
        transition: all 0.3s ease;
    }
    
    /* Ensure the container doesn't interfere with the toggle */
    .main-nav .container {
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: auto;
        padding: 0;
        margin: 0;
    }
}

/* Mobile hero content - hidden by default, shown in landscape */
.hero-content-mobile {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 200;
    margin: 0 0 1rem 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Show mobile hero content in landscape mode */
@media (max-width: 480px) and (orientation: landscape) {
    .hero-content-mobile {
        display: block;
    }
}

/* Progressive Coding Section */
.progressive-coding-section {
    background-color: black;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.progressive-coding-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.progressive-coding-tagline {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.progressive-coding-animation-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.animation-wrapper {
    width: 600px;
    height: 600px;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 70%);
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stage {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8) rotate(5deg);
    transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stage.active {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Stage 1: Radial Architecture */
.architecture-stage {
    text-align: center;
}

.radial-architecture {
    position: relative;
    width: 300px;
    height: 300px;
    margin-bottom: 30px;
}

.center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    animation: centerPulse 3s ease-in-out infinite;
}

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

.orbit-1 { width: 120px; height: 120px; animation: orbitRotate 20s linear infinite; }
.orbit-2 { width: 200px; height: 200px; animation: orbitRotate 30s linear infinite reverse; }
.orbit-3 { width: 280px; height: 280px; animation: orbitRotate 40s linear infinite; }

.orbital-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.orbital-node:nth-child(1) { top: -6px; left: 50%; transform: translateX(-50%); animation: nodeGlow 2s ease-in-out infinite; }
.orbital-node:nth-child(2) { top: 50%; right: -6px; transform: translateY(-50%); animation: nodeGlow 2s ease-in-out infinite 0.5s; }
.orbital-node:nth-child(3) { bottom: -6px; left: 50%; transform: translateX(-50%); animation: nodeGlow 2s ease-in-out infinite 1s; }
.orbital-node:nth-child(4) { top: 50%; left: -6px; transform: translateY(-50%); animation: nodeGlow 2s ease-in-out infinite 1.5s; }

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    height: 1px;
    width: 60px;
    top: 50%;
    left: 50%;
    transform-origin: left center;
    opacity: 0;
    animation: lineAppear 2s ease-out forwards;
}

.connection-line:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); animation-delay: 0.5s; }
.connection-line:nth-child(2) { transform: translate(-50%, -50%) rotate(90deg); animation-delay: 1s; }
.connection-line:nth-child(3) { transform: translate(-50%, -50%) rotate(180deg); animation-delay: 1.5s; }
.connection-line:nth-child(4) { transform: translate(-50%, -50%) rotate(270deg); animation-delay: 2s; }

/* Stage 2: Radial Component Assembly */
.components-stage {
    text-align: center;
}

.component-orbit {
    position: relative;
    width: 400px;
    height: 400px;
    margin-bottom: 30px;
}

.component {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    font-weight: 500;
    opacity: 0;
    transform: scale(0) rotate(180deg);
    animation: componentOrbit 1.2s ease-out forwards;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.component:nth-child(1) { top: 10%; left: 50%; transform: translateX(-50%) scale(0) rotate(180deg); animation-delay: 0.2s; }
.component:nth-child(2) { top: 25%; right: 15%; transform: scale(0) rotate(180deg); animation-delay: 0.4s; }
.component:nth-child(3) { top: 50%; right: 10%; transform: translateY(-50%) scale(0) rotate(180deg); animation-delay: 0.6s; }
.component:nth-child(4) { bottom: 25%; right: 15%; transform: scale(0) rotate(180deg); animation-delay: 0.8s; }
.component:nth-child(5) { bottom: 10%; left: 50%; transform: translateX(-50%) scale(0) rotate(180deg); animation-delay: 1.0s; }
.component:nth-child(6) { bottom: 25%; left: 15%; transform: scale(0) rotate(180deg); animation-delay: 1.2s; }
.component:nth-child(7) { top: 50%; left: 10%; transform: translateY(-50%) scale(0) rotate(180deg); animation-delay: 1.4s; }
.component:nth-child(8) { top: 25%; left: 15%; transform: scale(0) rotate(180deg); animation-delay: 1.6s; }

/* Stage 3: Production Ready Radial */
.production-stage {
    text-align: center;
}

.production-radial {
    position: relative;
    width: 350px;
    height: 350px;
    margin-bottom: 30px;
}

.production-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at center, #00ff88, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
    animation: productionPulse 2s ease-in-out infinite;
}

.status-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid #00ff88;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: ringExpand 2s ease-out forwards;
}

.status-ring:nth-child(2) { width: 120px; height: 120px; animation-delay: 0.3s; }
.status-ring:nth-child(3) { width: 200px; height: 200px; animation-delay: 0.6s; }
.status-ring:nth-child(4) { width: 280px; height: 280px; animation-delay: 0.9s; }

.status-indicator {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: statusPulse 1.5s ease-in-out infinite;
}

.status-indicator:nth-child(5) { top: 15%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.status-indicator:nth-child(6) { top: 50%; right: 15%; transform: translateY(-50%); animation-delay: 0.5s; }
.status-indicator:nth-child(7) { bottom: 15%; left: 50%; transform: translateX(-50%); animation-delay: 1s; }
.status-indicator:nth-child(8) { top: 50%; left: 15%; transform: translateY(-50%); animation-delay: 1.5s; }

.stage-title {
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: titleAppear 1s ease-out forwards;
    animation-delay: 0.5s;
}

.stage-subtitle {
    color: #ccc;
    font-size: 16px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: titleAppear 1s ease-out forwards;
    animation-delay: 0.8s;
}

.progressive-coding-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.progressive-coding-description p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Logo positioning - make it more specific */
.progressive-coding-section .msquared-logo,
.animation-wrapper .msquared-logo {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 80px;
    height: auto;
    opacity: 0.9;
    filter: brightness(0) invert(1); /* Make logo white */
    z-index: 100;
}



.background-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; right: 15%; animation-delay: 2s; }
.particle:nth-child(3) { bottom: 20%; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { top: 60%; left: 10%; animation-delay: 6s; }

/* Progressive Coding Animations */
@keyframes centerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 20px rgba(255, 255, 255, 0.6); }
    50% { transform: translate(-50%, -50%) scale(1.2); box-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
}

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

@keyframes nodeGlow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

@keyframes lineAppear {
    0% { opacity: 0; width: 0; }
    100% { opacity: 1; width: 60px; }
}

@keyframes componentOrbit {
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes productionPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 40px rgba(0, 255, 136, 0.6); }
    50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 60px rgba(0, 255, 136, 0.8); }
}

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

@keyframes statusPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

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

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

/* Responsive adjustments for Progressive Coding section */
@media (max-width: 768px) {
    .progressive-coding-section {
        padding: 60px 0;
    }
    
    .animation-wrapper {
        width: 400px;
        height: 400px;
    }
    
    .radial-architecture {
        width: 200px;
        height: 200px;
    }
    
    .component-orbit {
        width: 300px;
        height: 300px;
    }
    
    .component {
        width: 50px;
        height: 50px;
        font-size: 9px;
    }
    
    .production-radial {
        width: 250px;
        height: 250px;
    }
    
    .production-center {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }
    
    .stage-title {
        font-size: 22px;
    }
    
    .stage-subtitle {
        font-size: 14px;
    }
    
    .progressive-coding-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .progressive-coding-section {
        padding: 40px 0;
    }
    
    .animation-wrapper {
        width: 300px;
        height: 300px;
    }
    
    .radial-architecture {
        width: 150px;
        height: 150px;
    }
    
    .component-orbit {
        width: 250px;
        height: 250px;
    }
    
    .component {
        width: 40px;
        height: 40px;
        font-size: 8px;
    }
    
    .production-radial {
        width: 200px;
        height: 200px;
    }
    
    .production-center {
        width: 50px;
        height: 50px;
        font-size: 9px;
    }
    
    .stage-title {
        font-size: 18px;
    }
    
    .stage-subtitle {
        font-size: 12px;
    }
    
    .animation-wrapper .msquared-logo {
        width: 60px;
        top: 15px;
        right: 15px;
    }
}

/* Technology Stack Section */
.tech-stack-section {
    background-color: black;
    padding: 60px 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.tech-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-subtitle {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 140px;
    justify-content: center;
}

.tech-logo:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.tech-img {
    width: 140px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.tech-logo:hover .tech-img {
    opacity: 1;
    transform: scale(1.1);
}

.tech-name {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    margin-top: 0.5rem;
}

.tech-logo:hover .tech-name {
    color: white;
}

/* Responsive adjustments for Technology Stack */
@media (max-width: 768px) {
    .tech-stack-section {
        padding: 40px 0;
    }
    
    .tech-title {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }
    
    .tech-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .tech-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .tech-logo {
        padding: 1.25rem 0.75rem;
        min-height: 120px;
    }
    
    .tech-img {
        width: 120px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .tech-stack-section {
        padding: 30px 0;
    }
    
    .tech-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .tech-subtitle {
        font-size: 0.95rem;
        padding: 0 0.75rem;
    }
    
    .tech-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .tech-logo {
        padding: 1rem 0.5rem;
        min-height: 100px;
    }
    
    .tech-img {
        width: 100px;
        height: 60px;
    }
    
    .tech-name {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
}

/* Case Studies Section */
.case-studies-section {
    background-color: #111;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.case-studies-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.case-studies-tagline {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.case-study-card {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    max-width: 1000px;
    margin: 0 auto;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-client {
    flex: 1;
}

.client-name {
    color: white;
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.client-industry {
    color: #ccc;
    font-size: 1rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.duration-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.case-study-content {
    color: #ccc;
}

.case-study-content h4 {
    color: white;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.case-study-content h4:first-child {
    margin-top: 0;
}

.case-study-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.case-study-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.case-study-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.case-study-content li::before {
    content: '•';
    color: white;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.case-study-content strong {
    color: white;
    font-weight: 400;
}

/* Responsive adjustments for Case Studies */
@media (max-width: 768px) {
    .case-studies-section {
        padding: 60px 0;
    }
    
    .case-study-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .case-study-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .client-name {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }
    
    .case-studies-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .case-studies-section {
        padding: 40px 0;
    }
    
    .case-study-card {
        padding: 1.5rem;
        margin: 0 0.75rem;
    }
    
    .client-name {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .case-study-content h4 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .case-study-content p {
        font-size: 0.95rem;
    }
    
    .case-studies-tagline {
        font-size: 1rem;
        padding: 0 0.75rem;
    }
}

/* Case Study Animation */
.case-study-animation {
    margin: 2rem 0 3rem 0;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.animation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.legacy-system, .cloud-system {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.legacy-system {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation-delay: 0.2s;
}

.cloud-system {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation-delay: 0.6s;
}

.legacy-icon, .cloud-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.legacy-label, .cloud-label {
    color: white;
    font-size: 1.1rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.legacy-problems, .cloud-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.problem, .benefit {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.problem {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.benefit {
    background-color: rgba(255, 255, 255, 0.08);
    color: #51cf66;
    border: 1px solid rgba(81, 207, 102, 0.3);
}

.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.4s;
}

.arrow-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    position: relative;
    margin: 1rem 0;
}

.arrow-head {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid rgba(255, 255, 255, 0.8);
    margin-top: -6px;
}

.transformation-text {
    color: white;
    font-size: 0.8rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    opacity: 0.7;
}

/* Hover Effects */
.legacy-system:hover, .cloud-system:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.legacy-system:hover .legacy-icon,
.cloud-system:hover .cloud-icon {
    opacity: 1;
    transform: scale(1.1);
}

.problem:hover, .benefit:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive adjustments for Animation */
@media (max-width: 768px) {
    .animation-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .transformation-arrow {
        transform: none;
        margin: 1rem 0;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }
    
    .arrow-line {
        height: 3px;
        width: 60px;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    }
    
    .arrow-head {
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 12px solid rgba(255, 255, 255, 0.8);
        border-right: none;
        margin-left: -6px;
    }
    
    .transformation-text {
        writing-mode: horizontal-tb;
        margin-top: 0;
        margin-left: 0.5rem;
    }
    
    .case-study-animation {
        padding: 1.5rem;
        margin: 1.5rem 0 2.5rem 0;
    }
}

@media (max-width: 480px) {
    .case-study-animation {
        padding: 1rem;
        margin: 1rem 0 2rem 0;
    }
    
    .legacy-system, .cloud-system {
        padding: 1rem;
    }
    
    .legacy-icon, .cloud-icon {
        font-size: 2rem;
    }
    
    .legacy-label, .cloud-label {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .problem, .benefit {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}


