/* ========================================
   The Next 250 — Landing Page Styles
   ======================================== */

/* Ionicons hydration gap fix — prevents extra space after footer */
body > svg,
body > style,
body > .md-hydrated,
body > ion-icon {
    display: none !important;
}

/* Shared Section Layout */
.cross250-section-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px;
}

.cross250-section-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 32px 0;
}

.gold {
    color: var(--gold);
}

/* Section Divider */
.cross250-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    max-width: 600px;
    margin: 0 auto;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Eyebrow Text */
.cross250-hero-eyebrow,
.cross250-sc-eyebrow,
.cross250-benefits-eyebrow {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 16px 0;
    text-align: center;
}

.cross250-hero-eyebrow {
    font-size: 1.4rem;
    padding: 16px 32px;
    letter-spacing: 5px;
}

/* ========================================
   Hero Section
   ======================================== */
.cross250-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
}

.cross250-hero-content {
    max-width: 750px;
    width: 100%;
}

.cross250-hero-logo {
    width: 65%;
    max-width: 650px;
    height: auto;
    margin: 24px auto;
    display: block;
}

.cross250-sc-logo {
    width: 35%;
    max-width: 300px;
    height: auto;
    margin: 16px auto;
    display: block;
}

.cross250-hero-title {
    color: #fff;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px 0;
    letter-spacing: 3px;
}

.cross250-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    margin: 0 0 12px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cross250-hero-tagline {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 44px 0;
}

.cross250-hero-cta {
    margin: 0 auto;
}

/* ========================================
   Live Stats Bar
   ======================================== */
.cross250-stats-bar {
    background: rgba(212, 175, 55, 0.08);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 28px 24px;
}

.cross250-stats-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cross250-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cross250-stat-number {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
}

.cross250-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cross250-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.25);
}

/* ========================================
   Live Movement Map
   ======================================== */
.cross250-map-section {
    padding: 80px 0;
}

.cross250-map-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    text-align: center;
    margin: -16px 0 36px 0;
    line-height: 1.6;
}

.cross250-map-wrapper {
    position: relative;
    background: #0a0a1a;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    aspect-ratio: 2 / 1;
    width: 100%;
    max-width: 100%;
}

.cross250-map-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.cross250-map-overlay-info {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
}

