/* --- CSS Variables & Resets --- */
:root {
    --primary-color: #00665E;
    --accent-color: #FF6B00;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAF9;
    --bg-soft: #F0F5F3;
    --text-dark: #1A2A2A;
    --text-muted: #4A5A5A;
    --text-light: #6A7A7A;
    --shadow-sm: 0 10px 30px rgba(0, 102, 94, 0.05);
    --shadow-md: 0 20px 40px rgba(0, 102, 94, 0.08);
    --shadow-lg: 0 30px 60px rgba(0, 102, 94, 0.12);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; } /* Lenis handles all smooth scrolling */

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* --- Custom Cursor --- */
.custom-cursor {
    position: fixed; top: 0; left: 0; width: 20px; height: 20px;
    background: var(--accent-color); border-radius: 50%; pointer-events: none;
    z-index: 99999; mix-blend-mode: difference; transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}
.custom-cursor.cursor-grow { width: 60px; height: 60px; background: rgba(255, 255, 255, 0.9); mix-blend-mode: normal; }

/* --- Cinematic Preloader --- */
.preloader {
    position: fixed; inset: 0; background: var(--bg-white);
    z-index: 100000; display: flex; justify-content: center; align-items: center;
}
.preloader-content { text-align: center; }
#preloader-logo {
    height: clamp(60px, 12vw, 100px);
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 16px rgba(0,102,94,0.15));
}
.loading-bar { width: 200px; height: 2px; background: #eee; margin: 0 auto; position: relative; overflow: hidden; }
.loading-progress { position: absolute; left: 0; top: 0; height: 100%; width: 0%; background: var(--accent-color); }

/* --- Typography & Utilities --- */
h1, h2, h3, h4 { font-weight: 600; margin-bottom: 0.5rem; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 2.5rem; color: var(--primary-color); position: relative; display: inline-block; }
.underline { height: 4px; width: 60px; background-color: var(--accent-color); margin: 0.5rem auto 0; border-radius: 2px; }
.section-bg { background-color: var(--bg-light); }
/* section { padding: 6rem 0; } */

.accent-text { color: var(--accent-color); }

/* --- Buttons --- */
.btn {
    display: inline-block; padding: 0.8rem 2rem; border-radius: 30px;
    font-weight: 500; cursor: pointer; border: none; text-align: center;
    transition: var(--transition);
}
.btn-primary { background-color: var(--primary-color); color: var(--bg-white); }
.btn-accent { background-color: var(--accent-color); color: var(--bg-white); }
.btn-outline { border: 2px solid var(--primary-color); color: var(--primary-color); background: transparent; }
.magnetic-btn { transition: border-color 0.3s ease; will-change: transform; }

.liquid-btn { position: relative; overflow: hidden; z-index: 1; transition: color 0.4s ease; }
.liquid-btn::before {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0%;
    background: var(--primary-color); z-index: -1; transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.liquid-btn:hover { color: var(--bg-white); }
.liquid-btn:hover::before { height: 100%; }
.btn-primary.liquid-btn::before { background: var(--accent-color); }
.btn-accent.liquid-btn::before { background: var(--primary-color); }
.btn-outline.liquid-btn::before { background: var(--primary-color); }
.btn-outline.liquid-btn:hover { color: var(--bg-white); }

/* --- Navigation --- */
.pill-nav {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 1200px; height: 70px;
    background: var(--glass-bg); backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border); border-radius: 50px; z-index: 1000;
    transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1), top 0.5s ease, background 0.3s ease;
}
.pill-nav.scrolled { width: 70%; top: 10px; background: rgba(255, 255, 255, 0.95); box-shadow: var(--shadow-md); }
.pill-nav .nav-container { display: flex; justify-content: space-between; align-items: center; height: 100%; padding: 0 2rem; }
.logo {
    display: flex;
    align-items: center;
}
.nav-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,102,94,0.1));
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.logo:hover .nav-logo-img { opacity: 0.85; transform: scale(1.03); }
@media (max-width: 768px) { .nav-logo-img { height: 32px; } }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-weight: 500; transition: var(--transition); position: relative; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--accent-color); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary-color); }

/* ══════════════════════════════════════════════════════════
   KINETIC HORIZON HERO — Light Theme
══════════════════════════════════════════════════════════ */

/* Load Playfair Display for italic serif contrast */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,700;1,900&display=swap');

.hero-horizon {
    position: relative;
    min-height: 100vh;
    background: var(--bg-white);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ── Floating background words ── */
.hero-words-bg {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 0;
    overflow: hidden;
}
.hw {
    position: absolute;
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 6vw, 7rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.06);
    white-space: nowrap;
    user-select: none;
    will-change: transform;
}

/* ── Elastic SVG ── */
.elastic-svg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 1;
    overflow: visible;
}

/* ── Sincerity Sweep line ── */
.sweep-line {
    position: absolute;
    top: 50%; left: 0;
    width: 0%; height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

/* ── Asymmetric Grid ── */
.horizon-grid {
    position: relative; z-index: 2;
    width: 90%; max-width: 1280px; margin: 0 auto;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    padding: 110px 0 60px;
    align-items: start;
}

/* ── Top-left: Lifting Lives ── */
.hl-top-left {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    padding-top: 2rem;
}
.hero-eyebrow-light {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.65rem; font-weight: 600; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 1.6rem;
    opacity: 0; transform: translateY(16px);
}
.eyebrow-dot-green {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent-color);
    flex-shrink: 0;
    animation: eyebrowPulse 2.5s ease-in-out infinite;
}
@keyframes eyebrowPulse {
    0%,100%{ box-shadow: 0 0 0 3px rgba(255,107,0,.2); }
    50%    { box-shadow: 0 0 0 7px rgba(255,107,0,.05); }
}

.hl-headline-top {
    display: flex; flex-direction: column;
    line-height: 0.92;
    margin: 0;
}
.hl-word {
    display: block;
    overflow: hidden;
}
.hl-word-1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3.2rem, 6vw, 6.5rem);
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -3px;
    transform: translateY(105%);
}
.hl-word-2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(3.5rem, 6.5vw, 7rem);
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -3px;
    transform: translateY(105%);
}

