/* ===================================
   REVOLUTIONARY CYBERPUNK THEME
   1776 meets 2077
   =================================== */

:root {
    /* Colonial Colors */
    --colonial-navy: #0a1628;
    --colonial-blue: #1a2642;
    --colonial-cream: #f4e8d0;
    --colonial-gold: #d4af37;

    /* Cyberpunk Neons */
    --neon-blue: #00f3ff;
    --neon-pink: #ff006e;
    --neon-green: #39ff14;
    --neon-gold: #ffaa00;
    --neon-purple: #b026ff;

    /* Base Colors */
    --bg-dark: #050a15;
    --bg-darker: #020408;
    --text-light: #e8f4f8;
    --text-dim: #8b9db0;

    /* Fonts */
    --font-cyber: 'Orbitron', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    --font-serif: 'Cinzel', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-cyber);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   CYBERPUNK GRID BACKGROUND
   =================================== */

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="4" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.05"/></svg>');
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ===================================
   GLITCH EFFECTS
   =================================== */

.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    animation: glitch-1 2s infinite;
    color: var(--neon-blue);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 3s infinite;
    color: var(--neon-pink);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 85%, 100% { transform: translate(0); }
    87% { transform: translate(2px, 2px); }
    89% { transform: translate(-2px, -2px); }
}

.glitch-large::before {
    animation: glitch-large-1 3s infinite;
}

.glitch-large::after {
    animation: glitch-large-2 4s infinite;
}

@keyframes glitch-large-1 {
    0%, 95%, 100% { transform: translate(0); }
    96% { transform: translate(-4px, 3px); }
    97% { transform: translate(3px, -4px); }
}

@keyframes glitch-large-2 {
    0%, 93%, 100% { transform: translate(0); }
    94% { transform: translate(4px, 3px); }
    96% { transform: translate(-3px, -4px); }
}

/* ===================================
   HEADER
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--colonial-navy) 0%, rgba(10, 22, 40, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-blue);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 243, 255, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--neon-gold));
}

.logo-text {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===================================
   BUTTONS
   =================================== */

.cta-btn {
    position: relative;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--colonial-blue), var(--colonial-navy));
    border: 2px solid var(--neon-blue);
    color: var(--text-light);
    font-family: var(--font-cyber);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
    transform: translateY(-2px);
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn-header {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    margin-right: 8px;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--colonial-navy) 0%, var(--bg-darker) 70%);
}

/* Neon Lantern Effects */
.lantern-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: lanternFloat 10s ease-in-out infinite;
}

.lantern-1 {
    top: 10%;
    left: 10%;
    background: var(--neon-blue);
    animation-delay: 0s;
}

.lantern-2 {
    top: 50%;
    right: 10%;
    background: var(--neon-gold);
    animation-delay: 2s;
}

.lantern-3 {
    bottom: 10%;
    left: 50%;
    background: var(--neon-pink);
    animation-delay: 4s;
}

@keyframes lanternFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 20px) scale(1.05); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px var(--neon-gold));
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px var(--neon-gold)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 40px var(--neon-gold)); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--neon-blue);
    line-height: 1.2;
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    color: var(--colonial-cream);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cyber-bracket {
    color: var(--neon-blue);
    font-weight: 700;
}

.hero-taglines {
    margin: 40px 0;
}

.tagline {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 15px 0;
    padding: 15px 30px;
    background: rgba(26, 38, 66, 0.5);
    border-left: 4px solid var(--neon-blue);
    backdrop-filter: blur(10px);
    display: inline-block;
    position: relative;
}

.neon-text {
    text-shadow: 0 0 10px var(--neon-blue);
}

.neon-text-alt {
    border-left-color: var(--neon-gold);
    text-shadow: 0 0 10px var(--neon-gold);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--colonial-blue));
}

.cta-secondary {
    background: linear-gradient(135deg, var(--neon-gold), var(--colonial-gold));
    border-color: var(--neon-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--neon-blue));
}

.scroll-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--neon-blue);
    letter-spacing: 2px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===================================
   SECTIONS
   =================================== */

section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px var(--neon-blue));
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-blue);
    text-shadow: 0 0 15px var(--neon-blue);
    margin-bottom: 20px;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    margin: 0 auto;
}

/* ===================================
   WHAT IS SECTION
   =================================== */

.what-is {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--colonial-navy) 100%);
}

.what-is-description {
    font-size: 1.3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.highlight-text {
    color: var(--neon-gold);
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-gold);
}

.parchment-box {
    background: linear-gradient(135deg, rgba(244, 232, 208, 0.1), rgba(212, 175, 55, 0.1));
    border: 2px solid var(--colonial-gold);
    padding: 30px;
    margin: 60px auto;
    max-width: 700px;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.parchment-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--colonial-gold);
    text-align: center;
    text-shadow: 0 0 10px var(--colonial-gold);
}

.cyber-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    margin: 20px 0;
}

/* ===================================
   PILLARS GRID
   =================================== */

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pillar-card {
    background: linear-gradient(135deg, rgba(26, 38, 66, 0.8), rgba(10, 22, 40, 0.8));
    border: 2px solid var(--neon-blue);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.4);
    border-color: var(--neon-pink);
}

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

