:root {
    --color-bg: #181818;
    --color-text: #ffffff;
    --color-text-muted: #999999;
    --color-accent: #4a90e2;
    --font-main: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --spacing-unit: 8px;
    --transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(24, 24, 24, 0.95) 0%, rgba(24, 24, 24, 0) 100%);
    opacity: 0;
    animation: fadeIn 0.8s var(--transition-timing) forwards;
}

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

.nav-logo {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    flex: 1;
}

.logo-image {
    height: 30px;
    width: auto;
}

/* Navigation Dropdown Styles */
.nav-item-dropdown {
    position: relative;
}

.chevron-icon {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown.open .chevron-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-text);
    border-radius: 8px;
    padding: 6px;
    min-width: 355px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
}

.nav-item-dropdown.open .dropdown-menu {
    display: flex;
}

.dropdown-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 8px;
    border-radius: 7px;
    text-decoration: none;
    color: var(--color-text);
    transition: background 0.2s ease;
    background: transparent;
}

.dropdown-item.active {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-item.disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: not-allowed;
}

.dropdown-item.disabled .dropdown-item-icon {
    filter: grayscale(100%);
}

.dropdown-item.disabled .dropdown-item-title,
.dropdown-item.disabled .dropdown-item-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.dropdown-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background: #007242;
    flex-shrink: 0;
}

.dropdown-item.active .dropdown-item-icon {
    background: url('assets/mga-hero-art.png') center/cover;
}

.dropdown-item:nth-child(2) .dropdown-item-icon {
    background: #004d2e;
}

.dropdown-item:nth-child(3) .dropdown-item-icon {
    background: #007242;
}

.dropdown-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item-title {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.96px;
}

.dropdown-item-subtitle {
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
    letter-spacing: -0.78px;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-cta {
    margin-left: auto;
}

.nav-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text);
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--transition-timing);
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 1);
}

.nav-item svg {
    width: 16px;
    height: 16px;
}

.nav-item:hover,
.nav-item:focus-visible {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.nav-item.active {
    background: var(--color-text);
    border-color: var(--color-text);
    color: var(--color-bg);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s var(--transition-timing);
}

/* Overlay Menu (Mobile) */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--transition-timing);
}

.overlay-menu.active {
    opacity: 1;
    pointer-events: all;
}

.close-menu {
    position: absolute;
    top: calc(var(--spacing-unit) * 3);
    right: calc(var(--spacing-unit) * 4);
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

.overlay-menu-items {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 3);
    width: 80%;
    max-width: 400px;
}

.overlay-nav-item {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    padding-bottom: calc(var(--spacing-unit) * 2);
    position: relative;
    font-family: var(--font-main);
    transition: color 0.3s var(--transition-timing);
}

.overlay-nav-item:hover,
.overlay-nav-item:focus-visible {
    color: rgba(255, 255, 255, 0.7);
    outline: none;
}

.progress-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--color-text);
    width: 0%;
    transition: width 0.6s var(--transition-timing);
}

.overlay-nav-item.completed .progress-underline {
    width: 100%;
    opacity: 0.5;
}

.overlay-nav-item.active .progress-underline {
    width: 100%;
    opacity: 1;
}

/* Hero Tagline */
.hero-tagline {
    position: absolute;
    top: calc(60px + var(--spacing-unit) * 2);
    width: 100%;
    text-align: center;
    z-index: 100;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.hero-tagline p {
    font-size: 1rem;
    color: white;
    margin: 0;
    opacity: 0.7;
    font-weight: 300;
    max-width: 400px;
}

/* Sections */
.section {
    min-height: 100vh;
    padding: calc(var(--spacing-unit) * 10) calc(var(--spacing-unit) * 4);
    position: relative;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: var(--color-bg);
    overflow: hidden;
    position: relative;
    padding-left: calc(var(--spacing-unit) * 4);
    padding-right: calc(var(--spacing-unit) * 4);
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    transition: opacity 0.3s ease-out;
}

.hero-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: right;
    transition: transform 0.3s ease-out;
}

.hero-logotype {
    font-size: clamp(3rem, 15vw, 12rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    white-space: nowrap;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: calc(var(--spacing-unit) * 1);
    margin-top: calc(var(--spacing-unit) * 4);
    opacity: 0.7;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.scroll-arrow {
    color: rgba(255, 255, 255, 0.8);
}

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

/* Hero Subtitle Section */
.hero-subtitle-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: transparent;
    overflow: hidden;
    position: relative;
    padding-left: calc(var(--spacing-unit) * 4);
    padding-right: calc(var(--spacing-unit) * 4);
}

.hero-subtitle-background {
    display: none; /* Don't show duplicate background */
}

.hero-subtitle-content {
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: right;
    transition: transform 0.3s ease-out;
}

.hero-subtitle {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--color-text);
    max-width: 1200px;
    text-align: right;
    margin-left: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* About Section */
.about-section {
    padding-top: 0;
    position: relative;
    z-index: 2;
    background-color: var(--color-bg);
}

/* About Hero */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    opacity: 0;
    will-change: opacity;
    pointer-events: none;
}

