/* =============================================================================
   About Page Styles with Revolutionary Matrix Effect
   ============================================================================= */

/* Page Hero Section */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--dark-gradient);
    overflow: hidden;
    margin-top: 80px;
}

.page-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float-particle 15s infinite ease-in-out;
    opacity: 0.6;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 12s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-60px) translateX(-10px);
    }
    75% {
        transform: translateY(-30px) translateX(-20px);
    }
}

.page-hero-content {
    text-align: center;
    z-index: 1;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

/* Our Story Section */
.our-story {
    padding: var(--section-padding);
    background: var(--background-dark);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 25px;
}

.story-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.story-stat {
    text-align: center;
}

.story-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-stat .stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-gradient);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -22px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--background-dark);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot {
    background: var(--primary-color);
    box-shadow: var(--glow-primary);
    transform: scale(1.2);
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Mission & Vision */
.mission-vision {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(16, 33, 62, 0.5) 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mv-card {
    background: var(--background-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.mv-card:hover::before {
    left: 100%;
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 30px;
    box-shadow: var(--glow-primary);
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Team Section with Matrix Effect */
.team-section {
    padding: var(--section-padding);
    background: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    position: relative;
}

/* Simple Cards for First Two Members */
.simple-card {
    background: var(--background-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 400px; /* Same height as dual card */
}

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

.simple-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: white;
}

.simple-text {
    text-align: left;
}

.simple-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.simple-role {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* DUAL PERSONALITY MATRIX EFFECT - THE EPIC MASK CONCEPT! */
.dual-personality-hero {
    position: relative;
    z-index: 10;
    height: 400px; /* Fixed height for consistent layout */
}

.dual-card-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

/* Full Card Image Style */
.full-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.full-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
}

.member-text {
    text-align: left;
    color: white;
    z-index: 2;
}

.member-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.position {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

/* Professional Card Styles */
.professional-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 3;
}

.professional-card .card-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
}

.professional-card .member-text {
    text-align: left;
}

.professional-card .member-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.professional-card .simple-role {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Secret Card Styles */
.secret-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    opacity: 0;
    transform: rotateY(180deg) translateZ(-50px);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}

.secret-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 30px 20px 20px;
}

.secret-overlay .member-text {
    text-align: left;
}

.secret-reveal {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 0;
    font-family: var(--font-accent);
}

.secret-text {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 400;
}

.damn-good {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: glow-pulse 2s infinite ease-in-out;
}

.prompt-engineer {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(45deg, #666, #999, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dual Active States - The Epic Transformation */
.dual-personality-hero.dual-active .professional-card {
    transform: rotateY(-180deg) translateZ(-100px) scale(0.8);
    opacity: 0;
    filter: blur(10px);
}

.dual-personality-hero.dual-active .secret-card {
    opacity: 1;
    transform: rotateY(0deg) translateZ(0px) scale(1.05);
    border-color: #666;
    box-shadow: 0 0 30px rgba(150, 150, 150, 0.3);
}

.dual-personality-hero.dual-active .secret-card img {
    filter: grayscale(0.7) contrast(1.2) brightness(0.9);
}

/* Matrix Overlay Effects for Dual Card - REMOVED RAIN */
.dual-personality-hero .matrix-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
    border-radius: 20px;
    overflow: hidden;
}

.dual-personality-hero.dual-active .matrix-overlay {
    opacity: 0; /* Keep matrix overlay disabled for cleaner look */
}

/* Keep digital rain and glitch effects but make them invisible */
.digital-rain,
.glitch-effect {
    display: none; /* Remove completely for clean card */
}

/* Reality Wave - White/Gray Theme */
.dual-personality-hero .reality-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border: 2px solid #ddd;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.dual-personality-hero.dual-active .reality-wave {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0.4;
    border-color: #ccc;
}

/* Page Distortion Effect - White/Gray Theme */
.page-distortion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 5;
    background: radial-gradient(circle at center, transparent 0%, rgba(220, 220, 220, 0.02) 50%, transparent 100%);
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.page-distortion.distortion-active {
    opacity: 1;
    background: radial-gradient(circle at center, transparent 0%, rgba(200, 200, 200, 0.08) 30%, rgba(180, 180, 180, 0.05) 60%, transparent 100%);
}

/* Body Matrix Mode - White/Gray Theme */
body.matrix-mode {
    transition: all 1.5s ease;
}

body.matrix-mode * {
    transition: all 1.5s ease;
}

/* White/Gray theme color shifts for different elements during matrix mode */
body.matrix-mode .main-header {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom-color: rgba(220, 220, 220, 0.5) !important;
    backdrop-filter: blur(20px);
}

body.matrix-mode .nav-link {
    color: rgba(60, 60, 60, 0.9) !important;
}

body.matrix-mode .nav-link:hover,
body.matrix-mode .nav-link.active {
    color: #333 !important;
}

body.matrix-mode .nav-link::after {
    background: linear-gradient(135deg, #888 0%, #bbb 100%) !important;
}

body.matrix-mode .logo-icon {
    background: linear-gradient(135deg, #888 0%, #bbb 100%) !important;
}

body.matrix-mode .brand-name {
    color: #333 !important;
}

body.matrix-mode .brand-tagline {
    color: #666 !important;
}

body.matrix-mode .btn-outline-small {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(150, 150, 150, 0.5) !important;
    color: #555 !important;
}

body.matrix-mode .btn-outline-small:hover {
    background: linear-gradient(135deg, #888 0%, #bbb 100%) !important;
    border-color: transparent !important;
    color: white !important;
}

body.matrix-mode .dropdown-menu {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(220, 220, 220, 0.5) !important;
}

body.matrix-mode .dropdown-menu a {
    color: #666 !important;
}

body.matrix-mode .dropdown-menu a:hover {
    color: #333 !important;
    background: rgba(150, 150, 150, 0.1) !important;
}

body.matrix-mode .gradient-text {
    background: linear-gradient(135deg, #666 0%, #999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.matrix-mode .btn-primary {
    background: linear-gradient(135deg, #888 0%, #bbb 100%);
    box-shadow: 0 0 20px rgba(200, 200, 200, 0.4);
}

body.matrix-mode .service-card,
body.matrix-mode .member-card:not(.professional-card):not(.secret-card),
body.matrix-mode .mv-card {
    border-color: rgba(200, 200, 200, 0.3);
    background: rgba(250, 250, 250, 0.1);
}

body.matrix-mode .service-icon,
body.matrix-mode .mv-icon {
    background: linear-gradient(135deg, #888 0%, #bbb 100%);
}

body.matrix-mode .main-footer {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

body.matrix-mode .value-icon {
    background: linear-gradient(135deg, #888 0%, #bbb 100%) !important;
}

body.matrix-mode .value-card {
    border-color: rgba(200, 200, 200, 0.3) !important;
    background: rgba(255, 255, 255, 0.8) !important;
}

body.matrix-mode .value-card h4 {
    color: #333 !important;
}

body.matrix-mode .value-card p {
    color: #666 !important;
}

body.matrix-mode .footer-links a,
body.matrix-mode .contact-item span,
body.matrix-mode .footer-description {
    color: #666 !important;
}

body.matrix-mode .footer-title {
    color: #333 !important;
}

body.matrix-mode .social-link {
    background: rgba(250, 250, 250, 0.8);
    border-color: rgba(200, 200, 200, 0.5);
    color: #666;
}

body.matrix-mode .copyright p,
body.matrix-mode .footer-links-bottom a {
    color: #777 !important;
}

/* Enhanced White/Gray Matrix Effects */
@keyframes white-gray-matrix-glow {
    0%, 100% {
        text-shadow: 0 0 5px #ccc;
    }
    50% {
        text-shadow: 0 0 15px #ddd, 0 0 25px #bbb;
    }
}

body.matrix-mode h1,
body.matrix-mode h2,
body.matrix-mode h3 {
    animation: white-gray-matrix-glow 2s infinite ease-in-out;
    color: #555 !important;
}

/* Matrix mode background pattern - White/Gray */
body.matrix-mode {
    background-color: #f8f8f8 !important;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(200, 200, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(180, 180, 180, 0.08) 0%, transparent 50%);
}

/* Hover persistence for dual effect */
.dual-personality-hero:hover .reality-wave {
    animation: reality-pulse-white-gray 2s infinite ease-in-out;
}

@keyframes reality-pulse-white-gray {
    0%, 100% {
        border-width: 2px;
        opacity: 0.4;
        border-color: #ddd;
    }
    50% {
        border-width: 4px;
        opacity: 0.7;
        border-color: #bbb;
    }
}

/* Additional Matrix Mode Overrides */
body.matrix-mode .hero-background,
body.matrix-mode .page-hero,
body.matrix-mode .our-story,
body.matrix-mode .team-section,
body.matrix-mode .values-section {
    background: #f5f5f5 !important;
}

body.matrix-mode .text-primary,
body.matrix-mode .hero-title,
body.matrix-mode .section-header h2,
body.matrix-mode .story-content h2 {
    color: #444 !important;
}

body.matrix-mode .text-secondary,
body.matrix-mode .hero-subtitle,
body.matrix-mode .section-header p {
    color: #666 !important;
}

body.matrix-mode .story-stat .stat-number {
    background: linear-gradient(135deg, #888 0%, #bbb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.matrix-mode .timeline::before {
    background: linear-gradient(135deg, #888 0%, #bbb 100%);
}

body.matrix-mode .timeline-dot {
    border-color: #888;
    background: #f5f5f5;
}

body.matrix-mode .timeline-item.active .timeline-dot {
    background: #888;
}

/* Additional Professional Skills Hover Effects */
.professional-card:hover .skills-list span {
    background: rgba(102, 126, 234, 0.3);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Secret Card Special Effects */
.secret-card .member-text {
    animation: fade-in-secret 1s ease-in-out;
}

@keyframes fade-in-secret {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Distortion Effect */
.page-distortion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 5;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 255, 65, 0.03) 50%, transparent 100%);
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.page-distortion.distortion-active {
    opacity: 1;
    background: radial-gradient(circle at center, transparent 0%, rgba(111, 119, 113, 0.08) 30%, rgba(194, 196, 195, 0.05) 60%, transparent 100%);
}

/* Body Matrix Mode */
body.matrix-mode {
    transition: all 1.5s ease;
}

body.matrix-mode * {
    transition: all 1.5s ease;
}

/* Subtle color shifts for different elements during matrix mode */
body.matrix-mode .main-header {
    background: rgba(0, 20, 10, 0.95);
    border-bottom-color: rgba(210, 210, 210, 0.3);
}

body.matrix-mode .nav-link {
    color: rgba(169, 169, 169, 0.3);
}

body.matrix-mode .nav-link:hover,
body.matrix-mode .nav-link.active {
    color: #cececeff;
}

body.matrix-mode .gradient-text {
    background: linear-gradient(135deg, #cececeff 0%, #cececeff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.matrix-mode .btn-primary {
    background: linear-gradient(135deg, #cececeff 0%, #cececeff 100%);
    box-shadow: 0 0 20px rgba(169, 169, 169, 0.3);
}

body.matrix-mode .service-card,
body.matrix-mode .member-card:not(.special-card),
body.matrix-mode .mv-card {
    border-color: rgba(66, 68, 67, 0.1);
    background: rgba(0, 20, 10, 0.3);
}

body.matrix-mode .service-icon,
body.matrix-mode .mv-icon {
    background: linear-gradient(135deg, #cececeff 0%, #cececeff 100%);
}

body.matrix-mode .main-footer {
    background: linear-gradient(135deg, #001100 0%, #002200 100%);
}

/* Values Section */
.values-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(16, 33, 62, 0.5) 0%, rgba(10, 10, 10, 0.8) 100%);
}

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

.value-card {
    background: var(--background-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 25px;
    box-shadow: var(--glow-primary);
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About CTA Section */
.about-cta {
    padding: 80px 0;
    background: var(--primary-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.about-cta .cta-content {
    position: relative;
    z-index: 1;
}

.about-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Matrix Mode Color Transitions for Values */
body.matrix-mode .value-icon {
    background: linear-gradient(135deg, #cececeff 0%, #cececeff 100%);
}

body.matrix-mode .value-card {
    border-color: rgba(194, 194, 194, 0.1);
    background: rgba(0, 20, 10, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-content h2 {
        font-size: 2.2rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-card {
        padding: 40px 30px;
    }
    
    .member-image {
        width: 120px;
        height: 120px;
    }
    
    .about-cta h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Matrix effect adjustments for mobile */
    .reality-wave {
        width: 200px;
        height: 200px;
    }
    
    .matrix-hero.matrix-active .reality-wave {
        transform: translate(-50%, -50%) scale(2);
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .mv-card,
    .value-card,
    .member-card {
        padding: 30px 20px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-dot {
        left: -15px;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Additional Matrix Effects for Enhanced Experience */
@keyframes matrix-glow {
    0%, 100% {
        text-shadow: 0 0 5px #cececeff;
    }
    50% {
        text-shadow: 0 0 20px #cececeff, 0 0 30px #cececeff;
    }
}

body.matrix-mode h1,
body.matrix-mode h2,
body.matrix-mode h3 {
    animation: matrix-glow 2s infinite ease-in-out;
}

/* Matrix mode background pattern */
body.matrix-mode {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 255, 65, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 65, 0.02) 0%, transparent 50%);
}

/* Hover persistence for matrix effect */
.matrix-hero:hover .reality-wave {
    animation: reality-pulse 2s infinite ease-in-out;
}

@keyframes reality-pulse {
    0%, 100% {
        border-width: 2px;
        opacity: 0.3;
    }
    50% {
        border-width: 4px;
        opacity: 0.6;
    }
}