.pillar-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: var(--font-mono);
    font-size: 3rem;
    color: var(--neon-blue);
    opacity: 0.2;
    font-weight: 700;
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

.pillar-title {
    font-size: 1.3rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.pillar-description {
    color: var(--text-dim);
    line-height: 1.8;
}

/* ===================================
   MILITIA CTA SECTION
   =================================== */

.militia-cta {
    background: linear-gradient(180deg, var(--colonial-navy), var(--bg-darker));
    position: relative;
    padding: 80px 0;
}

.cyber-border-top,
.cyber-border-bottom {
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--neon-blue),
        var(--neon-pink),
        var(--neon-blue),
        transparent
    );
    animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

.militia-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(57, 255, 20, 0.3); }
    50% { box-shadow: 0 0 20px rgba(57, 255, 20, 0.6); }
}

.militia-title {
    font-size: 3.5rem;
    color: var(--neon-gold);
    text-shadow: 0 0 20px var(--neon-gold);
    margin-bottom: 20px;
}

.militia-subtitle {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.militia-description {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.militia-form {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.form-group {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.cyber-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(26, 38, 66, 0.5);
    border: 2px solid var(--neon-blue);
    color: var(--text-light);
    font-family: var(--font-mono);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.cyber-input::placeholder {
    color: var(--text-dim);
}

.cyber-input:focus {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: width 0.3s ease;
}

.cyber-input:focus + .input-line {
    width: 100%;
}

.cta-militia {
    background: linear-gradient(135deg, var(--neon-gold), var(--colonial-gold));
    border-color: var(--neon-gold);
    box-shadow: 0 0 30px rgba(255, 170, 0, 0.5);
}

.cta-militia:hover {
    box-shadow: 0 0 50px rgba(255, 170, 0, 0.8);
}

.militia-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(26, 38, 66, 0.5);
    border: 1px solid var(--neon-blue);
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.4);
}

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

.feature-text {
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    background: linear-gradient(180deg, var(--bg-darker), var(--colonial-navy));
}

.mission-large {
    font-size: 2rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-family: var(--font-serif);
}

.mission-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-dim);
    line-height: 1.8;
}

.values-section {
    margin: 80px auto;
    max-width: 900px;
}

.values-title {
    font-size: 2rem;
    color: var(--neon-blue);
    text-align: center;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(26, 38, 66, 0.3);
    border-left: 3px solid var(--neon-gold);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(26, 38, 66, 0.6);
    border-left-color: var(--neon-pink);
    transform: translateX(10px);
}

.value-bullet {
    font-size: 2rem;
    color: var(--neon-gold);
}

.value-text {
    font-size: 1.1rem;
    font-family: var(--font-serif);
    color: var(--text-light);
}

.hosts-section {
    margin-top: 80px;
}

.hosts-title {
    font-size: 2rem;
    color: var(--neon-blue);
    text-align: center;
    margin-bottom: 20px;
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.host-card {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(26, 38, 66, 0.5), rgba(10, 22, 40, 0.5));
    border: 2px solid var(--neon-blue);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.host-card:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.3);
    transform: translateY(-10px);
}

.host-avatar {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.avatar-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 3px solid var(--neon-gold);
    border-radius: 50%;
    animation: ringRotate 4s linear infinite;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.host-name {
    font-size: 1.8rem;
    color: var(--neon-gold);
    margin-bottom: 10px;
}

.host-role {
    font-family: var(--font-mono);
    color: var(--neon-blue);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.host-bio {
    color: var(--text-dim);
    line-height: 1.8;
}

/* ===================================
   EPISODES SECTION
   =================================== */

.episodes {
    background: linear-gradient(180deg, var(--colonial-navy), var(--bg-darker));
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.episode-card {
    background: linear-gradient(135deg, rgba(26, 38, 66, 0.8), rgba(10, 22, 40, 0.8));
    border: 2px solid var(--neon-blue);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.episode-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 243, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.episode-card:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.4);
    transform: translateY(-10px);
}

.episode-card:hover::after {
    top: -100%;
    right: -100%;
}

.episode-number {
    font-family: var(--font-mono);
    color: var(--neon-green);
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.episode-title {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.episode-description {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 20px;
}

.episode-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-dim);
}

.episode-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--neon-blue), var(--colonial-blue));
    border: 2px solid var(--neon-blue);
    color: var(--text-light);
    font-family: var(--font-cyber);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.episode-btn:hover {
    background: linear-gradient(135deg, var(--neon-pink), var(--colonial-navy));
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--neon-blue);
}

.footer-cta {
    background: linear-gradient(135deg, var(--colonial-navy), var(--colonial-blue));
    padding: 60px 0;
    text-align: center;
}

.footer-cta-title {
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: var(--neon-gold);
    text-shadow: 0 0 15px var(--neon-gold);
}

.footer-main {
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--text-dim);
    line-height: 1.8;
}

.footer-heading {
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 15px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--neon-blue);
}

.separator {
    color: var(--text-dim);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 968px) {
    .header .container {
        flex-wrap: wrap;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .militia-form {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav {
        gap: 10px;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }

    .militia-features {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
