/* === Home Page Styles === */

.home-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 3rem;
}

/* === Hero Section === */
.hero-section {
    position: relative;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-wordmark {
    max-width: 500px;
    width: 90%;
    height: auto;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 2;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(128, 128, 128, 0.3) !important;
    border: 2px solid var(--text-primary);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.hero-cta:hover {
    background: #32D011 !important;
    border-color: #32D011;
    color: var(--bg-dark);
}

/* === Section Box (Shared) === */
.section-box {
    background: linear-gradient(180deg, #0d1117 0%, #080b0f 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section-box.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-box h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    text-align: center;
}

/* === Accessible Section === */
.accessible-section .section-box p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.accessible-section .cta-text {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* === Combined Style: Glow + Drop Cap === */
.section-styled {
    box-shadow: 0 0 30px rgba(50, 208, 17, 0.15), 0 0 60px rgba(50, 208, 17, 0.08);
    border-color: rgba(50, 208, 17, 0.3);
}

.section-styled .drop-cap::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

/* === Chosen Style: Marker Highlights === */
.marker-highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(50, 208, 17, 0.3) 60%);
    padding: 0 0.2rem;
    color: var(--text-primary);
}

/* ============================================
   CREATIVE OPTIONS - EXTREMELY VARIED
   ============================================ */

/* === Option 1: Declassified Document === */
.text-creative-1 {
    background: #1a1a18 !important;
    position: relative;
    font-family: 'Courier New', monospace;
}
.classified-stamp {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #c41e3a;
    font-size: 1rem;
    font-weight: bold;
    border: 3px solid #c41e3a;
    padding: 0.3rem 0.8rem;
    transform: rotate(12deg);
    opacity: 0.8;
}
.typewriter-text {
    font-family: 'Courier New', monospace !important;
    color: #b8b8a8 !important;
    line-height: 2 !important;
}
.redacted-reveal {
    background: var(--secondary);
    color: #000;
    padding: 0.1rem 0.3rem;
    font-weight: bold;
}
.document-id {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 0.1em;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

/* === Option 2: Terminal / Hacker === */
.text-creative-2 {
    background: #0d0d0d !important;
    border: 1px solid #00ff00 !important;
    font-family: 'Monaco', 'Consolas', monospace;
    position: relative;
    overflow: hidden;
}
.text-creative-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 0, 0.03) 0px,
        rgba(0, 255, 0, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
}
.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #333;
}
.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27ca40; }
.terminal-title {
    color: #888;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}
.terminal-text {
    color: #00ff00 !important;
    font-family: 'Monaco', 'Consolas', monospace !important;
    font-size: 0.95rem !important;
    line-height: 2 !important;
}
.terminal-prompt {
    color: #00aa00;
}
.terminal-command {
    color: #fff;
    font-weight: bold;
}
.terminal-cursor {
    animation: blink 1s infinite;
}
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* === Option 3: Neon Cyberpunk === */
.text-creative-3 {
    background: linear-gradient(135deg, #0a0a12 0%, #1a0a20 100%) !important;
    border: 1px solid #ff00ff44 !important;
    position: relative;
    overflow: hidden;
}
.text-creative-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 49%, rgba(255, 0, 255, 0.03) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(0, 255, 255, 0.03) 50%, transparent 51%);
    background-size: 30px 30px;
    pointer-events: none;
}
.neon-title {
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 40px #ff00ff;
}
.cyberpunk-text {
    color: #e0e0e0 !important;
    font-size: 1.1rem !important;
}
.neon-word {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.neon-word.pink {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}
.neon-word.blue {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

/* === Option 4: Glitch Effect === */
.text-creative-4 {
    position: relative;
}
.glitch-text {
    color: #d0d0d0 !important;
}
.glitch-word {
    position: relative;
    display: inline;
    color: #fff;
    font-weight: 600;
}
.glitch-word::before,
.glitch-word::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
}
.glitch-word:hover::before {
    animation: glitch-1 0.3s infinite;
    color: #ff00ff;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}
.glitch-word:hover::after {
    animation: glitch-2 0.3s infinite;
    color: #00ffff;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}
@keyframes glitch-1 {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(3px, -3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(3px, 3px); }
    100% { transform: translate(0); }
}
@keyframes glitch-2 {
    0% { transform: translate(0); }
    20% { transform: translate(3px, -3px); }
    40% { transform: translate(-3px, 3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(-3px, -3px); }
    100% { transform: translate(0); }
}

/* === Option 5: Matrix / Binary === */
.text-creative-5 {
    background: #000a00 !important;
    border: 1px solid #003300 !important;
    position: relative;
    overflow: hidden;
}
.binary-rain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-family: monospace;
    font-size: 0.7rem;
    color: rgba(50, 208, 17, 0.15);
    letter-spacing: 0.2em;
    line-height: 1;
    word-break: break-all;
    pointer-events: none;
    padding: 0.5rem;
}
.matrix-text {
    position: relative;
    z-index: 1;
    color: #88ff88 !important;
    text-shadow: 0 0 5px rgba(50, 208, 17, 0.5);
}
.matrix-highlight {
    color: #ffffff;
    font-weight: bold;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
}

/* === Manifesto / Revolutionary Style === */
.manifesto-style {
    text-align: center;
    position: relative;
}
.manifesto-title {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 2rem !important;
}

.manifesto-header {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}
.manifesto-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: 0.05em;
}
.manifesto-body {
    color: var(--text-secondary) !important;
    max-width: 720px;
    margin: 2rem auto !important;
    line-height: 2.1 !important;
}
.manifesto-body strong {
    color: #32D011;
    font-weight: 600;
}
.manifesto-closing {
    font-size: 1.25rem !important;
    font-style: italic;
    color: var(--secondary) !important;
    margin-top: 1.5rem !important;
}
.manifesto-line {
    width: 100px;
    height: 3px;
    background: var(--secondary);
    margin: 2rem auto 0;
}

/* === Dashed Background Pattern === */
.dashed-background {
    position: relative;
    overflow: hidden;
}
.dashed-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Scattered individual dashes - clear of header area */
        linear-gradient(90deg, #32D011 100%, #32D011 100%) 3% 45% / 35px 2px no-repeat,
        linear-gradient(90deg, #32D011 100%, #32D011 100%) 92% 50% / 45px 2px no-repeat,
        linear-gradient(90deg, #32D011 100%, #32D011 100%) 25% 55% / 20px 2px no-repeat,
        linear-gradient(90deg, #32D011 100%, #32D011 100%) 70% 48% / 30px 2px no-repeat,
        linear-gradient(90deg, #32D011 100%, #32D011 100%) 12% 85% / 35px 2px no-repeat,
        linear-gradient(90deg, #32D011 100%, #32D011 100%) 78% 88% / 40px 2px no-repeat,
        linear-gradient(90deg, #32D011 100%, #32D011 100%) 55% 92% / 25px 2px no-repeat,
        linear-gradient(90deg, #32D011 100%, #32D011 100%) 62% 78% / 35px 2px no-repeat;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}
.dashed-background > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   BOLD ACCENT OPTIONS
   ============================================ */

/* === Option 1: Bold Left Border === */
.accent-opt-1 {
    border-left: 6px solid var(--secondary) !important;
    padding-left: 2rem !important;
}

/* === Option 2: Corner Brackets === */
.accent-opt-2 {
    position: relative;
}
.corner-bracket {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--secondary);
    border-style: solid;
    border-width: 0;
}
.corner-bracket.top-left {
    top: -1px;
    left: -1px;
    border-top-width: 4px;
    border-left-width: 4px;
}
.corner-bracket.top-right {
    top: -1px;
    right: -1px;
    border-top-width: 4px;
    border-right-width: 4px;
}
.corner-bracket.bottom-left {
    bottom: -1px;
    left: -1px;
    border-bottom-width: 4px;
    border-left-width: 4px;
}
.corner-bracket.bottom-right {
    bottom: -1px;
    right: -1px;
    border-bottom-width: 4px;
    border-right-width: 4px;
}

/* === Option 3: Top Stripe === */
.accent-opt-3 {
    border-top: 5px solid var(--secondary) !important;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important;
}

/* === Option 4: Glow Border === */
.accent-opt-4 {
    border: 2px solid var(--secondary) !important;
    box-shadow: 
        0 0 20px rgba(50, 208, 17, 0.3),
        0 0 40px rgba(50, 208, 17, 0.15),
        inset 0 0 30px rgba(50, 208, 17, 0.05) !important;
}

/* === Option 5: Double Border === */
.accent-opt-5 {
    border: 2px solid var(--secondary) !important;
    outline: 2px solid var(--secondary);
    outline-offset: 4px;
}

/* === Option 6: Gradient Left Edge === */
.accent-opt-6 {
    border-left: 6px solid transparent !important;
    border-image: linear-gradient(180deg, var(--secondary), var(--primary)) 1 !important;
    background: linear-gradient(90deg, rgba(50, 208, 17, 0.08) 0%, transparent 30%) !important;
}

/* === Freedom Tech Section === */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: transparent;
    border: 1px solid #32D011;
    border-radius: var(--radius);
}

/* Remove option classes - using unified transparent + green outline */
.tech-card.option-blue,
.tech-card.option-green {
    background: transparent;
    border: 1px solid #32D011;
}


.tech-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.tech-icon svg {
    width: 36px;
    height: 36px;
}

.tech-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(52%) sepia(95%) saturate(1000%) hue-rotate(85deg) brightness(95%) contrast(95%);
}

.tech-icon-img-nofilter {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.tech-card span {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
    text-align: center;
}

/* === Mission Section === */
.mission-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.mission-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.mission-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(50, 208, 17, 0.3);
    position: relative;
}

.mission-number::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    opacity: 0.5;
}

.mission-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    padding-top: 0.5rem;
}

/* Emphasis style for key phrases */
.emphasis {
    color: var(--secondary);
    font-weight: 600;
}

/* ============================================
   CREATIVE MISSION MODULE OPTIONS
   ============================================ */

/* === Option 1: Terminal/Hacker === */
.mission-terminal {
    background: #0d1117 !important;
    border: 1px solid #30363d !important;
    padding: 0 !important;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

.terminal-header {
    background: #161b22;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #30363d;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27ca40; }

.terminal-title {
    margin-left: 1rem;
    color: #8b949e;
    font-size: 0.85rem;
}

.terminal-body {
    padding: 1.5rem;
}

.terminal-line {
    margin-bottom: 0.75rem;
    color: #c9d1d9;
    font-size: 0.95rem;
    line-height: 1.6;
}

.terminal-line.output {
    padding-left: 1.5rem;
}

.terminal-prompt {
    color: #32D011;
    font-weight: bold;
}

.terminal-cmd {
    color: #58a6ff;
}

.terminal-success {
    color: #32D011;
    margin-right: 0.5rem;
}

.terminal-cursor {
    color: #32D011;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* === Option 2: Constellation/Star Map === */
.mission-constellation {
    background: radial-gradient(ellipse at center, #0a1628 0%, #050a12 100%) !important;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.mission-constellation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 80% 50%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90% 10%, rgba(255,255,255,0.3), transparent);
    pointer-events: none;
}

.constellation-title {
    text-align: center;
    font-size: 0.85rem !important;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5) !important;
    margin-bottom: 2rem !important;
}

.star-field {
    position: relative;
    z-index: 1;
}

.constellation-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.star {
    width: 16px;
    height: 16px;
    background: #32D011;
    border-radius: 50%;
    box-shadow: 0 0 20px #32D011, 0 0 40px rgba(50, 208, 17, 0.5);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.star.pulse {
    animation: starPulse 2s ease-in-out infinite;
}

.star.delay-1 { animation-delay: 0.5s; }
.star.delay-2 { animation-delay: 1s; }

@keyframes starPulse {
    0%, 100% { box-shadow: 0 0 20px #32D011, 0 0 40px rgba(50, 208, 17, 0.5); }
    50% { box-shadow: 0 0 30px #32D011, 0 0 60px rgba(50, 208, 17, 0.8); }
}

.star-line {
    position: absolute;
    left: 8px;
    top: 24px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, rgba(50, 208, 17, 0.5), transparent);
}

.constellation-item:last-child .star-line {
    display: none;
}

.constellation-item p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* === Option 3: Blueprint/Schematic === */
.mission-blueprint {
    background: #0a192f !important;
    position: relative;
    overflow: hidden;
}

.blueprint-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(50, 208, 17, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(50, 208, 17, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.blueprint-title {
    font-family: 'Courier New', monospace !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.2em;
    color: rgba(50, 208, 17, 0.7) !important;
    margin-bottom: 2rem !important;
    position: relative;
    z-index: 1;
}

.blueprint-items {
    position: relative;
    z-index: 1;
}

.blueprint-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px dashed rgba(50, 208, 17, 0.3);
    position: relative;
}

.blueprint-item::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #32D011;
    border-left: 2px solid #32D011;
}

.blueprint-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #32D011;
    border-right: 2px solid #32D011;
}

.blueprint-marker {
    color: #32D011;
    font-size: 1.25rem;
}

.blueprint-label {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: #32D011;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.blueprint-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* === Option 4: Neon Sign === */
.mission-neon {
    text-align: center;
}

.mission-neon h2 {
    color: #32D011 !important;
    margin-bottom: 2rem !important;
}

.neon-items {
    text-align: left;
    max-width: 720px;
    margin: 0 auto;
}

.neon-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(50, 208, 17, 0.3);
    border-radius: 4px;
    background: rgba(50, 208, 17, 0.02);
}

.neon-number {
    font-size: 2rem;
    font-weight: 700;
    color: #32D011;
    text-shadow: 0 0 10px rgba(50, 208, 17, 0.5);
    line-height: 1;
    flex-shrink: 0;
}

.neon-item p {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* === Text Emphasis Options === */

/* Option A: Pixel Font */
.emphasis-pixel {
    font-family: 'Press Start 2P', monospace;
    color: #32D011;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(50, 208, 17, 0.5);
}

/* Option B: Large Centered Header */
.neon-item-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(50, 208, 17, 0.3);
    border-radius: 4px;
    background: rgba(50, 208, 17, 0.02);
    margin-bottom: 1.5rem;
}

.neon-number-large {
    font-size: 1rem;
    color: rgba(50, 208, 17, 0.5);
    letter-spacing: 0.3em;
    margin-bottom: 0.75rem;
}

.emphasis-large-centered {
    font-size: 1.75rem;
    font-weight: 700;
    color: #32D011;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 20px rgba(50, 208, 17, 0.3);
}

.neon-item-stacked p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.6;
}

/* Option C: Number Behind Text */
.neon-item-overlap {
    position: relative;
    padding: 2rem;
    border: 1px solid rgba(50, 208, 17, 0.3);
    border-radius: 4px;
    background: rgba(50, 208, 17, 0.02);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.neon-number-bg {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(50, 208, 17, 0.08);
    line-height: 1;
    z-index: 0;
}

.overlap-content {
    position: relative;
    z-index: 1;
    padding-left: 3rem;
}

.emphasis-bold-large {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: #32D011;
    margin-bottom: 0.5rem;
}

.overlap-content p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* Option D: Quote Style */
.neon-item-quote {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(50, 208, 17, 0.3);
    border-radius: 4px;
    background: rgba(50, 208, 17, 0.02);
    margin-bottom: 1.5rem;
}

.quote-number {
    font-size: 2rem;
    font-weight: 700;
    color: #32D011;
    line-height: 1;
}

.neon-item-quote blockquote {
    border-left: 4px solid #32D011;
    padding-left: 1.5rem;
    margin: 0;
}

.emphasis-quote {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    color: #fff;
    margin-bottom: 0.5rem;
}

.neon-item-quote p {
    color: rgba(255,255,255,0.6);
    font-style: italic;
    line-height: 1.6;
}

/* Option E: Split Layout */
.neon-item-split {
    display: flex;
    border: 1px solid rgba(50, 208, 17, 0.3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.neon-item-split:hover {
    transform: translateX(5px);
    border-color: rgba(50, 208, 17, 0.6);
    box-shadow: 0 0 20px rgba(50, 208, 17, 0.15);
}

.split-left {
    background: rgba(50, 208, 17, 0.15);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.neon-number-vertical {
    font-size: 1.75rem;
    font-weight: 700;
    color: #32D011;
}

.split-right {
    padding: 1.5rem;
    background: rgba(50, 208, 17, 0.02);
}

.emphasis-caps {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #32D011;
    margin-bottom: 0.5rem;
}

.split-right p {
    color: #fff;
    line-height: 1.6;
}

/* Option F: Tag/Label Style */
.neon-item-tag {
    padding: 1.5rem;
    border: 1px solid rgba(50, 208, 17, 0.3);
    border-radius: 4px;
    background: rgba(50, 208, 17, 0.02);
    margin-bottom: 1.5rem;
}

.tag-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.tag-number {
    background: #32D011;
    color: #0a0a0a;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    font-size: 0.85rem;
}

.emphasis-tag {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.neon-item-tag > p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    padding-left: 3.5rem;
}

/* Option G: Bracket Accent */
.neon-item-bracket {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(50, 208, 17, 0.3);
    border-radius: 4px;
    background: rgba(50, 208, 17, 0.02);
    margin-bottom: 1.5rem;
}

.emphasis-bracket {
    color: #32D011;
    font-weight: 600;
    font-size: 1.1rem;
}

.neon-item-bracket p {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

/* Option H: Inline Number + Thick Underline */
.neon-item-inline {
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(50, 208, 17, 0.3);
    border-radius: 4px;
    background: rgba(50, 208, 17, 0.02);
    margin-bottom: 1.5rem;
}

.inline-number {
    color: #32D011;
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.emphasis-underline-thick {
    color: #32D011;
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(transparent 60%, rgba(50, 208, 17, 0.3) 60%);
    padding: 0 0.25rem;
}

/* === Option 5: Video Game Quest Log === */
.mission-quest {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    border: 2px solid #e94560 !important;
    font-family: 'Press Start 2P', monospace;
}

.quest-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px dashed rgba(233, 69, 96, 0.5);
}

.quest-header h2 {
    font-size: 1rem !important;
    color: #e94560 !important;
    margin: 0 !important;
}

.quest-icon {
    font-size: 1.5rem;
}

.quest-xp {
    color: #ffd700;
    font-size: 0.75rem;
}

.quest-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quest-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border-left: 3px solid #32D011;
}

.quest-checkbox {
    color: #32D011;
    font-size: 1.25rem;
}

.quest-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.quest-desc {
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.quest-progress {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.quest-bar {
    height: 100%;
    background: linear-gradient(90deg, #32D011, #4ae025);
    width: 75%;
    border-radius: 4px;
    animation: progressPulse 2s ease-in-out infinite;
}

.quest-bar.bar-2 { width: 60%; }
.quest-bar.bar-3 { width: 45%; }

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* === Option 6: Vintage Telegram === */
.mission-telegram {
    background: #f4e4bc !important;
    padding: 1rem !important;
}

.telegram-border {
    border: 3px double #8b7355;
    padding: 2rem;
}

.telegram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #8b7355;
    font-family: 'Courier New', monospace;
    color: #4a3c2a;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.telegram-urgent {
    background: #c41e3a;
    color: #fff;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
}

.telegram-content {
    font-family: 'Courier New', monospace;
    color: #2c2416;
}

.telegram-date, .telegram-subject {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: #5c4d3a;
}

.telegram-subject {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.telegram-body p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.telegram-body .emphasis {
    color: #c41e3a;
    font-weight: bold;
}

.telegram-signature {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: #5c4d3a;
}

/* === Responsive === */
@media (max-width: 768px) {
    .hero-section {
        height: 450px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-wordmark-placeholder {
        width: 280px;
        height: 60px;
    }
    
    .section-box {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .tech-card {
        padding: 1rem 0.75rem;
    }
    
    .tech-icon {
        width: 36px;
        height: 36px;
    }
    
    .tech-card span {
        font-size: 0.8rem;
    }
    
    .mission-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .tech-card {
        padding: 0.75rem 0.5rem;
    }
    
    .tech-icon {
        width: 28px;
        height: 28px;
    }
    
    .tech-card span {
        font-size: 0.7rem;
    }
}

/* ============================================
   VISIT NYC SECTION OPTIONS
   ============================================ */

.visit-section {
    padding: 0;
}

.visit-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.visit-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.visit-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--secondary);
    color: var(--bg-dark);
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
}

.visit-cta:hover {
    background: #28a80d;
    transform: translateY(-2px);
}

/* === Option A: Simple & Clean === */
.visit-option-a {
    text-align: center;
    padding: 3rem 2rem;
}

/* === Option B: With Location Info === */
.visit-option-b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
}

.visit-option-b .visit-content {
    flex: 1;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(50, 208, 17, 0.05);
    border: 1px solid rgba(50, 208, 17, 0.2);
    border-radius: var(--radius);
}

.visit-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.detail-value {
    font-weight: 600;
    color: var(--text-primary);
}

/* === Option C: Bold CTA === */
.visit-option-c {
    text-align: center;
    padding: 3rem 2rem;
}

.visit-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.visit-cta-bold {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
}

.visit-cta-bold:hover {
    background: var(--secondary);
    color: var(--bg-dark);
}

/* === Option D: Community Focus === */
.visit-option-d {
    text-align: center;
    padding: 3rem 2rem;
}

.visit-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--secondary);
    border-radius: 2rem;
}

.visit-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.visit-feature {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .visit-option-b {
        flex-direction: column;
        text-align: center;
    }
    
    .visit-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* === Staggered Animations === */
/* Tech cards are always visible - no animation to prevent loading issues */
.tech-card {
    opacity: 1;
    transform: none;
}

/* Mission items animation - only if JS loads */
.animate-ready .neon-item-split {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.animate-ready .neon-item-split.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-ready .neon-item-split.animate-in:hover {
    transform: translateX(5px);
}

/* === Mobile Specific Styles === */
@media (max-width: 768px) {
    /* Hero mobile */
    .hero-section {
        height: 500px;
        margin-top: -60px;
        padding-top: 60px;
    }
    
    .hero-wordmark {
        max-width: 280px;
    }
    
    .hero-title {
        font-size: 0.7rem !important;
    }
    
    .hero-cta {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    /* Section boxes mobile */
    .section-box {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .section-box h2 {
        font-size: 1.35rem;
    }
    
    /* Tech cards grid mobile */
    .tech-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
        width: 100% !important;
    }
    
    .tech-card {
        width: 100% !important;
        padding: 1rem 0.75rem;
        min-height: 100px;
    }
    
    .tech-icon {
        width: 32px;
        height: 32px;
    }
    
    .tech-card span {
        font-size: 0.7rem;
    }
    
    /* Manifesto module mobile */
    .manifesto-style {
        padding: 1.5rem !important;
    }
    
    .module-header {
        font-size: 1.1rem !important;
    }
    
    .manifesto-body {
        font-size: 0.95rem !important;
        line-height: 1.8 !important;
    }
    
    .manifesto-closing {
        font-size: 1rem !important;
    }
    
    /* Mission module mobile - keep numbers on left */
    .neon-item-split {
        flex-direction: row;
    }
    
    .split-left {
        min-width: 60px;
        padding: 1rem;
    }
    
    .neon-number-vertical {
        font-size: 1.5rem;
    }
    
    .split-right {
        padding: 1rem;
    }
    
    .emphasis-caps {
        font-size: 0.75rem;
    }
    
    /* Visit section mobile */
    .visit-cta-bold {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .visit-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .tech-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .hero-section {
        height: 450px;
    }
    
    .hero-wordmark {
        max-width: 220px;
    }
}

/* ============================================
   TUTORIALS CTA SECTION
   ============================================ */

.tutorials-cta-section {
    padding: 0;
}

.tutorials-cta-box {
    text-align: center;
    padding: 3rem 2rem;
}

.tutorials-cta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tutorials-cta-icon {
    width: 32px;
    height: 32px;
    color: var(--secondary);
    flex-shrink: 0;
}

.tutorials-cta-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.tutorials-cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tutorials-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tutorials-cta-btn:hover {
    background: #4ae025;
    border-color: #4ae025;
    transform: translateY(-2px);
    color: var(--bg-dark);
}

@media (max-width: 768px) {
    .tutorials-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .tutorials-cta-icon {
        width: 24px;
        height: 24px;
    }
    
    .tutorials-cta-header h2 {
        font-size: 1.5rem;
    }
    
    .tutorials-cta-subtitle {
        font-size: 0.95rem;
    }
    
    .tutorials-cta-btn {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
    }
}

/* ============================================
   DONATE CTA SECTION
   ============================================ */

.donate-cta-section {
    padding: 0;
}

.donate-cta-box {
    text-align: center;
    padding: 3rem 2rem;
    border: 2px solid var(--secondary);
    box-shadow: 0 0 30px rgba(50, 208, 17, 0.15), 0 0 60px rgba(50, 208, 17, 0.08);
}

.donate-cta-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--secondary);
}

.donate-cta-icon svg {
    width: 100%;
    height: 100%;
}

.donate-cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.donate-cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.donate-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
}

.donate-cta-btn:hover {
    background: #4ae025;
    border-color: #4ae025;
    transform: translateY(-2px);
    color: var(--bg-dark);
}

@media (max-width: 768px) {
    .donate-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .donate-cta-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .donate-cta-box h2 {
        font-size: 1.5rem;
    }
    
    .donate-cta-subtitle {
        font-size: 0.95rem;
    }
    
    .donate-cta-btn {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
    }
}

