/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Futuristic Color Palette */
    --primary: #00f0ff;
    --primary-dark: #00b8d4;
    --primary-light: #5ff4ff;
    --secondary: #7c4dff;
    --secondary-dark: #5e35b1;
    --accent: #ff006e;
    --accent-glow: #ff4081;

    /* Dark Background System */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a28;
    --bg-card: #1e1e2e;
    --bg-elevated: #252538;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b4b4c8;
    --text-muted: #7a7a9a;

    /* Borders & Effects */
    --border-color: rgba(255, 255, 255, 0.1);
    --glow-primary: 0 0 30px rgba(0, 240, 255, 0.3);
    --glow-secondary: 0 0 30px rgba(124, 77, 255, 0.3);
    --glow-accent: 0 0 30px rgba(255, 0, 110, 0.3);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', var(--font-primary);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 240, 255, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-image {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 12px var(--primary));
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 8px var(--primary));
    }
    50% {
        filter: drop-shadow(0 0 16px var(--primary));
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

/* === BUTTONS === */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-primary);
    box-shadow: var(--glow-primary);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.5);
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 18px;
}

.cta-button-small {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-small:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.button-icon {
    font-size: 20px;
}

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

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

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: 20%;
    right: -200px;
    animation-delay: -5s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -10s;
}

.orb-4 {
    width: 450px;
    height: 450px;
    background: var(--primary);
    top: -200px;
    right: 10%;
    animation-delay: -7s;
}

.orb-5 {
    width: 550px;
    height: 550px;
    background: var(--secondary);
    bottom: -250px;
    left: 20%;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-supporting {
    font-size: 14px;
    color: var(--text-muted);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SECTIONS === */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

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

.section-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 20px var(--primary));
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

/* === WHY DIFFERENT === */
.why-different {
    background: var(--bg-secondary);
}

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

.lead-text {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-grid-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.text-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    font-size: 18px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.text-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
    transform: translateY(-4px);
}

.text-card.highlight {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(124, 77, 255, 0.1));
    border-color: var(--primary);
    color: var(--text-primary);
    font-weight: 500;
}

/* === FEATURES === */
.features {
    background: var(--bg-primary);
}

.feature-block {
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-content {
    flex: 1;
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: inline-block;
    filter: drop-shadow(0 0 20px var(--primary));
}

.feature-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.feature-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-highlight {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(0, 240, 255, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
}

.feature-highlight strong {
    color: var(--primary);
}

.feature-footer {
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
}

.feature-list {
    margin: 32px 0;
}

.feature-list-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.item-icon {
    font-size: 24px;
}

.item-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--bg-primary);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

/* === ALL IN ONE === */
.all-in-one {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
    transform: translateY(-8px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.card-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* === PRICING === */
.pricing {
    background: var(--bg-primary);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    box-shadow: var(--glow-primary);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-primary);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.currency {
    font-size: 32px;
    font-weight: 700;
    margin-top: 8px;
}

.price {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 24px;
    color: var(--text-muted);
    margin-top: 24px;
}

.pricing-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--text-secondary);
}

.check-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--bg-primary);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

/* === CTA SECTION === */
.cta-section {
    position: relative;
    background: var(--bg-secondary);
    padding: 150px 0;
    overflow: hidden;
}

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

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

/* === FOOTER === */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-tagline {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-link {
        display: none;
    }

    .hero {
        min-height: 90vh;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

    .feature-block {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .feature-title {
        font-size: 28px;
    }

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

    .pricing-card {
        padding: 32px 24px;
    }

    .price {
        font-size: 56px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .feature-grid-text {
        grid-template-columns: 1fr;
    }
}

/* === ABOUT PAGE STYLES === */

/* About Hero */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-logo {
    height: 120px;
    width: auto;
    margin: 0 auto 32px;
    display: block;
    filter: drop-shadow(0 0 20px var(--primary));
    animation: pulse-glow 2s ease-in-out infinite;
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary), var(--text-primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.8;
}

/* Origin Story */
.origin-story {
    background: var(--bg-secondary);
}

.origin-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.story-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.roadblocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.roadblock-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.roadblock-item:hover {
    border-color: var(--accent);
    transform: translateX(8px);
}

.roadblock-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.roadblock-text {
    font-size: 18px;
    color: var(--text-secondary);
}

.highlight-text {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.story-emphasis {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 500;
    margin: 40px 0 32px;
    padding: 24px;
    background: rgba(255, 0, 110, 0.05);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
}

.mission-box {
    margin-top: 48px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(124, 77, 255, 0.1));
    border: 2px solid var(--primary);
    border-radius: 16px;
    text-align: center;
}

.mission-title {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.mission-statement {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
}

/* Breakthrough */
.breakthrough {
    background: var(--bg-primary);
}

.breakthrough-content {
    max-width: 900px;
    margin: 0 auto;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.comparison-item {
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.comparison-item.old {
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid rgba(255, 0, 110, 0.3);
    color: var(--text-muted);
}

.comparison-item.new {
    background: rgba(0, 240, 255, 0.1);
    border: 2px solid var(--primary);
    color: var(--text-primary);
    transform: scale(1.05);
}

.breakthrough-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.adaptive-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.adaptive-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: var(--text-secondary);
}

.adaptive-check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--bg-primary);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.breakthrough-emphasis {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 500;
    margin: 40px 0 24px;
    line-height: 1.6;
}

.breakthrough-tagline {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 32px;
}

.floating-tagline {
    margin-top: 48px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    font-size: 20px;
    font-style: italic;
    color: var(--text-secondary);
}

/* Knowledge Section */
.knowledge {
    background: var(--bg-secondary);
}

.knowledge-content {
    max-width: 900px;
    margin: 0 auto;
}

.knowledge-intro {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.knowledge-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.knowledge-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.knowledge-feature:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.feature-bullet {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.knowledge-feature p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.knowledge-closing {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 500;
    text-align: center;
    padding: 32px;
    background: rgba(0, 240, 255, 0.05);
    border-radius: 12px;
}

/* Mission Section */
.mission-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

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

.logo-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-image: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    filter: blur(2px);
}

.mission-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-paragraph {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.mission-paragraph.fade-up {
    opacity: 1;
    transform: translateY(0);
}

.mission-paragraph strong {
    color: var(--primary);
    font-weight: 700;
}

.mission-why {
    margin: 48px 0;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.mission-why.fade-up {
    opacity: 1;
    transform: translateY(0);
}

.why-title {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.why-item {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.mission-closing {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 48px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.mission-closing.fade-up {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Join */
.cta-join {
    background: var(--bg-secondary);
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.neon-figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    filter: drop-shadow(0 0 60px var(--primary));
    animation: pulse-glow 3s ease-in-out infinite;
}

.cta-join-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-join-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-join-text {
    margin-bottom: 48px;
}

.cta-join-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.cta-button.pulse {
    animation: button-pulse 2s ease-in-out infinite;
}

@keyframes button-pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 240, 255, 0.6);
    }
}

/* Responsive About Page */
@media (max-width: 768px) {
    .comparison {
        grid-template-columns: 1fr;
    }

    .comparison-item.new {
        transform: scale(1);
    }

    .roadblocks {
        gap: 16px;
    }

    .mission-box {
        padding: 24px;
    }

    .mission-statement {
        font-size: 20px;
    }

    .neon-figure {
        width: 300px;
        height: 300px;
    }
}