/* ── Center: Image stack ── */
.hl-center {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    justify-self: center;
    padding: 2rem 1rem;
}
.img-stack {
    position: relative;
    width: 340px;
    height: 480px;
}
/* Large main image — leaf shape: round on two opposite corners */
.img-main {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 85%;
    border-radius: 140px 0 140px 0;
    overflow: hidden;
    box-shadow: 0 32px 72px rgba(0,102,94,0.16), 0 8px 24px rgba(0,0,0,0.07);
    transform: translateY(40px); opacity: 0;
    will-change: transform;
}
.img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s ease;
}
.img-main:hover img { transform: scale(1.04); }

/* Smaller overlay image — offset leaf */
.img-secondary {
    position: absolute; bottom: 0; right: -20px;
    width: 55%; height: 42%;
    border-radius: 0 80px 0 80px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
    border: 4px solid var(--bg-white);
    transform: translateY(30px); opacity: 0;
    transition: transform 0.5s ease;
}
.img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.img-secondary:hover { transform: translateY(-4px) !important; }

/* Stat badge */
.img-badge {
    position: absolute; top: 40%; left: -28px;
    background: var(--primary-color);
    border-radius: 16px 16px 16px 0;
    padding: 0.8rem 1.1rem;
    box-shadow: 0 8px 24px rgba(0,102,94,0.3);
    opacity: 0; transform: translateX(-20px);
    z-index: 3;
}
.badge-num {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem; font-weight: 800;
    color: #fff; line-height: 1;
}
.badge-num sup { font-size: 0.9rem; color: var(--accent-color); }
.badge-lbl {
    font-size: 0.6rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.7);
}

/* ── Bottom-right: Building Hopes + CTA ── */
.hl-bottom-right {
    grid-column: 3;
    grid-row: 2;
    align-self: end;
    text-align: right;
    padding-bottom: 1.5rem;
}
.hl-headline-bottom {
    display: flex; flex-direction: column;
    align-items: flex-end;
    line-height: 0.92;
    margin-bottom: 1.4rem;
}
.hl-word-3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(3.2rem, 6vw, 6.5rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -2px;
    transform: translateY(105%);
}
.hl-word-4 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3.5rem, 6.5vw, 7rem);
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -3px;
    transform: translateY(105%);
}

.hl-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.6rem;
    opacity: 0; transform: translateY(16px);
}
.hl-cta-row {
    display: flex; align-items: center; justify-content: flex-end;
    gap: 1rem; flex-wrap: wrap;
    margin-bottom: 1.8rem;
    opacity: 0; transform: translateY(16px);
}
.hl-btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.7rem 1.6rem; border-radius: 50px;
    background: var(--primary-color); color: #fff;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25,1,0.5,1);
}
.hl-btn-primary svg { width: 15px; height: 15px; transition: transform 0.3s; }
.hl-btn-primary:hover { background: var(--accent-color); box-shadow: 0 8px 28px rgba(255,107,0,.3); }
.hl-btn-primary:hover svg { transform: translateX(4px); }
.hl-btn-ghost {
    display: inline-flex; align-items: center;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.7rem 1.6rem; border-radius: 50px;
    border: 1.5px solid rgba(0,102,94,0.25);
    color: var(--primary-color); text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25,1,0.5,1);
}
.hl-btn-ghost:hover { border-color: var(--primary-color); background: rgba(0,102,94,.05); }

/* Stat pills row */
.hl-stats-row {
    display: flex; align-items: center; justify-content: flex-end; gap: 1rem;
    opacity: 0; transform: translateY(12px);
}
.hl-stat { display: flex; flex-direction: column; align-items: center; }
.hs-n {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem; font-weight: 800;
    color: var(--primary-color); line-height: 1;
}
.hs-l {
    font-size: 0.55rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--text-light);
}
.hl-stat-div { width: 1px; height: 28px; background: rgba(0,102,94,0.15); }

/* ── Scroll hint ── */
.hero-scroll-hint {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 6px;
    opacity: 0;
    animation: scrollHintFade 1s ease 2.8s forwards;
}
@keyframes scrollHintFade { to { opacity: 0.45; } }
.hero-scroll-hint span {
    font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-light);
}
.scroll-arrow-wrap {
    width: 22px; height: 32px;
    border: 1.5px solid rgba(0,102,94,0.25);
    border-radius: 11px; position: relative;
}
.scroll-dot {
    position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--primary-color);
    animation: scrollDotAnim 1.6s ease-in-out infinite;
}
@keyframes scrollDotAnim {
    0%,100%{ top:5px; opacity:1; } 80%{ top:17px; opacity:0; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .horizon-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }
    .hl-top-left    { grid-column: 1; grid-row: 1; }
    .hl-center      { grid-column: 2; grid-row: 1 / 3; }
    .hl-bottom-right{ grid-column: 1; grid-row: 2; text-align: left; }
    .hl-headline-bottom, .hl-cta-row, .hl-stats-row { align-items: flex-start; justify-content: flex-start; }
}
@media (max-width: 767px) {
    .horizon-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 100px 0 60px;
        gap: 2rem;
    }
    .hl-top-left    { grid-column: 1; grid-row: 1; }
    .hl-center      { grid-column: 1; grid-row: 2; justify-self: start; }
    .hl-bottom-right{ grid-column: 1; grid-row: 3; text-align: left; }
    .hl-headline-bottom, .hl-cta-row, .hl-stats-row { align-items: flex-start; justify-content: flex-start; }
    .img-stack { width: 280px; height: 380px; }
    .img-secondary { right: -10px; }
    .img-badge { left: -10px; }
    .elastic-svg { display: none; }
    .hero-words-bg .hw { display: none; }
}
@media (max-width: 480px) {
    .hl-word-1, .hl-word-2, .hl-word-3, .hl-word-4 { letter-spacing: -1px; }
    .img-stack { width: 240px; height: 320px; }
    .hl-cta-row { flex-direction: column; align-items: flex-start; }
}

/* ========== INNOVATIVE ABOUT SECTION ========== */

/* --- 1. Collision Container --- */
.collision-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
    overflow: hidden;
}

#sphereCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

