/* ============================================
   SUPPORTED BY SECTION
============================================ */
.supported {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}


.supported-explosion {
    position: absolute;
    top: 0%;
    left: 20%;
    /* Use fixed size with scale transform for smoother animation */
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%) scale(0);
    background: radial-gradient(ellipse at center, var(--color-blue) 0%, var(--color-purple) 35%, var(--color-coral) 60%, transparent 80%);
    filter: blur(50px);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    /* GPU acceleration */
    will-change: transform, opacity;
}

.supported-explosion.explode {
    transform: translate(-50%, -50%) scale(2.1);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.supported-content {
    position: relative;
    z-index: 2;
}

.supported .section-icon {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.supported .icon-blocks span {
    background: white;
}

.supported .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.supported h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    margin-bottom: 4rem;
    color: white;
}

.supporters-scroll {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.supporters-track {
    display: inline-flex;
    animation: scroll-left 25s linear infinite;
    will-change: transform;
}

.supporters-set {
    display: inline-flex;
    gap: 5rem;
    padding-right: 5rem;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.supporter-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================
   PEOPLE SECTION
============================================ */
.people {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.people-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.people-bg .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B52 0%, #E91E8C 50%, #8B5CF6 100%);
}

.people-content {
    position: relative;
    z-index: 2;
    padding: 8rem 3rem;
    text-align: center;
    width: 100%;
    color: white;
}

.people .section-icon {
    justify-content: center;
}

.people .icon-blocks span {
    background: white;
}

.people .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.people h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    letter-spacing: -0.03em;
    margin: 2rem 0;
}

.people-description {
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.people-bars {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.people-bars .color-bar {
    position: relative;
    margin-bottom: 10px;
    height: 30px;
}

.people-bars .bar-1 {
    width: 150px;
    background: rgba(255, 255, 255, 0.3);
}

.people-bars .bar-2 {
    width: 200px;
    background: var(--gradient-main);
}

/* ============================================
   MANIFESTO SECTION
============================================ */
.manifesto {
    padding: 8rem 3rem;
    background: white;
}

.manifesto-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.manifesto-left h2 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.manifesto-left .issue-number {
    font-family: var(--font-display);
    font-size: 0.875rem;
    vertical-align: super;
    margin-left: 0.25rem;
}

.manifesto-left h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.manifesto-left p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 400px;
}

.manifesto-image {
    position: relative;
}

.manifesto-image .image-placeholder {
    width: 100%;
    aspect-ratio: 1.2;
    background: linear-gradient(135deg, #FFE5D0 0%, #FFB8D9 50%, #E8D5FF 100%);
}

.manifesto-image .color-bar {
    position: absolute;
    height: 25px;
    z-index: 2;
}

.manifesto-image .bar-teal {
    top: 50%;
    left: -30px;
    width: 60%;
}

.manifesto-image .bar-blue {
    top: 30%;
    right: -20px;
    width: 40%;
}

.manifesto-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--color-text);
    z-index: 3;
    white-space: nowrap;
}

.manifesto-quotes {
    position: absolute;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    z-index: 3;
}

.quote-tl { top: 1rem; left: 1rem; }
.quote-tr { top: 1rem; right: 1rem; text-align: right; }
.quote-bl { bottom: 1rem; left: 1rem; }
.quote-br { bottom: 1rem; right: 1rem; text-align: right; }

/* ============================================
   PEOPLE SECTION
============================================ */
.people-section {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.people-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 102, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.people-section .platform-header-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.people-content {
    position: relative;
    padding: 5rem 5rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Intro */
.people-intro {
    margin-bottom: 5rem;
    text-align: center;
}

.people-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    position: relative;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.people-eyebrow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2px;
    padding: 1px;
    background: var(--gradient-main);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.people-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: white;
}

/* Team Grid - Asymmetric 2x2 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
}

/* Team Card */
.team-card {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.team-card[data-accent="blue"]::before {
    background: radial-gradient(ellipse at 0% 0%, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
}

.team-card[data-accent="purple"]::before {
    background: radial-gradient(ellipse at 0% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
}

.team-card[data-accent="coral"]::before {
    background: radial-gradient(ellipse at 0% 0%, rgba(255, 107, 82, 0.08) 0%, transparent 60%);
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.team-card:hover::before {
    opacity: 1;
}

/* Card Image */
.card-image-wrapper {
    flex-shrink: 0;
    position: relative;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: var(--gradient-main);
    padding: 2px;
}

.card-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.team-card:hover .card-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}


/* Card Content */
.card-content {
    flex: 1;
    min-width: 0;
}

.card-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 0.25rem;
}

.card-credentials {
    font-weight: 400;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
}

.card-role {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.team-card .card-role {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-bio {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.card-focus {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
}

/* Responsive */
@media (max-width: 1100px) {
    .people-content {
        padding: 4rem 3rem 6rem;
    }

    .team-grid {
        gap: 2rem;
    }

    .team-card {
        padding: 2rem;
    }

    .card-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .people-intro {
        margin-bottom: 3rem;
    }
}

@media (max-width: 600px) {
    .people-content {
        padding: 3rem 1.5rem 5rem;
    }

    .team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .card-role {
        border-bottom: none;
        padding-bottom: 0;
    }

    .people-headline {
        font-size: 2rem;
    }

    .people-headline br {
        display: none;
    }
}

/* ============================================
   ADDITIONAL MOBILE RESPONSIVE STYLES
============================================ */
@media (max-width: 1024px) {
    .manifesto {
        text-align: center;
    }

    .manifesto-header {
        grid-template-columns: 1fr;
        gap: 3rem;
        justify-items: center;
    }

    .manifesto-left {
        text-align: center;
    }

    .manifesto-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .manifesto-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .why {
        text-align: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        justify-items: center;
    }

    .why-title {
        position: relative;
        top: 0;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .supported {
        padding: 4rem 1.5rem;
    }

    .supported h2 {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .supporters-set {
        gap: 3rem;
        padding-right: 3rem;
    }

    .supporter-logo {
        font-size: 1.1rem;
    }

    .people {
        min-height: auto;
    }

    .people-content {
        padding: 5rem 1.5rem;
        text-align: center;
    }

    .people h2 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        text-align: center;
    }

    .people-description {
        font-size: 1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .people-bars {
        display: none;
    }

    .manifesto {
        padding: 4rem 1.5rem;
        text-align: center;
    }

    .manifesto-left h3 {
        font-size: 1.75rem;
    }

    .manifesto-image {
        order: -1;
        width: 100%;
    }

    .manifesto-title-overlay {
        font-size: 1.75rem;
    }

    .manifesto-quotes {
        font-size: 0.65rem;
    }

    .why {
        padding: 4rem 1.5rem;
        text-align: center;
    }

    .why-title h2 {
        font-size: 2rem;
    }

    .why-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .supported-explosion.explode {
        /* Smaller scale on tablet/mobile */
        transform: translate(-50%, -50%) scale(1.5);
    }
}

@media (max-width: 480px) {
    .supported-explosion.explode {
        /* Even smaller on small mobile */
        transform: translate(-50%, -50%) scale(1);
    }

    .card-image-wrapper {
        width: 84px;
        height: 84px;
    }

    .card-image {
        width: 80px;
        height: 80px;
    }

    .card-name {
        font-size: 1.25rem;
    }

    .card-bio {
        font-size: 0.9rem;
    }
}

/* ============================================
   WHY GENCTX SECTION
============================================ */
.why-section {
    padding: 0 5rem 6rem;
    background: #0a0a0a;
}

.why-content {
    max-width: 1400px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.why-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-logo-display {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.why-logo-gen {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.02em;
}

.why-logo-ctx {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-phonetic {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    letter-spacing: 0.05em;
}

.why-text {
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.why-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-purple);
    margin-bottom: 1rem;
}

.why-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.why-body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.why-statement {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-statement .statement-marker {
    font-family: var(--font-mono, monospace);
    font-size: 0.9rem;
    flex-shrink: 0;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-statement p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-grid {
        gap: 3rem;
    }

    .why-logo-gen,
    .why-logo-ctx {
        font-size: 3.5rem;
    }

    .why-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 0 1.5rem 4rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .why-visual {
        order: -1;
    }

    .why-logo-gen,
    .why-logo-ctx {
        font-size: 3rem;
    }

    .why-text {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
    }

    .why-statement {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .why-statement p {
        text-align: center;
    }

    .why-title {
        font-size: 1.5rem;
    }

    .why-body {
        font-size: 0.95rem;
    }
}
