/* E-CoRe Landing V2 — Futuristic, Dynamic, Professional */

body.landing-page {
    overflow-x: hidden;
}

body.landing-page .site-wrapper main {
    padding: 0;
    background: transparent;
}

/* Design tokens */
:root {
    --ecore-cyan: #00d4aa;
    --ecore-cyan-dim: rgba(0, 212, 170, 0.15);
    --ecore-teal: #0d9488;
    --ecore-blue: #0ea5e9;
    --ecore-indigo: #6366f1;
    --ecore-violet: #8b5cf6;
    --ecore-gold: #fbbf24;
    --ecore-gold-dim: rgba(251, 191, 36, 0.2);
    --ecore-dark: #0f172a;
    --ecore-darker: #020617;
    --ecore-surface: #1e293b;
    --ecore-text: #f8fafc;
    --ecore-text-muted: #94a3b8;
    --eu-blue: #003399;
    --eu-gold: #FFD700;
    --energy-green: #10b981;
}

/* Base */
.ecore-landing-v2 {
    overflow-x: hidden;
}

/* Scroll reveal initial state */
[data-scroll] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal delays */
[data-scroll-delay="0.1"].is-visible { transition-delay: 0.1s; }
[data-scroll-delay="0.15"].is-visible { transition-delay: 0.15s; }
[data-scroll-delay="0.2"].is-visible { transition-delay: 0.2s; }
[data-scroll-delay="0.25"].is-visible { transition-delay: 0.25s; }

/* ========== HERO ========== */
.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--ecore-text);
    overflow: hidden;
}

.landing-hero .hero-bg-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 170, 0.25), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(99, 102, 241, 0.2), transparent),
        radial-gradient(ellipse 50% 30% at 0% 80%, rgba(14, 165, 233, 0.15), transparent),
        linear-gradient(180deg, #0f172a 0%, #020617 50%, #0f172a 100%);
    z-index: 0;
}

.landing-hero .hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.landing-hero .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 15s ease-in-out infinite;
}

.landing-hero .hero-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--ecore-cyan);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.landing-hero .hero-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--ecore-indigo);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.landing-hero .hero-orb-3 {
    width: 200px;
    height: 200px;
    background: var(--ecore-gold);
    top: 50%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.landing-hero .hero-shape-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255,255,255,0.06);
    z-index: 1;
    animation: blobMorph 20s ease-in-out infinite;
}

.landing-hero .hero-blob-1 {
    width: 500px;
    height: 500px;
    top: 10%;
    right: -150px;
}

.landing-hero .hero-blob-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: -100px;
    animation-delay: -10s;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

@keyframes blobMorph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.landing-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 1rem 6rem;
}

.landing-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: var(--ecore-gold);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.landing-hero .hero-title {
    margin-bottom: 1.5rem;
}

.landing-hero .hero-title-main {
    display: block;
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    background: linear-gradient(135deg, #fff 0%, var(--ecore-cyan) 50%, var(--ecore-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-hero .hero-title-sub {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--ecore-text-muted);
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
    -webkit-text-fill-color: initial;
}

.landing-hero .hero-lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    color: var(--ecore-text-muted);
}

.landing-hero .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.landing-hero .btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-hero .btn-hero-primary {
    background: linear-gradient(135deg, var(--ecore-cyan), var(--ecore-teal));
    color: var(--ecore-darker);
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.4);
}

.landing-hero .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.5);
    color: var(--ecore-darker);
}

.landing-hero .btn-hero-outline {
    background: transparent;
    color: var(--ecore-text);
    border: 2px solid rgba(255,255,255,0.3);
}

.landing-hero .btn-hero-outline:hover {
    border-color: var(--ecore-cyan);
    color: var(--ecore-cyan);
    background: rgba(0, 212, 170, 0.1);
}

.landing-hero .hero-eu-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--ecore-text-muted);
    z-index: 2;
}

.landing-hero .hero-eu-bar .eu-stars {
    color: var(--eu-gold);
    letter-spacing: 0.2em;
    font-size: 0.7rem;
}

.landing-hero .hero-scroll-hint {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--ecore-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 2;
}

.landing-hero .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--ecore-cyan), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ========== SHOWCASE ========== */
.landing-showcase {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--ecore-darker) 0%, #0f172a 100%);
}

.landing-showcase .showcase-inner {
    position: relative;
}

.landing-showcase .showcase-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255,255,255,0.05);
    top: 50%;
    transform: translateY(-50%);
}