.sphere-labels {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.sphere-label {
    position: absolute;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--text-muted);
    text-transform: uppercase;
    transform-origin: center;
    transition: all 0.5s ease;
    white-space: nowrap;
    opacity: 0.7;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sphere-label[data-sphere="poverty"] {
    top: 30%;
    left: 20%;
    color: var(--accent-color);
}

.sphere-label[data-sphere="illness"] {
    top: 60%;
    left: 45%;
    color: var(--primary-color);
}

.sphere-label[data-sphere="education"] {
    top: 40%;
    right: 20%;
    color: #2A9D8F;
}

/* ---- Center text content ---- */
.collision-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-dark);
}

.manifesto-title {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 102, 94, 0.1);
}

.manifesto-sub {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.empathy-core-reveal {
    position: relative;
    margin-top: 6rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.empathy-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: pulseGlow 3s infinite;
}

.empathy-text {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 12px;
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
    position: relative;
    margin-bottom: 1rem;
}

.empathy-caption {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

/* --- 2. The Founding Story — Parallax Chapters --- */

/* Outer scroll scene — tall so there is scroll room for 4 chapters */
.tw-scroll-scene {
    position: relative;
    height: 300vh;
}

/* Sticky viewport — stays on screen while parent scrolls */
.tw-sticky-frame {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: #060e0d;
}

/* Chapter backgrounds */
.tw-chapter-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0s;
    filter: grayscale(40%) brightness(0.38) contrast(1.1);
    z-index: 0;
    will-change: transform, opacity;
}

.tw-chapter-bg.active {
    opacity: 1;
}

/* Master dim overlay */
.tw-dim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at center, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%),
        linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.5) 100%);
}

/* Chapter text panels */
.tw-chapter-panel {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 3rem 2rem 6rem;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.tw-chapter-panel.active {
    opacity: 1;
    visibility: visible;
}

/* Eyebrow label */
.tw-ch-eyebrow {
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

/* Left-slam heading */
.tw-ch-left {
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-align: center;
    will-change: transform, opacity;
}

/* Right-slam heading */
.tw-ch-right {
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.85);
    letter-spacing: -0.01em;
    text-align: center;
    will-change: transform, opacity;
}

/* ---- Chapter 3 finale styles ---- */
.tw-chapter-finale {
    gap: 1rem;
}

.tw-finale-date {
    font-size: clamp(3rem, 9vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    white-space: nowrap;
    will-change: transform, opacity;
}

.tw-finale-sub {
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.3px;
    max-width: 480px;
    line-height: 1.7;
    text-align: center;
}

/* Ticker in finale */
.tw-ticker-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(255, 107, 0, 0.35);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 0.7rem 0;
    transform: translateY(100%);   /* starts hidden below */
}

.tw-chapter-panel.active .tw-ticker-wrap {
    transform: translateY(0);
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}

.tw-ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: twTickerScroll 28s linear infinite;
    will-change: transform;
}

@keyframes twTickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tw-ticker-wrap:hover .tw-ticker-track {
    animation-play-state: paused;
}

.tw-tick-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    padding: 0 1.8rem;
}

.tw-tick-icon { color: var(--accent-color); font-size: 0.75rem; }
.tw-tick-sep  { color: var(--accent-color); font-size: 0.65rem; opacity: 0.55; flex-shrink: 0; }

/* Progress dots — right edge */
.tw-progress-dots {
    position: absolute;
    right: 2.2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.tw-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.28);
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.35s ease;
    cursor: default;
}

.tw-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.4);
    box-shadow: 0 0 8px rgba(255,107,0,0.5);
}

/* Scroll hint */
.tw-scroll-hint {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: opacity 0.5s ease;
}

.tw-scroll-hint.hidden { opacity: 0; pointer-events: none; }

.tw-scroll-arrow {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255,107,0,0.7), transparent);
    animation: twArrowPulse 1.6s ease-in-out infinite;
}

@keyframes twArrowPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50%       { opacity: 1;   transform: scaleY(1); }
}

/* Mobile */
@media (max-width: 768px) {
    .tw-scroll-scene { height: 350vh; }

    .tw-ch-left,
    .tw-ch-right {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .tw-finale-date {
        font-size: clamp(2.2rem, 10vw, 4rem);
        letter-spacing: 0.06em;
    }

    .tw-progress-dots { right: 1rem; }

    .tw-ch-eyebrow { letter-spacing: 3px; }

    .tw-tick-item {
        font-size: 0.68rem;
        padding: 0 1rem;
    }
}

/* --- Domains --- */
.domains {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-light);
    overflow: hidden;
}

/* Ambient blobs — same family as hero */
.domain-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.domain-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    animation: domainBlobFloat 18s infinite alternate ease-in-out;
}
.db1 {
    width: 45vw; height: 45vw;
    background: rgba(0, 102, 94, 0.13);
    top: -15%; left: -10%;
    animation-delay: 0s;
    opacity: 0.8;
}
.db2 {
    width: 35vw; height: 35vw;
    background: rgba(255, 107, 0, 0.1);
    bottom: -10%; right: -5%;
    animation-delay: -6s;
    opacity: 0.8;
}
.db3 {
    width: 25vw; height: 25vw;
    background: rgba(0, 102, 94, 0.08);
    top: 50%; left: 50%;
    animation-delay: -12s;
    opacity: 0.6;
}
@keyframes domainBlobFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.15); }
}

.domain-section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.75rem;
}

/* Grid — 3 cols, first and last cards span 2 */
.domain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

/* Featured cards span 2 columns */
.domain-card.dc-featured       { grid-column: span 2; }
.domain-card.dc-featured-right { grid-column: span 2; }

/* ---- Card base ---- */
.domain-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 2.5rem 2rem 2rem;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25,1,0.5,1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    box-shadow: 0 4px 24px rgba(0,102,94,0.06), 0 1px 4px rgba(0,0,0,0.04);
    cursor: default;
}

.domain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,102,94,0.14), 0 4px 12px rgba(0,0,0,0.06);
    border-color: rgba(0,102,94,0.18);
}

/* ---- Ambient glow behind icon — like empathy-glow ---- */
.dc-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    top: -60px;
    left: -40px;
}
.dc-glow-primary { background: radial-gradient(circle, rgba(0,102,94,0.18) 0%, transparent 70%); }
.dc-glow-accent  { background: radial-gradient(circle, rgba(255,107,0,0.14) 0%, transparent 70%); }