.about-hero-svg,
.about-hero-image {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: exclusion;
    opacity: 0.6;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    transition: transform 0.3s ease-out;
}

.about-highlight {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--spacing-unit) * 10);
    will-change: opacity;
}

.highlight-text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    max-width: 1200px;
    color: rgba(255, 255, 255, 0.6);
}

.highlight-line {
    display: block;
    transition: opacity 0.8s var(--transition-timing);
}

.highlight-line.active {
    color: rgba(255, 255, 255, 0.9);
}

/* Parallax Image */
.parallax-image-container {
    width: 100%;
    height: 70vh;
    position: relative;
    margin: calc(var(--spacing-unit) * 10) 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--transition-timing), transform 1s var(--transition-timing);
}

.parallax-image-container.reveal {
    opacity: 1;
    transform: translateY(0);
}

.parallax-image {
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    transition: transform 0.1s ease-out;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 8);
    margin: calc(var(--spacing-unit) * 15) 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.column-left {
    position: relative;
}

.column-right {
    position: relative;
}

.sticky-column {
    position: sticky;
    top: calc(30vh + var(--spacing-unit) * 10);
    align-self: start;
    height: fit-content;
}

.left-content h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.accent-graphic {
    width: 710px;
    height: 409px;
    margin-top: calc(var(--spacing-unit) * 4);
}

.accent-graphic img {
    width: 100%;
    height: 100%;
    display: block;
}

.right-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

/* Vision Section */
.vision-section {
    padding: calc(var(--spacing-unit) * 15) calc(var(--spacing-unit) * 4);
    background-color: var(--color-bg);
    position: relative;
    z-index: 3;
}

.vision-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 10);
    align-items: start;
}

.vision-left {
    padding-top: 0;
}

.vision-sticky {
    position: sticky;
    top: calc(20vh);
    align-self: start;
}

.vision-right {
    padding-top: calc(var(--spacing-unit) * 30);
    padding-bottom: calc(var(--spacing-unit) * 30);
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 15);
}

.vision-left h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: calc(var(--spacing-unit) * 6);
    color: var(--color-text);
}

.vision-graphic {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1440 / 1024;
    margin-top: calc(var(--spacing-unit) * 4);
}

.vision-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vision-item {
    padding-bottom: calc(var(--spacing-unit) * 4);
}

/* First vision item (intro text) - match left column styling */
.vision-item:first-child p {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.vision-item h4 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: calc(var(--spacing-unit) * 3);
    color: var(--color-text);
}

.vision-item p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Principles Section */
.principles-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(20, 20, 30, 1) 100%);
}

.principle-graphic {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.3) 0%, transparent 70%);
    border: 2px solid rgba(74, 144, 226, 0.5);
    border-radius: 50%;
    margin-top: calc(var(--spacing-unit) * 4);
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 6);
}

.principle-item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s var(--transition-timing), transform 0.8s var(--transition-timing);
}

.principle-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.principle-item h4 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--color-accent);
}

.principle-item p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* Focus Section */
.focus-section {
    background: #181818;
    position: relative;
    z-index: 3;
}

.focus-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 10);
    align-items: start;
}

.focus-content .column-left {
    position: sticky;
    top: calc(20vh);
    align-self: start;
}

.focus-content .column-right {
    padding-top: calc(var(--spacing-unit) * 30);
    padding-bottom: calc(var(--spacing-unit) * 30);
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 6);
}

.focus-content .column-left h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.focus-content .column-right p {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

/* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: calc(var(--spacing-unit) * 4) 0;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: calc(var(--spacing-unit) * 8);
    animation: marqueeScroll 12s linear infinite;
    white-space: nowrap;
}

.marquee-content:nth-child(2) {
    display: none; /* Hide duplicate row for single row display */
}

@media (prefers-reduced-motion: reduce) {
    .marquee-content {
        animation: none;
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee-item {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    font-style: italic;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.6);
}

/* Bottom Section Wrapper */
.bottom-section-wrapper {
    width: 100%;
    position: relative;
    min-height: 800px;
}

/* Bottom Graphic */
.bottom-graphic {
    width: 100%;
    height: 800px;
    background-image: url('assets/bottom.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    position: relative;
}

/* Join the Ascent Section */
.join-ascent-section {
    width: 100%;
    min-height: 600px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--spacing-unit) * 10) calc(var(--spacing-unit) * 4);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.join-ascent-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 8);
    align-items: center;
}

.join-ascent-left {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
}

.join-ascent-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.1;
}

.join-ascent-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.join-ascent-right {
    display: flex;
    justify-content: flex-end;
}

.join-ascent-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 3);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 0.5);
}

.form-group label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.form-group input {
    padding: calc(var(--spacing-unit) * 2);
    background: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Instrument Sans', sans-serif;
    color: #000000;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-group input:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.notify-button {
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
    background: transparent;
    border: 1px solid white;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Instrument Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: calc(var(--spacing-unit) * 1);
}