.landing-showcase .showcase-shape-left {
    left: -100px;
}

.landing-showcase .showcase-shape-right {
    right: -100px;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.landing-showcase .showcase-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ecore-cyan);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.landing-showcase .showcase-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--ecore-text);
    letter-spacing: -0.02em;
    line-height: 1.2;
    max-width: 800px;
}

/* ========== CHALLENGE ========== */
.landing-challenge {
    position: relative;
    padding: 8rem 0;
    background: #f8fafc;
}

.landing-challenge .challenge-blob-bg {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 212, 170, 0.12), transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 100%, rgba(99, 102, 241, 0.08), transparent 50%);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    z-index: 0;
}

.landing-challenge .challenge-content-wrap {
    position: relative;
    z-index: 1;
}

.landing-challenge .challenge-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.landing-challenge .challenge-visual-inner {
    background: linear-gradient(135deg, var(--ecore-dark) 0%, var(--ecore-surface) 100%);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.05);
}

.landing-challenge .challenge-icon-ring {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ecore-cyan), var(--ecore-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--ecore-darker);
    box-shadow: 0 0 40px rgba(0, 212, 170, 0.4);
}

.landing-challenge .challenge-stat {
    font-size: 4rem;
    font-weight: 800;
    color: var(--ecore-cyan);
    line-height: 1;
}

.landing-challenge .challenge-stat-label {
    font-size: 1rem;
    color: var(--ecore-text-muted);
    margin-top: 0.5rem;
}

.landing-challenge .challenge-text .section-headline {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--ecore-dark);
    margin-bottom: 1rem;
}

.landing-challenge .challenge-text .section-lead {
    font-size: 1.15rem;
    color: var(--ecore-teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.landing-challenge .challenge-text p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ========== RC (Reversible Computing) ========== */
.landing-rc {
    position: relative;
    padding: 0;
    background: var(--ecore-dark);
    color: var(--ecore-text);
}

.landing-rc .rc-diagonal {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--ecore-dark);
    z-index: 1;
}

.landing-rc .rc-diagonal-top {
    top: -40px;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.landing-rc .rc-diagonal-bottom {
    bottom: -40px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.landing-rc .rc-content {
    position: relative;
    padding: 6rem 0;
}

.landing-rc .rc-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.landing-rc .section-headline-light {
    color: var(--ecore-text);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.landing-rc .rc-text p {
    color: var(--ecore-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.landing-rc .rc-highlight {
    color: var(--ecore-cyan) !important;
    font-weight: 600;
}

.landing-rc .rc-visual-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.landing-rc .rc-arrow-symbol {
    font-size: 4rem;
    color: var(--ecore-cyan);
    margin-bottom: 1rem;
}

.landing-rc .rc-visual-card span {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ecore-text);
}

.landing-rc .rc-zero-waste {
    font-size: 0.9rem !important;
    color: var(--ecore-cyan);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ========== MISSION ========== */
.landing-mission {
    position: relative;
    padding: 8rem 0;
    background: #f1f5f9;
    overflow: hidden;
}

.landing-mission .mission-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 170, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
}

.landing-mission .mission-layout {
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.landing-mission .mission-card-accent {
    background: linear-gradient(135deg, var(--ecore-dark) 0%, var(--ecore-surface) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    color: var(--ecore-text);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.landing-mission .mission-card-inner .section-headline {
    color: var(--ecore-text);
    font-size: 1.5rem;
}

.landing-mission .mission-card-inner .section-lead {
    color: var(--ecore-text-muted);
}

.landing-mission .mission-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ========== WORK PACKAGES ========== */
.landing-wp {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.landing-wp .wp-bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #0d9488 100%);
    z-index: 0;
}

.landing-wp .wp-floating-shapes .wp-shape {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 1;
}

.landing-wp .wp-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
}

.landing-wp .wp-shape-2 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.landing-wp .wp-shape-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    background: rgba(255, 215, 0, 0.1);
}

.landing-wp .wp-content {
    position: relative;
    z-index: 2;
}

.landing-wp .wp-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ecore-text);
    text-align: center;
    margin-bottom: 0.75rem;
}

.landing-wp .wp-lead {
    text-align: center;
    color: var(--ecore-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.landing-wp .wp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.landing-wp .wp-card {
    perspective: 1000px;
}

.landing-wp .wp-card-inner {
    background: #334155;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.landing-wp .wp-card:hover .wp-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 212, 170, 0.4);
}

.landing-wp .wp-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ecore-gold);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.landing-wp .wp-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.landing-wp .wp-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.landing-wp .wp-cta {
    text-align: center;
}

.landing-wp .btn-wp-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--ecore-gold), #f59e0b);
    color: var(--ecore-darker);
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.landing-wp .btn-wp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    color: var(--ecore-darker);
}

/* ========== OPPORTUNITIES ========== */
.landing-opportunities {
    position: relative;
    padding: 8rem 0;
    background: #fff;
}

.landing-opportunities .opp-shape {
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    z-index: 1;
}

.landing-opportunities .opp-shape-top {
    top: -30px;
    clip-path: polygon(0 100%, 0 0, 50% 50%, 100% 0, 100% 100%);
}

.landing-opportunities .opp-shape-bottom {
    bottom: -30px;
    clip-path: polygon(0 0, 50% 50%, 100% 0, 100% 100%, 0 100%);
    transform: rotate(180deg);
}

.landing-opportunities .opp-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ecore-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.landing-opportunities .opp-lead {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.landing-opportunities .opp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.landing-opportunities .opp-card {
    display: block;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.landing-opportunities .opp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ecore-cyan), var(--ecore-indigo));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.landing-opportunities .opp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    border-color: transparent;
}

.landing-opportunities .opp-card:hover::before {
    transform: scaleX(1);
}

.landing-opportunities .opp-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ecore-cyan-dim), rgba(99, 102, 241, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--ecore-teal);
    margin-bottom: 1.5rem;
}