.domain-card:hover .dc-glow { opacity: 1; }

/* ---- Ghost number ---- */
.dc-num {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0,102,94,0.08);
    letter-spacing: -3px;
    user-select: none;
    pointer-events: none;
    transition: -webkit-text-stroke-color 0.4s ease;
}
.domain-card:hover .dc-num {
    -webkit-text-stroke-color: rgba(0,102,94,0.14);
}

/* ---- Icon ring — same energy as the organic-mask ---- */
.dc-icon-ring {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,102,94,0.12) 0%, rgba(0,102,94,0.04) 100%);
    border: 1.5px solid rgba(0,102,94,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.25,1,0.5,1),
                background 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.dc-icon-ring i {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: color 0.4s ease, transform 0.4s ease;
}

.domain-card:hover .dc-icon-ring {
    transform: scale(1.12) rotate(-6deg);
    background: linear-gradient(135deg, rgba(0,102,94,0.2) 0%, rgba(0,102,94,0.08) 100%);
    border-color: rgba(0,102,94,0.3);
    box-shadow: 0 8px 24px rgba(0,102,94,0.2);
}

.domain-card:hover .dc-icon-ring i {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Accent-glow cards get orange tint on icon */
.domain-card:has(.dc-glow-accent) .dc-icon-ring {
    background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, rgba(255,107,0,0.04) 100%);
    border-color: rgba(255,107,0,0.15);
}
.domain-card:has(.dc-glow-accent) .dc-icon-ring i {
    color: var(--accent-color);
}
.domain-card:has(.dc-glow-accent):hover .dc-icon-ring {
    background: linear-gradient(135deg, rgba(255,107,0,0.2) 0%, rgba(255,107,0,0.08) 100%);
    border-color: rgba(255,107,0,0.3);
    box-shadow: 0 8px 24px rgba(255,107,0,0.18);
}

/* ---- Card body ---- */
.dc-body { position: relative; z-index: 1; }

.dc-body h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    letter-spacing: -0.2px;
}

.dc-body p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

/* Tag pill */
.dc-tag {
    display: inline-block;
    padding: 0.25rem 0.85rem;
    border-radius: 20px;
    background: rgba(0,102,94,0.07);
    border: 1px solid rgba(0,102,94,0.12);
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.domain-card:hover .dc-tag {
    background: rgba(0,102,94,0.12);
    border-color: rgba(0,102,94,0.22);
}

.domain-card:has(.dc-glow-accent) .dc-tag {
    background: rgba(255,107,0,0.07);
    border-color: rgba(255,107,0,0.15);
    color: var(--accent-color);
}
.domain-card:has(.dc-glow-accent):hover .dc-tag {
    background: rgba(255,107,0,0.12);
    border-color: rgba(255,107,0,0.25);
}

/* Responsive */
@media (max-width: 992px) {
    .domain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .domain-card.dc-featured,
    .domain-card.dc-featured-right { grid-column: span 2; }
}

@media (max-width: 600px) {
    .domain-grid { grid-template-columns: 1fr; }
    .domain-card.dc-featured,
    .domain-card.dc-featured-right { grid-column: span 1; }
    .domain-card { padding: 2rem 1.5rem; }
}

/* ============================================================
   ACHIEVEMENTS  — Light Theme, Living Canvas
   ============================================================ */
.achievements {
    position: relative;
    padding: 7rem 0 6rem;
    background: var(--bg-light);
    overflow: hidden;
}

/* Canvas sits behind everything */
.ach-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ---- Stat cards grid ---- */
.ach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.ach-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,102,94,0.1);
    border-radius: 28px;
    padding: 2.5rem 1.5rem 2rem;
    text-align: center;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25,1,0.5,1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    box-shadow: 0 4px 24px rgba(0,102,94,0.06);
}

.ach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,102,94,0.13);
    border-color: rgba(0,102,94,0.2);
}

/* SVG progress ring — sits behind inner content */
.ach-ring-svg {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    opacity: 0.18;
    pointer-events: none;
}

.ach-ring-track {
    fill: none;
    stroke: rgba(0,102,94,0.2);
    stroke-width: 3;
}

.ach-ring-fill {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 327;   /* 2π × 52 */
    stroke-dashoffset: 327;  /* starts empty */
    transform: rotate(-90deg);
    transform-origin: 60px 60px;
    transition: stroke-dashoffset 2.5s cubic-bezier(0.25,1,0.5,1),
                stroke 0.4s ease;
}

.ach-ring-fill[data-color="accent"] {
    stroke: var(--accent-color);
}

.ach-card:hover .ach-ring-svg { opacity: 0.35; }

/* Inner content sits on top of ring */
.ach-card-inner {
    position: relative;
    z-index: 1;
}

/* Counter number — light theme: solid fill, not outlined */
.ach-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1rem;
    margin-bottom: 0.6rem;
}

.ach-counter {
    font-size: clamp(3.5rem, 5.5vw, 5rem);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -2px;
    display: inline-block;
}

.ach-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.ach-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

/* Icon badge bottom of card */
.ach-icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,102,94,0.07);
    border: 1px solid rgba(0,102,94,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.2rem auto 0;
    transition: background 0.4s ease, transform 0.4s ease;
}

.ach-icon-badge i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.ach-card:hover .ach-icon-badge {
    background: var(--primary-color);
    transform: scale(1.15) rotate(-8deg);
}
.ach-card:hover .ach-icon-badge i { color: #fff; }

/* ---- Bottom row: network + trophy ---- */
.ach-bottom-row {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
    margin-top: 1.5rem;
    align-items: stretch;
}

/* Volunteer network panel */
.ach-network-wrap {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,102,94,0.1);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,102,94,0.06);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.ach-network-wrap:hover {
    box-shadow: 0 16px 44px rgba(0,102,94,0.1);
    border-color: rgba(0,102,94,0.18);
}

.ach-network-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.ach-network-label i {
    color: var(--accent-color);
    margin-right: 0.4rem;
}

.ach-network-svg {
    width: 100%;
    flex: 1;
    min-height: 180px;
}

.ach-network-sub {
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.3px;
    text-align: center;
}

