/* CSS Custom Properties */
:root {
    --primary-bg: #000000;
    --secondary-bg: #0a0a0a;
    --text-primary: #FFFFFF;
    --text-secondary: #D4D4E8;
    --accent-blue: #4c9fff;
    --accent-purple: #a855f7;
    --gradient-start: #000000;
    --gradient-mid-purple: #8b3a9c;
    --gradient-mid-blue: #2e5c8a;
    --gradient-cyan: #4a90a4;
    --gradient-end: #1a1a2e;
    --font-primary: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: #000000;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

body {
    font-family: var(--font-primary);
    background:
        radial-gradient(ellipse 90% 60% at 75% 45%, rgba(168, 85, 247, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 80% 50% at 30% 50%, rgba(96, 165, 250, 0.32) 0%, transparent 65%),
        radial-gradient(ellipse 70% 45% at 50% 55%, rgba(139, 92, 246, 0.28) 0%, transparent 60%),
        radial-gradient(ellipse 100% 40% at 50% 100%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #050308 0%, #0a0615 25%, #0f0a28 50%, #0a0618 75%, #050308 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

@media (max-width: 768px) {
    body {
        background:
            radial-gradient(ellipse 90% 60% at 75% 45%, rgba(168, 85, 247, 0.35) 0%, transparent 70%),
            radial-gradient(ellipse 80% 50% at 30% 50%, rgba(96, 165, 250, 0.32) 0%, transparent 65%),
            radial-gradient(ellipse 70% 45% at 50% 55%, rgba(139, 92, 246, 0.28) 0%, transparent 60%),
            radial-gradient(ellipse 100% 40% at 50% 100%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
            linear-gradient(180deg, #0a0618 0%, #0a0615 25%, #0f0a28 50%, #0a0615 75%, #0a0618 100%);
    }
}

/* Grain Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.5' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

@media (max-width: 768px) {
    body::before {
        opacity: 0.12;
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(139, 58, 156, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(74, 144, 164, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #54FAEC, #a855f7);
    z-index: 1000;
    transition: width 0.1s ease-out;
    opacity: 0.6;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: env(safe-area-inset-top);
    margin-top: calc(-1 * env(safe-area-inset-top));
}

.hero-cta-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 1.5px solid rgba(84, 250, 236, 0.4);
    border-radius: 6px;
    color: #54FAEC;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.hero-cta-btn:hover {
    background: rgba(84, 250, 236, 0.1);
    border-color: rgba(84, 250, 236, 0.7);
    transform: translateY(-1px);
}

.hero-cta-btn:active {
    transform: translateY(0);
}

.scroll-indicator-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(84, 250, 236, 0.5);
    animation: bounce 2.5s infinite ease-in-out;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

@media (max-width: 768px) {
    .scroll-indicator-arrow {
        bottom: 7rem;
    }
}

.scroll-indicator-arrow:hover {
    color: rgba(84, 250, 236, 0.8);
}

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

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: heroFadeIn 2s ease-out;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -5vh;
}

.logo {
    margin-bottom: 2rem;
    text-align: center;
}

.logo-svg {
    height: clamp(80px, 10vw, 140px);
    width: auto;
    max-width: 90vw;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@media (max-width: 768px) {
    .logo-svg {
        height: clamp(100px, 15vw, 140px);
        image-rendering: crisp-edges;
        -webkit-backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.hero-tagline h2 {
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline .mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .hero-tagline .mobile-break {
        display: inline;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 300;
    line-height: 1.5;
    color: var(--text-secondary);
    opacity: 0.85;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
}


/* Main Content */
.main-content {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem 0 2rem;
    animation: contentSlideIn 1s ease-out;
    padding-bottom: 0;
}

/* Typography */
h3 {
    font-size: clamp(1.3rem, 2.8vw, 1.6rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    margin-top: 0.75rem;
    color: #54FAEC;
    letter-spacing: 0.03em;
    opacity: 0.85;
    text-transform: none;
}

h3.section-intro {
    font-size: clamp(1.25rem, 2.8vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
    color: var(--text-primary);
    opacity: 1;
}

@media (max-width: 768px) {
    h3.section-intro {
        word-spacing: -0.02em;
        text-wrap: balance;
    }
}

h3.section-intro:first-child {
    margin-top: 0;
}

h3.intro-highlight {
    color: #54FAEC;
}

.mobile-break-intro {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break-intro {
        display: inline;
    }
}

.section-subheading {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .section-subheading {
        max-width: 100%;
    }
}

.text-block {
    margin-bottom: 4rem;
}

.text-block p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.text-block .lead {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: var(--text-primary);
    font-weight: 400;
}

.text-block strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* Sections */
section {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade out sections when approaching final CTA */
section.fade-out {
    opacity: 0 !important;
    transition: opacity 0.8s ease-out;
}

/* Links */
a {
    color: #F4F4F4;
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid rgba(244, 244, 244, 0.3);
}

a:hover {
    color: #54FAEC;
    border-bottom-color: #54FAEC;
}

/* Bold Key Phrases */
.highlight {
    color: var(--text-primary);
    font-weight: 600;
}

/* Key Points List */
.key-points {
    list-style: none;
    margin-top: 2rem;
}

.key-points li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
}

.key-points li:last-child {
    border-bottom: none;
}

/* Collapsible List Sections */
.applications-list,
.collaboration-list {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.collapse-trigger {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-primary);
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.collapse-trigger .item-title {
    font-weight: 500;
    color: #54FAEC;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    opacity: 0.9;
    transition: color 0.2s ease;
}

.collapse-trigger:hover .item-title {
    opacity: 1;
}

.collapse-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: #54FAEC;
    opacity: 0.7;
    transition: all 0.2s ease;
    margin-left: 1rem;
    line-height: 1;
}

.collapse-trigger:hover .collapse-icon {
    opacity: 1;
}

.collapse-trigger.collapsed .collapse-icon {
    opacity: 0.8;
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin 0.3s ease-out;
    opacity: 0;
    margin-top: 0;
}

.collapsible-content.open {
    max-height: 500px;
    opacity: 1;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.collapsible-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    padding-left: 0;
}

.team-member,
.position {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:last-child,
.position:last-child {
    border-bottom: none;
}

.team-member h4,
.position h4 {
    color: var(--accent-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Application Areas */
.application-area {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.application-area:last-child {
    border-bottom: none;
}

.application-area h4 {
    color: var(--accent-blue);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.closing-statement {
    margin-top: -1rem !important;
    font-size: clamp(1.3rem, 3vw, 1.6rem) !important;
    color: #F4F4F4 !important;
    text-align: center;
    padding: 1.5rem 0 0.5rem 0;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: none;
}

@media (max-width: 768px) {
    .closing-statement {
        white-space: nowrap;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        word-spacing: -0.05em;
        text-wrap: nowrap;
    }
}

.mobile-break-closing {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break-closing {
        display: inline;
    }
}

/* Collaboration Types */
.collaboration-type {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.collaboration-type:last-child {
    border-bottom: none;
}

.collaboration-type h4 {
    color: var(--accent-purple);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}


/* Learn More Section - Editorial Grid */
.learn-more-section {
    margin-bottom: 3rem;
    transition: opacity 0.6s ease;
}

/* Carousel Wrapper */
.article-carousel-wrapper {
    position: relative;
    margin-top: 2rem;
}

.article-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.article-grid::-webkit-scrollbar {
    display: none;
}

.article-grid .article-card {
    flex: 0 0 calc(50% - 1rem);
    scroll-snap-align: start;
}

.article-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(84, 250, 236, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: rgba(84, 250, 236, 0.3);
    box-shadow: 0 8px 24px rgba(84, 250, 236, 0.1);
}

.article-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-bottom: none;
}

.article-card-link:hover {
    border-bottom: none;
}

.article-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-thumbnail img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-card .article-title {
    font-size: clamp(1.1rem, 2.2vw, 1.25rem);
    font-weight: 500;
    color: #54FAEC;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.002em;
    transition: color 0.2s ease;
}

.external-link-icon {
    font-size: 0.85em;
    opacity: 0.5;
    margin-left: 0.25rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.article-card:hover .article-title {
    color: #a855f7;
}

.article-card:hover .external-link-icon {
    opacity: 1;
    transform: translate(2px, -2px);
}

.article-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.6;
    font-style: italic;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.article-author,
.article-date {
    font-size: 0.85rem;
}

/* Carousel Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #54FAEC;
    opacity: 0.6;
}

.carousel-nav:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.9);
}

.carousel-nav-left {
    left: -40px;
    opacity: 0;
    pointer-events: none;
}

.carousel-nav-left.visible {
    opacity: 0.6;
    pointer-events: auto;
}

.carousel-nav-right {
    right: -40px;
}

.carousel-nav-right.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Carousel Pagination Dots */
.carousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
}

.pagination-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(84, 250, 236, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.pagination-dot:hover {
    background: rgba(84, 250, 236, 0.65);
}

.pagination-dot.active {
    background: rgba(84, 250, 236, 0.85);
    width: 9px;
    height: 9px;
}

.pagination-dot.mobile-only {
    display: none;
}

/* Final CTA Section */
.shape-future-section {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    padding-bottom: 3rem;
    margin-top: 2rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .shape-future-section {
        padding-bottom: 1rem;
    }
}

.final-intro {
    margin-bottom: 4rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .final-intro {
        max-width: 100%;
    }
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin: 4rem 0;
}

.collaboration-item {
    text-align: center;
}

.collab-title {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 500;
    color: #54FAEC;
    margin-bottom: 1.5rem;
}

.collab-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .collab-description {
        white-space: normal;
    }
}

.final-separator {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(84, 250, 236, 0.3) 50%, transparent 100%);
    margin: 5rem auto;
}

.final-cta {
    margin-top: 1rem;
}

.final-cta p {
    margin-bottom: 1.5rem;
}

.cta-content {
    text-align: center;
    margin-bottom: 2.5rem;
}

.cta-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.contact-btn.primary {
    background: linear-gradient(135deg, #54FAEC, #a855f7);
    color: #000000;
    font-weight: 500;
}

.contact-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(84, 250, 236, 0.4);
}

.contact-btn.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.contact-btn.secondary:hover {
    border-color: var(--accent-blue);
    background: rgba(76, 159, 255, 0.1);
}

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

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


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


/* Footer */
.footer {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .footer {
        margin-top: 2rem;
    }
}

.footer-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(84, 250, 236, 0.2) 50%, transparent 100%);
    margin: 0 auto 2rem auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 3rem 2rem;
    font-size: 0.9rem;
}

.footer-text {
    color: var(--text-secondary);
    opacity: 0.6;
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-follow {
    color: var(--text-secondary);
    opacity: 0.6;
}

.footer-link {
    color: var(--text-secondary);
    opacity: 0.6;
    transition: all 0.2s ease;
    border: none;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #54FAEC;
    opacity: 1;
    border: none;
}

.footer-separator {
    color: var(--text-secondary);
    opacity: 0.4;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem 2rem 2rem;
        text-align: center;
    }

    .footer-divider {
        width: 80%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 1rem 2rem;
    }

    .hero-cta-btn {
        top: 1rem;
        right: 1rem;
        padding: 0.6rem 1.3rem;
        font-size: 0.9rem;
    }

    .content-container {
        padding: 4rem 0.75rem;
        max-width: 100% !important;
        width: 100%;
    }

    .text-block p {
        word-spacing: -0.02em;
        text-wrap: pretty;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-btn {
        width: 100%;
    }

    .article-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .article-grid .article-card {
        flex: 0 0 85%;
    }

    .carousel-nav {
        display: none;
    }

    .carousel-pagination {
        margin-top: 1.5rem;
        gap: 8px;
    }

    .pagination-dot {
        width: 6px;
        height: 6px;
    }

    .pagination-dot.active {
        width: 8px;
        height: 8px;
    }

    .pagination-dot.mobile-only {
        display: flex;
    }

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

    .final-cta {
        padding: 2rem 0 1rem 0;
    }

    .cta-content {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 3rem 1rem;
    }
    
    section {
        margin-bottom: 4rem;
    }
}