.landing-opportunities .opp-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ecore-dark);
    margin-bottom: 0.5rem;
}

.landing-opportunities .opp-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.landing-opportunities .opp-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ecore-teal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-opportunities .opp-card:hover .opp-card-link {
    color: var(--ecore-cyan);
}

/* ========== CTA BANNER ========== */
.landing-cta-banner {
    position: relative;
    padding: 6rem 0;
    background: var(--ecore-dark);
    color: var(--ecore-text);
    overflow: hidden;
}

.landing-cta-banner .cta-banner-curve {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--ecore-dark);
    clip-path: ellipse(80% 100% at 50% 0%);
}

.landing-cta-banner .cta-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.landing-cta-banner .cta-banner-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.landing-cta-banner .cta-banner-lead {
    color: var(--ecore-text-muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.landing-cta-banner .cta-banner-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.landing-cta-banner .btn-cta-banner {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.landing-cta-banner .btn-cta-primary {
    background: linear-gradient(135deg, var(--ecore-cyan), var(--ecore-teal));
    color: var(--ecore-darker);
}

.landing-cta-banner .btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
    color: var(--ecore-darker);
}

.landing-cta-banner .btn-cta-outline {
    background: transparent;
    color: var(--ecore-text);
    border: 2px solid rgba(255,255,255,0.3);
}

.landing-cta-banner .btn-cta-outline:hover {
    border-color: var(--ecore-cyan);
    color: var(--ecore-cyan);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .landing-challenge .challenge-grid,
    .landing-rc .rc-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .landing-rc .rc-visual {
        order: -1;
    }

    .landing-mission .mission-layout {
        grid-template-columns: 1fr;
    }

    .landing-wp .wp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-opportunities .opp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .landing-hero .hero-scroll-hint {
        display: none;
    }

    .landing-wp .wp-grid {
        grid-template-columns: 1fr;
    }

    .landing-challenge .challenge-visual-inner {
        padding: 2rem;
    }

    .landing-challenge .challenge-stat {
        font-size: 3rem;
    }
}

/* Dark mode compatibility */
html.dark-mode .landing-challenge {
    background: #1e293b;
}

html.dark-mode .landing-challenge .challenge-text .section-headline {
    color: #f8fafc;
}

html.dark-mode .landing-challenge .challenge-text p {
    color: #cbd5e1;
}

html.dark-mode .landing-mission {
    background: #0f172a;
}

html.dark-mode .landing-mission .mission-content p {
    color: #cbd5e1;
}

html.dark-mode .landing-opportunities {
    background: #1e293b;
}

html.dark-mode .landing-opportunities .opp-title {
    color: #f8fafc;
}

html.dark-mode .landing-opportunities .opp-card {
    background: #0f172a;
    border-color: #334155;
}

html.dark-mode .landing-opportunities .opp-card h4 {
    color: #f8fafc;
}

html.dark-mode .landing-opportunities .opp-card p {
    color: #94a3b8;
}