/* ---- Glass trophy card with glare ---- */
.ach-trophy-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0,102,94,0.12);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,102,94,0.06);
    transition: transform 0.4s cubic-bezier(0.25,1,0.5,1),
                box-shadow 0.4s ease;
    cursor: default;
}

.ach-trophy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,102,94,0.13);
}

/* Mouse-tracking glare */
.ach-trophy-glare {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(
        circle at 50% 30%,
        rgba(255,255,255,0.45) 0%,
        rgba(255,255,255,0.1) 30%,
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ach-trophy-card:hover .ach-trophy-glare {
    opacity: 1;
}

/* Trophy body */
.ach-trophy-body {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    height: 100%;
}

.ach-trophy-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(255,107,0,0.04));
    border: 1.5px solid rgba(255,107,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.25,1,0.5,1), box-shadow 0.4s ease;
}

.ach-trophy-icon i {
    font-size: 2.2rem;
    color: var(--accent-color);
}

.ach-trophy-card:hover .ach-trophy-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 28px rgba(255,107,0,0.2);
}

.ach-trophy-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.ach-trophy-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.ach-trophy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    background: rgba(255,107,0,0.07);
    border: 1px solid rgba(255,107,0,0.15);
    color: var(--accent-color);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.4rem;
}

/* Responsive */
@media (max-width: 900px) {
    .ach-grid { grid-template-columns: repeat(2, 1fr); }
    .ach-bottom-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
    .ach-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   SUPPORT & VOLUNTEER
   ============================================================ */
.support {
    position: relative;
    padding: 7rem 0;
    background: var(--bg-light);
    overflow: hidden;
}

.support-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.sup-blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.sb1 { width: 40vw; height: 40vw; background: rgba(0,102,94,0.1);   top: -10%; right: -10%; }
.sb2 { width: 30vw; height: 30vw; background: rgba(255,107,0,0.08); bottom: 5%; left: -5%;  }

/* Grid */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Base card */
.support-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem 2.5rem;
    border-radius: 28px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25,1,0.5,1),
                box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 4px 24px rgba(0,102,94,0.06);
}
.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,102,94,0.12);
    border-color: rgba(0,102,94,0.18);
}

.sup-glow {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%; filter: blur(70px);
    opacity: 0; transition: opacity 0.5s ease;
    pointer-events: none; top: -80px;
    left: 50%; transform: translateX(-50%);
}
.sup-glow-primary { background: radial-gradient(circle, rgba(0,102,94,0.2)  0%, transparent 70%); }
.sup-glow-accent  { background: radial-gradient(circle, rgba(255,107,0,0.16) 0%, transparent 70%); }
.support-card:hover .sup-glow { opacity: 1; }

.support-card .icon-wrap {
    width: 74px; height: 74px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,102,94,0.1), rgba(0,102,94,0.04));
    border: 1.5px solid rgba(0,102,94,0.15);
    display: flex; justify-content: center; align-items: center;
    margin: 0 auto 1.5rem; font-size: 2rem; color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.25,1,0.5,1), background 0.4s ease, box-shadow 0.4s ease;
}
.support-card:hover .icon-wrap {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(0,102,94,0.2), rgba(0,102,94,0.08));
    box-shadow: 0 8px 24px rgba(0,102,94,0.2);
}

.support-card h4 {
    font-size: 1.4rem; font-weight: 700;
    color: var(--text-dark); margin-bottom: 0.6rem;
}
.support-card > p {
    color: var(--text-muted); font-size: 0.95rem;
    line-height: 1.65; margin-bottom: 1.4rem;
}

/* ---- Impact ring (donation card) ---- */
.interactive-donation {
    background: linear-gradient(145deg,
        rgba(255,255,255,0.85) 0%,
        rgba(240,245,243,0.9) 100%);
    border-color: rgba(0,102,94,0.1);
}

.impact-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0.8rem 0 0.4rem;
    letter-spacing: -1px;
}

.impact-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    min-height: 60px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Range slider */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    margin-bottom: 2rem;
    cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px; width: 24px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-top: -9px;
    box-shadow: 0 0 16px rgba(255,107,0,0.5);
    transition: transform 0.2s;
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.3); }
input[type=range]::-webkit-slider-runnable-track {
    width: 100%; height: 6px;
    background: rgba(0,102,94,0.1);
    border-radius: 3px;
}

.imp-tiers {
    display: flex; justify-content: space-between;
    font-size: 0.68rem; color: var(--text-light);
    letter-spacing: 0.3px; margin-bottom: 1.6rem;
}

/* ---- Sponsorship tiles ---- */
.spon-card { display: flex; flex-direction: column; align-items: center; }

.cause-tiles {
    display: flex; gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.cause-tile {
    flex: 1;
    padding: 0.8rem 0.5rem;
    border-radius: 16px;
    border: 1.5px solid rgba(0,102,94,0.1);
    background: var(--bg-light);
    cursor: pointer;
    display: flex; flex-direction: column;
    align-items: center; gap: 0.4rem;
    transition: all 0.3s cubic-bezier(0.25,1,0.5,1);
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.5px; color: var(--text-muted);
    text-transform: uppercase;
}

.cause-tile i {
    font-size: 1.3rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.cause-tile:hover,
.cause-tile.active {
    background: rgba(0,102,94,0.06);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,102,94,0.12);
}

.cause-tile.active i,
.cause-tile:hover i { color: var(--primary-color); }

.cause-desc {
    font-size: 0.88rem !important;
    min-height: 58px;
    margin-bottom: 1.6rem !important;
    transition: opacity 0.2s ease;
}

/* ---- Volunteer showcase ---- */
.volunteer-showcase { margin-top: 6rem; }

.vol-header {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    overflow: hidden;
    padding: 1rem 0;
}

.vol-ghost {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0,102,94,0.07);
    letter-spacing: 0.2em;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.vol-title {
    font-size: 2rem; font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative; z-index: 1;
}

.vol-sub {
    font-size: 1rem; color: var(--text-muted);
    position: relative; z-index: 1;
}

/* Roles grid */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.role-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.2rem 1.5rem 1.5rem;
    text-align: center;
    overflow: hidden;
    display: flex; flex-direction: column; align-items: center;
    transition: transform 0.4s cubic-bezier(0.25,1,0.5,1),
                box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,102,94,0.05);
}
.role-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,102,94,0.12);
    border-color: rgba(0,102,94,0.16);
}