.cross250-map-legend {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cross250-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cross250-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.cross250-legend-dot.seed {
    background: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 4px rgba(212, 175, 55, 0.3);
}

.cross250-legend-dot.village {
    background: rgba(212, 175, 55, 0.7);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

.cross250-legend-dot.city {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.cross250-legend-dot.regional {
    background: var(--gold-light);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.8);
}

/* Leaderboard */
.cross250-leaderboard {
    margin-top: 32px;
}

.cross250-leaderboard-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 0 0 16px 0;
}

.cross250-leaderboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cross250-leaderboard-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.cross250-leaderboard-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.cross250-leaderboard-rank {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.cross250-leaderboard-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.cross250-leaderboard-city {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.cross250-leaderboard-members {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.cross250-leaderboard-badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 4px 10px;
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Social Capital Explainer
   ======================================== */
.cross250-sc {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cross250-sc-intro {
    max-width: 640px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.cross250-sc-intro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 14px 0;
}

.cross250-sc-intro p:last-child {
    margin-bottom: 0;
}

.cross250-sc-intro strong {
    color: #fff;
}

.cross250-sc-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 640px;
    margin: 0 auto;
}

.cross250-sc-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.cross250-sc-badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.cross250-sc-card-header h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.cross250-sc-card-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.cross250-sc-metrics {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.cross250-sc-metric {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cross250-sc-metric ion-icon {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cross250-sc-metric span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

.cross250-sc-card-footer {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* ========================================
   Why Now
   ======================================== */
.cross250-why {
    padding: 80px 0;
}

.cross250-why-intro {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 36px auto;
}

.cross250-why-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    scrollbar-width: none;
}

.cross250-why-grid::-webkit-scrollbar {
    display: none;
}

.cross250-why-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    width: 75vw;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
}


.cross250-why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.cross250-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px auto;
}

.cross250-why-icon ion-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.cross250-why-card h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.cross250-why-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.cross250-why-bottom {
    text-align: center;
    margin-top: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cross250-why-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 10px 0;
}

.cross250-why-bottom strong {
    color: #fff;
}

/* ========================================
   How It Works (3 Steps)
   ======================================== */
.cross250-steps {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cross250-steps-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    text-align: center;
    margin: -16px 0 36px 0;
    line-height: 1.6;
}

.cross250-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.cross250-step-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cross250-step-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.cross250-step-number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cross250-step-card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.cross250-step-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.cross250-step-highlight {
    color: var(--gold) !important;
    font-weight: 600;
    font-size: 0.9rem !important;
    margin-top: 12px !important;
    margin-bottom: 0 !important;
}

.cross250-quest-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cross250-quest-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.cross250-quest-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* ========================================
   Opportunity Feed Demo
   ======================================== */
.cross250-feed {
    padding: 80px 0;
}

.cross250-feed-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    text-align: center;
    max-width: 560px;
    margin: -16px auto 40px auto;
    line-height: 1.7;
}

.cross250-feed-demo {
    max-width: 580px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.cross250-feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cross250-feed-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.cross250-feed-title-bar {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    flex: 1;
}

.cross250-feed-time {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.cross250-feed-items {
    padding: 8px 0;
}

.cross250-feed-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 20px;
    transition: background 0.2s ease;
}

.cross250-feed-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.cross250-feed-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cross250-feed-item-icon ion-icon {
    font-size: 1.1rem;
}

.cross250-feed-item-icon.gig {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.cross250-feed-item-icon.invest {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

.cross250-feed-item-icon.intro {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.cross250-feed-item-icon.comm {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.cross250-feed-item-content {
    flex: 1;
}

.cross250-feed-item-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.cross250-feed-item-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.cross250-feed-item-content strong {
    color: var(--gold);
    font-weight: 600;
}

.cross250-feed-bottom {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 32px 0 0 0;
}

/* ========================================
   Network Effect
   ======================================== */
.cross250-network {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cross250-network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.cross250-network-stat {
    text-align: center;
    padding: 40px;
    background: rgba(212, 175, 55, 0.06);
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cross250-network-multiplier {
    display: block;
    color: var(--gold);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.cross250-network-stat p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.cross250-network-stat strong {
    color: #fff;
}

.cross250-network-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 14px 0;
}

.cross250-network-text p:last-child {
    margin-bottom: 0;
}

.cross250-network-text strong {
    color: #fff;
}

/* ========================================
   What Founders Receive
   ======================================== */
.cross250-benefits {
    padding: 80px 0;
}

.cross250-benefits-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    text-align: center;
    max-width: 600px;
    margin: -16px auto 40px auto;
    line-height: 1.6;
}

.cross250-benefits-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    scrollbar-width: none;
}

.cross250-benefits-grid::-webkit-scrollbar {
    display: none;
}

.cross250-benefit-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    width: 75vw;
    max-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.cross250-benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cross250-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
}

.cross250-benefit-icon ion-icon {
    font-size: 1.6rem;
    color: var(--gold);
}

.cross250-benefit-card h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.cross250-benefit-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   Pick Your Role
   ======================================== */
.cross250-roles {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cross250-roles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cross250-role-card {
    cursor: pointer;
    display: flex;
}

.cross250-role-card input[hidden] {
    display: none;
}

.cross250-role-inner {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    user-select: none;
    width: 100%;
}

.cross250-role-inner:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.cross250-role-card input:checked + .cross250-role-inner {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.cross250-role-icon {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.cross250-role-card input:checked + .cross250-role-inner .cross250-role-icon {
    color: var(--gold);
}

.cross250-role-inner span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.cross250-role-card input:checked + .cross250-role-inner span {
    color: #fff;
    font-weight: 600;
}

.cross250-role-inner small {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.8rem;
}

/* ========================================
   Founders Contribution
   ======================================== */
.cross250-contribution {
    padding: 80px 0;
}

.cross250-contribution-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    text-align: center;
    max-width: 540px;
    margin: -16px auto 40px auto;
    line-height: 1.6;
}

.cross250-contribution-card {
    max-width: 480px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cross250-contribution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
}

.cross250-contribution-header {
    margin-bottom: 28px;
}

.cross250-contribution-label {
    display: block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.cross250-contribution-price {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
}

.cross250-contribution-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.cross250-contribution-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.cross250-contribution-list li ion-icon {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cross250-contribution-cta {
    width: 100%;
}

/* ========================================
   Form Section
   ======================================== */
.cross250-form-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cross250-form-intro {
    text-align: center;
    margin-bottom: 24px;
}

.cross250-form-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Role Tags */
.cross250-role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
    min-height: 0;
}

.cross250-role-tags:empty {
    margin-bottom: 0;
}

.cross250-role-tag {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    padding: 6px 16px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    animation: tagIn 0.3s ease;
}

@keyframes tagIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cross250-form-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 700px;
    margin: 0 auto;
}

#cross250-form-el {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cross250-form-card .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cross250-form-card .form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.cross250-form-card .form-group label small {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.cross250-form-card .form-group select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    font-family: var(--font-poppins);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.cross250-form-card .form-group select option {
    background: #1a2538;
    color: #fff;
}

.cross250-form-card .form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.cross250-form-card .form-group input,
.cross250-form-card .form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    font-family: var(--font-poppins);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cross250-form-card .form-group input::placeholder,
.cross250-form-card .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cross250-form-card .form-group input:focus,
.cross250-form-card .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.cross250-form-card .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.cross250-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cross250-form-card .submit-btn {
    margin-top: 8px;
    width: 100%;
}

.cross250-form-card .form-error {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fca5a5;
    font-size: 0.9rem;
}

.cross250-form-card .form-error ion-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ========================================
   Support the Movement
   ======================================== */
.cross250-support {
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.cross250-support .support-card--donate {
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   Closing Statement
   ======================================== */
.cross250-closing {
    padding: 100px 0;
    text-align: center;
}

.cross250-closing-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 28px 0;
}

.cross250-closing-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 14px auto;
}

.cross250-closing-highlight {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.7;
    max-width: 600px;
    margin: 24px auto 14px auto;
}

.cross250-closing-final {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 28px 0 0 0;
}

.cross250-closing-logo {
    text-align: center;
    margin: 0 auto 16px;
}

.cross250-closing-logo img {
    width: 35%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 16px auto;
}

/* ========================================
   Modal Base + Overrides
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(145deg, rgba(34, 48, 76, 0.95) 0%, rgba(26, 37, 56, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    margin-bottom: 24px;
}

.modal-icon ion-icon {
    font-size: 4rem;
    color: var(--gold);
}

.modal-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.cross250-modal-steps {
    text-align: left;
    margin-bottom: 28px;
}

.cross250-modal-steps-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cross250-modal-steps ol {
    padding-left: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cross250-modal-steps ol li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cross250-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (min-width: 768px) {
    .cross250-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .cross250-roles-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .cross250-hero {
        min-height: 80vh;
        padding: 48px 16px;
    }

    .cross250-hero-title {
        font-size: 2.6rem;
    }

    .cross250-hero-subtitle {
        font-size: 1.05rem;
    }

    .cross250-hero-tagline {
        font-size: 1.15rem;
    }

    .cross250-stats-inner {
        gap: 24px;
    }

    .cross250-stat-number {
        font-size: 1.5rem;
    }

    .cross250-stat-divider {
        display: none;
    }

    .cross250-map-wrapper {
        aspect-ratio: 3 / 2;
        border-radius: 12px;
    }

    .cross250-leaderboard-grid {
        grid-template-columns: 1fr;
    }

    .cross250-sc,
    .cross250-why,
    .cross250-steps,
    .cross250-feed,
    .cross250-network,
    .cross250-benefits,
    .cross250-roles,
    .cross250-contribution,
    .cross250-form-section,
    .cross250-map-section,
    .cross250-closing {
        padding: 60px 0;
    }

    .cross250-section-container {
        padding: 0 20px;
    }

    .cross250-section-title {
        font-size: 1.75rem;
    }

    .cross250-sc-card {
        padding: 28px;
    }

    .cross250-steps-grid {
        grid-template-columns: 1fr;
    }

    .cross250-why-card {
        width: 75vw;
        max-width: 280px;
    }

    .cross250-network-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cross250-network-stat {
        padding: 28px;
    }

    .cross250-network-multiplier {
        font-size: 3.5rem;
    }

    .cross250-roles-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cross250-form-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .cross250-hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .cross250-hero-subtitle {
        font-size: 0.95rem;
    }

    .cross250-sc-eyebrow,
    .cross250-benefits-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .cross250-hero-eyebrow {
        font-size: 1.1rem;
        padding: 10px 20px;
        letter-spacing: 3px;
    }

    .cross250-section-title {
        font-size: 1.5rem;
    }

    .cross250-stats-inner {
        gap: 16px;
    }

    .cross250-stat-number {
        font-size: 1.3rem;
    }

    .cross250-stat-label {
        font-size: 0.65rem;
    }

    .cross250-sc-card {
        padding: 22px;
        border-radius: 16px;
    }

    .cross250-sc-card-header {
        flex-direction: column;
        text-align: center;
    }

    .cross250-step-card {
        padding: 24px;
        border-radius: 16px;
    }

    .cross250-why-card {
        padding: 22px;
    }

    .cross250-benefit-card {
        padding: 24px;
    }

    .cross250-role-inner {
        padding: 16px 18px;
    }

    .cross250-role-inner span {
        font-size: 0.9rem;
    }

    .cross250-contribution-card {
        padding: 28px;
    }

    .cross250-form-card {
        padding: 20px;
        border-radius: 16px;
    }

    .cross250-form-card .form-row {
        grid-template-columns: 1fr;
    }

    .cross250-form-card .form-group input,
    .cross250-form-card .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .cross250-closing-title {
        font-size: 1.75rem;
    }

    .cross250-closing-text,
    .cross250-closing-highlight {
        font-size: 1rem;
    }

    .cross250-closing-final {
        font-size: 1.1rem;
    }

    .cross250-modal-actions {
        gap: 10px;
    }

    .cross250-feed-demo {
        border-radius: 16px;
    }

    .cross250-network-multiplier {
        font-size: 3rem;
    }

    .cross250-map-legend {
        gap: 10px;
    }
}

/* Desktop: restore 2-column grid for Why Now */
@media (min-width: 769px) {
    .cross250-why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        overflow-x: visible;
        gap: 20px;
    }

    .cross250-why-card {
        width: auto;
        max-width: none;
        min-width: 0;
    }

    .cross250-benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
        gap: 20px;
    }

    .cross250-benefit-card {
        width: auto;
        max-width: none;
        min-width: 0;
    }
}