.notify-button:hover {
    background: white;
    color: #000000;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0;
    margin-top: calc(var(--spacing-unit) * 1);
}

/* Old Bottom Marquee - Removed */

/* Bottom Footer Section */
.bottom-footer-section {
    width: 100%;
    background: #000000;
    padding: calc(var(--spacing-unit) * 8) calc(var(--spacing-unit) * 4);
    display: flex;
    justify-content: center;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-unit) * 3);
}

.footer-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: white;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: calc(var(--spacing-unit) * 8);
    align-items: center;
}

.footer-link {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 300;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0 0.75rem;
}

.footer-legal-link {
    color: var(--color-light-green);
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity 0.3s ease;
}

.footer-legal-link:hover {
    opacity: 0.7;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

/* Old footer styles - removed */

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, rgba(20, 20, 30, 1) 0%, var(--color-bg) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-marquee-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: calc(var(--spacing-unit) * 8);
}

.cta-marquee-content {
    display: flex;
    gap: calc(var(--spacing-unit) * 12);
    animation: marqueeScroll 12s linear infinite;
    white-space: nowrap;
}

.cta-marquee-item {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    white-space: nowrap;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s var(--transition-timing);
    letter-spacing: -0.02em;
}

.cta-marquee-item:hover,
.cta-marquee-item:focus-visible {
    color: var(--color-accent);
    outline: none;
}

.cta-marquee-item:active {
    opacity: 0.7;
}

.footer-microcopy {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeIn 1s var(--transition-timing) 0.5s forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .two-column-layout {
        gap: calc(var(--spacing-unit) * 6);
    }
    
    .sticky-column {
        top: calc(25vh + var(--spacing-unit) * 8);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: flex;
    }

    .hero-tagline {
        top: calc(50px + var(--spacing-unit));
        padding: 0 var(--spacing-unit);
    }

    .hero-tagline p {
        font-size: 0.875rem;
        max-width: 100%;
    }
    
    .section {
        padding: calc(var(--spacing-unit) * 5) calc(var(--spacing-unit) * 3);
        min-height: 80vh;
    }
    
    .hero-section {
        justify-content: center;
        padding-left: calc(var(--spacing-unit) * 2);
        padding-right: calc(var(--spacing-unit) * 2);
        min-height: 80vh;
    }
    
    .hero-content {
        text-align: center;
        width: 100%;
    }
    
    .hero-svg {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    
    .about-section {
        padding-top: calc(var(--spacing-unit) * 6);
    }
    
    .hero-logotype {
        font-size: clamp(4rem, 16vw, 12rem);
        transform: translateX(0);
        white-space: nowrap;
    }
    
    .highlight-text {
        font-size: clamp(3rem, 10vw, 5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .vision-content h3 {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
    }
    
    .focus-content h3 {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 3);
        margin: calc(var(--spacing-unit) * 5) 0;
    }
    
    .sticky-column {
        position: static;
    }
    
    .parallax-image-container {
        height: 50vh;
        margin: calc(var(--spacing-unit) * 4) 0;
    }
    
    .marquee-content {
        animation-duration: 18s;
    }
    
    .cta-marquee-content {
        animation-duration: 15s;
    }
    
    .overlay-menu-items {
        width: 90%;
    }
    
    .overlay-nav-item {
        font-size: 1.75rem;
    }
    
    /* Vision Section - Mobile: Stack top to bottom */
    .vision-content {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 6);
    }
    
    .vision-sticky {
        position: static; /* Remove sticky on mobile */
    }
    
    .vision-right {
        gap: calc(var(--spacing-unit) * 6);
    }
    
    .vision-graphic {
        max-width: 100%;
    }
    
    /* Remove max-width constraints on mobile for full-width content */
    .hero-subtitle,
    .highlight-text,
    .about-content,
    .vision-content,
    .vision-content h3,
    .focus-content,
    .focus-content h3 {
        max-width: 100%;
        width: 100%;
    }
    
    /* Stack focus section vertically on mobile */
    .focus-content {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 6);
    }
    
    .focus-content .column-left {
        position: static;
        padding-top: 0;
    }
    
    .focus-content .column-right {
        padding-top: 0;
    }
    
    .hero-subtitle-content,
    .about-hero-content,
    .vision-left,
    .vision-right {
        max-width: 100%;
    }

    /* Join the Ascent - Mobile */
    .join-ascent-content {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 6);
    }

    .join-ascent-right {
        justify-content: center;
    }

    .join-ascent-form {
        max-width: 100%;
    }

    .join-ascent-title {
        text-align: center;
    }

    .join-ascent-subtitle {
        text-align: center;
    }

    /* Footer - Mobile */
    .footer-links {
        gap: calc(var(--spacing-unit) * 4);
    }

    .footer-link {
        font-size: 1.125rem;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}