.role-glow {
    position: absolute;
    width: 180px; height: 180px; border-radius: 50%;
    filter: blur(50px); opacity: 0;
    transition: opacity 0.5s ease; pointer-events: none;
    top: -50px; left: 50%; transform: translateX(-50%);
}
.rg-primary { background: radial-gradient(circle, rgba(0,102,94,0.2)  0%, transparent 70%); }
.rg-accent  { background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%); }
.role-card:hover .role-glow { opacity: 1; }

/* Ghost step number */
.role-num {
    position: absolute;
    top: 0.8rem; right: 1rem;
    font-size: 2.8rem; font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0,102,94,0.07);
    line-height: 1; letter-spacing: -1px;
    user-select: none; pointer-events: none;
    transition: -webkit-text-stroke-color 0.4s ease;
}
.role-card:hover .role-num { -webkit-text-stroke-color: rgba(0,102,94,0.15); }

.role-card .dc-icon-ring { margin: 0 auto 1.2rem; }

.role-card:nth-child(even) .dc-icon-ring {
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,107,0,0.04));
    border-color: rgba(255,107,0,0.15);
}
.role-card:nth-child(even) .dc-icon-ring i { color: var(--accent-color); }

.role-card h4 {
    font-size: 1rem; font-weight: 700;
    color: var(--text-dark); margin-bottom: 0.4rem;
}
.role-card p {
    font-size: 0.85rem; color: var(--text-muted);
    line-height: 1.6; flex: 1;
}

/* Apply CTA — slides up on hover */
.role-cta {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border: 1px solid rgba(0,102,94,0.2);
    border-radius: 20px;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease,
                background 0.3s ease, color 0.3s ease;
}
.role-card:nth-child(even) .role-cta {
    color: var(--accent-color);
    border-color: rgba(255,107,0,0.2);
}
.role-card:hover .role-cta {
    opacity: 1;
    transform: translateY(0);
}
.role-cta:hover {
    background: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
}
.role-card:nth-child(even) .role-cta:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) { .roles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  {
    .support-grid { grid-template-columns: 1fr; }
    .roles-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px)  { .roles-grid { grid-template-columns: 1fr; } }


/* ============================================================
   MAGNETIC MOSAIC — KEY PROJECTS SECTION
   ============================================================ */

.mosaic-projects {
    background: #F4F7F6;
    padding: 6rem 0 7rem;
    position: relative;
    overflow: visible; /* allow scatter images to escape grid */
}

/* ---- Custom Project Cursor ---- */
.project-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 90px; height: 90px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
    will-change: transform;
}
.project-cursor.visible {
    opacity: 1;
}
.project-cursor-text {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    text-align: center;
    line-height: 1.3;
    user-select: none;
}

/* ---- Mosaic Grid ---- */
.mosaic-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 2rem 0;
}

/* ---- Single Mosaic Item ---- */
.mosaic-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    cursor: none;
}
.mosaic-item.mosaic-item-alt {
    direction: rtl;
}
.mosaic-item.mosaic-item-alt > * {
    direction: ltr;
}

/* ---- Cluster (image group) ---- */
.mosaic-cluster {
    position: relative;
    height: 460px;
    overflow: visible;
}

/* Hero image */
.mosaic-hero {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    z-index: 3;
    box-shadow:
        0 24px 60px rgba(0,102,94,0.14),
        0 8px 24px rgba(0,0,0,0.07);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.25,1,0.5,1),
                box-shadow 0.5s ease;
    will-change: transform;
}
.mosaic-item:hover .mosaic-hero {
    transform: scale(0.97);
    box-shadow:
        0 32px 80px rgba(0,102,94,0.18),
        0 12px 32px rgba(0,0,0,0.1);
}
.mosaic-hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25,1,0.5,1);
}
.mosaic-item:hover .mosaic-hero-img {
    transform: scale(1.04);
}
.mosaic-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0,102,94,0.0) 40%,
        rgba(0,102,94,0.45) 100%
    );
    border-radius: inherit;
}

/* ---- Scatter images ---- */
.scatter-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
    z-index: 0;
    will-change: transform, opacity;
    transition: box-shadow 0.4s ease;
}
.scatter-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Default (resting) positions — all stacked behind hero */
.scatter-1 { width: 130px; height: 160px; top: 10%;  left: -10%; opacity: 0; transform: scale(0.9) translate(60px, 30px) rotate(3deg); }
.scatter-2 { width: 110px; height: 130px; top: 55%;  right: -8%; opacity: 0; transform: scale(0.9) translate(-50px, -30px) rotate(-4deg); }
.scatter-3 { width: 140px; height: 110px; bottom: 5%; left: 20%; opacity: 0; transform: scale(0.9) translate(20px, -20px) rotate(2deg); }

/* Hovered state — GSAP will handle these, but CSS fallback: */
.mosaic-item:hover .scatter-1 { opacity: 1; transform: scale(1) translate(0, 0) rotate(3deg); }
.mosaic-item:hover .scatter-2 { opacity: 1; transform: scale(1) translate(0, 0) rotate(-4deg); }
.mosaic-item:hover .scatter-3 { opacity: 1; transform: scale(1) translate(0, 0) rotate(2deg); }

/* ---- Meta panel ---- */
.mosaic-meta {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mosaic-tag-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.mosaic-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.28rem 0.8rem;
    border-radius: 30px;
    background: rgba(0,102,94,0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0,102,94,0.15);
}
.mosaic-tag.accent-tag {
    background: rgba(255,107,0,0.08);
    color: var(--accent-color);
    border-color: rgba(255,107,0,0.2);
}

/* Pulse pill */
.mosaic-pulse-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
    padding: 0.28rem 0.8rem;
    border-radius: 30px;
    border: 1px solid rgba(0,102,94,0.2);
    background: white;
    box-shadow: 0 2px 8px rgba(0,102,94,0.08);
}
.mosaic-pulse-pill.active-pill {
    color: var(--accent-color);
    border-color: rgba(255,107,0,0.25);
}
.mosaic-pulse-pill.active-pill .pulse-dot {
    background: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.2);
}

.pulse-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,102,94,0.2);
    flex-shrink: 0;
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(0,102,94,0.2); transform: scale(1); }
    50%       { box-shadow: 0 0 0 6px rgba(0,102,94,0.05); transform: scale(1.15); }
}
.active-pill .pulse-dot {
    animation: pulseDotAccent 2s ease-in-out infinite;
}
@keyframes pulseDotAccent {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255,107,0,0.2); transform: scale(1); }
    50%       { box-shadow: 0 0 0 6px rgba(255,107,0,0.05); transform: scale(1.15); }
}

.mosaic-title {
    font-family: 'Syne', 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}
.mosaic-item:hover .mosaic-title { color: var(--primary-color); }

.mosaic-hook {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 420px;
}

.mosaic-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.4rem;
}

.mosaic-num {
    font-family: 'Syne', 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0,102,94,0.12);
    line-height: 1;
    letter-spacing: -2px;
    user-select: none;
    transition: -webkit-text-stroke-color 0.4s ease;
}
.mosaic-item:hover .mosaic-num {
    -webkit-text-stroke-color: rgba(0,102,94,0.3);
}

.mosaic-arrow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1.5px solid rgba(0,102,94,0.2);
    padding: 0.55rem 1.2rem;
    border-radius: 30px;
    transition: all 0.35s cubic-bezier(0.25,1,0.5,1);
    background: white;
}
.mosaic-arrow-btn svg {
    width: 16px; height: 16px;
    transition: transform 0.35s cubic-bezier(0.25,1,0.5,1);
}
.mosaic-item:hover .mosaic-arrow-btn {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0,102,94,0.25);
}
.mosaic-item:hover .mosaic-arrow-btn svg {
    transform: translateX(4px);
}

/* Divider line between items */
.mosaic-item + .mosaic-item {
    padding-top: 3rem;
    border-top: 1px solid rgba(0,102,94,0.06);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .mosaic-item,
    .mosaic-item.mosaic-item-alt {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }
    .mosaic-cluster { height: 320px; }
    .scatter-1 { width: 90px; height: 110px; }
    .scatter-2 { width: 80px; height: 95px; }
    .scatter-3 { width: 100px; height: 80px; }
    .project-cursor { display: none; }
    .mosaic-item { cursor: pointer; }
}

@media (max-width: 480px) {
    .mosaic-cluster { height: 260px; }
    .mosaic-title { font-size: 1.8rem; }
    .mosaic-grid { gap: 4rem; }
}

/* ============================================================
   PILLARS — 3D DEPTH GALLERY FOUNDERS SECTION
   ============================================================ */

/* Syne loaded via <link> in HTML head — no @import needed */

.pillars-depth-section {
    position: relative;
    min-height: 100vh;
    background: var(--bg-white);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

/* Sticky ghost background title */
.pillars-bg-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Syne', 'Poppins', sans-serif;
    font-size: clamp(5rem, 14vw, 13rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 102, 94, 0.08);
    white-space: nowrap;
    letter-spacing: 0.06em;
    user-select: none;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Floating aura blob */
.founder-aura {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,102,94,0.07) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: left 0.6s cubic-bezier(0.25,1,0.5,1), top 0.6s cubic-bezier(0.25,1,0.5,1), opacity 0.4s ease;
    opacity: 0;
}
.pillars-depth-section:hover .founder-aura { opacity: 1; }

.pillars-depth-inner {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ---- Portrait Stage ---- */
.portrait-stage {
    position: relative;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portrait-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}
.portrait-layer.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.portrait-img-wrap {
    position: relative;
    width: 360px;
    height: 480px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,102,94,0.15), 0 10px 30px rgba(0,0,0,0.08);
    will-change: transform;
    transform-style: preserve-3d;
    cursor: none;
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25,1,0.5,1);
    pointer-events: none;
}

/* Subtle green tint overlay on portrait */
.portrait-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,102,94,0.35) 0%,
        rgba(0,102,94,0.05) 40%,
        transparent 70%
    );
    border-radius: inherit;
    pointer-events: none;
}

/* SVG Signature */
.founder-signature {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 50px;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
}

.sig-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
}

.portrait-layer.active .founder-signature {
    opacity: 1;
}

.portrait-layer.active .sig-path {
    animation: drawSig 1s cubic-bezier(0.4,0,0.2,1) 0.5s forwards;
}

@keyframes drawSig {
    to { stroke-dashoffset: 0; }
}

/* Depth Navigation Arrows */
.depth-nav {
    position: absolute;
    bottom: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,102,94,0.2);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.25,1,0.5,1);
    box-shadow: 0 4px 16px rgba(0,102,94,0.12);
}
.depth-nav svg { width: 20px; height: 20px; }
.depth-nav:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(0,102,94,0.28);
}
.depth-prev { left: calc(50% - 120px); transform: translateX(-50%); }
.depth-next { right: calc(50% - 120px); transform: translateX(50%); }
.depth-prev:hover { transform: translateX(-50%) scale(1.08); }
.depth-next:hover { transform: translateX(50%) scale(1.08); }

/* ---- Info Panel ---- */
.founder-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pillars-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Syne', 'Poppins', sans-serif;
}
.counter-current {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -2px;
}
.counter-sep {
    font-size: 1.5rem;
    color: rgba(0,102,94,0.3);
    font-weight: 300;
    margin: 0 4px;
}
.counter-total {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Info cards stacked */
.info-cards-wrap {
    position: relative;
    min-height: 260px;
}

.info-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25,1,0.5,1);
}
.info-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    position: relative;
}

.info-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.6rem;
}

.info-name {
    font-family: 'Syne', 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 0.3rem;
    letter-spacing: -1px;
}

.info-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.info-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 1.4rem;
}

.info-badges {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(0,102,94,0.07);
    color: var(--primary-color);
    border: 1px solid rgba(0,102,94,0.12);
    transition: all 0.3s ease;
}
.info-badge.accent {
    background: rgba(255,107,0,0.07);
    color: var(--accent-color);
    border-color: rgba(255,107,0,0.15);
}
.info-badge:hover { transform: translateY(-2px); }
.info-badge i { font-size: 0.7rem; }

/* Progress dots */
.depth-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.depth-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0,102,94,0.15);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25,1,0.5,1);
    padding: 0;
}
.depth-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--primary-color);
}
.depth-dot:hover:not(.active) {
    background: rgba(0,102,94,0.35);
}

/* Portrait entering/leaving animation classes (set by JS) */
.portrait-layer.leaving {
    animation: portraitLeave 0.55s cubic-bezier(0.7,0,0.3,1) forwards;
}
.portrait-layer.entering {
    animation: portraitEnter 0.55s cubic-bezier(0.25,1,0.5,1) forwards;
}

@keyframes portraitLeave {
    0%   { opacity: 1; transform: scale(1) translateX(0); filter: blur(0px); }
    50%  { opacity: 0.6; transform: scale(1.04) translateX(-30px); filter: blur(3px); }
    100% { opacity: 0; transform: scale(0.92) translateX(-60px); filter: blur(8px); pointer-events: none; }
}
@keyframes portraitEnter {
    0%   { opacity: 0; transform: scale(0.92) translateX(60px); filter: blur(8px); }
    50%  { opacity: 0.7; transform: scale(1.03) translateX(10px); filter: blur(2px); }
    100% { opacity: 1; transform: scale(1) translateX(0); filter: blur(0px); }
}

@keyframes portraitLeavePrev {
    0%   { opacity: 1; transform: scale(1) translateX(0); filter: blur(0px); }
    50%  { opacity: 0.6; transform: scale(1.04) translateX(30px); filter: blur(3px); }
    100% { opacity: 0; transform: scale(0.92) translateX(60px); filter: blur(8px); pointer-events: none; }
}
@keyframes portraitEnterPrev {
    0%   { opacity: 0; transform: scale(0.92) translateX(-60px); filter: blur(8px); }
    50%  { opacity: 0.7; transform: scale(1.03) translateX(-10px); filter: blur(2px); }
    100% { opacity: 1; transform: scale(1) translateX(0); filter: blur(0px); }
}

/* Responsive */
@media (max-width: 900px) {
    .pillars-depth-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .portrait-stage {
        height: 420px;
    }
    .portrait-img-wrap {
        width: 280px;
        height: 360px;
    }
    .pillars-bg-title {
        font-size: clamp(3rem, 18vw, 6rem);
    }
    .info-cards-wrap { min-height: 220px; }
}

@media (max-width: 480px) {
    .portrait-img-wrap {
        width: 240px;
        height: 310px;
    }
    .info-name { font-size: 2rem; }
    .counter-current { font-size: 2.5rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    position: relative;
    background: linear-gradient(160deg, #030f0e 0%, #0a1f1e 50%, #00332e 100%);
    color: rgba(255,255,255,0.8);
    padding: 5rem 0 0;
    overflow: hidden;
}

/* Ghost watermark */
.footer-watermark {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    white-space: nowrap;
    letter-spacing: 0.15em;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

/* Top content grid */
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    position: relative; z-index: 1;
}

.footer-logo {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
}
.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    /* Logo appears white/light on dark footer background */
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    opacity: 0.92;
    transition: opacity 0.3s ease;
}
.footer-logo-img:hover { opacity: 1; }
@media (max-width: 560px) { .footer-logo-img { height: 40px; } }

.footer-tagline {
    font-size: 0.85rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 320px;
    margin-bottom: 1.5rem;
}

.footer-socials-inline {
    display: flex; gap: 0.8rem;
}

.footer-social-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.25,1,0.5,1);
    text-decoration: none;
}
.footer-social-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255,107,0,0.3);
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

.footer-nav {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.6rem;
}
.footer-nav a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}
.footer-nav a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-contact-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.7rem;
    margin-bottom: 1.5rem;
}
.footer-contact-list li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    display: flex; align-items: center; gap: 0.6rem;
}
.footer-contact-list i {
    color: var(--accent-color);
    width: 16px;
}

.footer-cta-btn {
    display: inline-block;
    font-size: 0.8rem;
    padding: 0.6rem 1.6rem;
    border-radius: 30px;
}

/* Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    position: relative; z-index: 1;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    position: relative; z-index: 1;
}

.footer-made {
    font-style: italic;
    color: rgba(255,255,255,0.25);
}

/* Responsive */
@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .founders-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    .founder-card.featured {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .pill-nav { width: 95%; }
    .pill-nav.scrolled { width: 90%; }
    
    .manifesto-title { font-size: 3rem; }
    .manifesto-sub { font-size: 1.2rem; }
    .empathy-text { font-size: 4rem; }
    
    .founder-card.featured {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .founder-card.featured .founder-media {
        height: 300px;
    }
    
    .impact-node { width: 350px; }
    .node-1, .node-3 { margin-left: -200px; }
    .node-2, .node-4 { margin-left: 120px; }
    
    .text-light { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .custom-cursor { display: none; }
    
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        background: var(--bg-white);
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        border-radius: 20px;
    }
    .nav-links.active li { text-align: center; margin-bottom: 1rem; }
    
    
    .collision-container { padding: 2rem; }
    .manifesto-title { font-size: 2.2rem; }
    .manifesto-sub { font-size: 1rem; }
    .empathy-text { font-size: 2.5rem; letter-spacing: 5px; }
    .sphere-label { font-size: 0.9rem; letter-spacing: 3px; }
    
    .founders-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .founder-card.featured .founder-name { font-size: 2rem; }
    .founder-card.featured .founder-title { font-size: 1.2rem; }
    
    .impact-node {
        width: 280px;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        left: 50% !important;
        margin-left: 0 !important;
    }
    .node-1 { top: 10%; }
    .node-2 { top: 30%; }
    .node-3 { top: 50%; }
    .node-4 { top: 70%; }
    
    .text-light { font-size: 1.5rem; }
    
    .parallax-item {
        padding: 1.5rem;
        justify-content: center !important;
        height: 400px;
    }
    .overlay-gradient {
        background: rgba(0, 102, 94, 0.85) !important;
    }
    .glass-card {
        padding: 1.5rem;
    }
    .glass-card h4 {
        font-size: 1.5rem;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-card h3, .stat-card span {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title h2 { font-size: 2rem; }
    
    .founder-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    .founder-stats span {
        width: fit-content;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
}