/* Reactor Page Styles - Fully Independent */

/* Mobile/PC display utilities */
.sp-only { display: none; }
.pc-only { display: inline; }
@media (max-width: 768px) {
    .sp-only { display: inline !important; }
    .pc-only { display: none !important; }
}

:root {
    --accent-color: #00ffff; /* Cyber cyan */
    --accent-secondary: #ff00ff; /* Neon magenta */
    --bg-dark: #000000;
    --text-main: #ffffff;
}

body.theme-dark {
    background-color: #000000 !important;
    color: #ffffff !important;
    overflow-x: hidden;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* Hero Section */
.reactor-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%); /* Slight vignette */
}

.hero-container {
    text-align: center;
    z-index: 2;
    position: relative;
    /* background: rgba(0, 0, 0, 0.7); Removed as requested */
    padding: 2rem;
    border-radius: 20px;
    /* backdrop-filter: blur(5px); Removed as requested */
}

.glitch-text {
    font-family: 'Michroma', sans-serif;
    font-size: clamp(4rem, 15vw, 10rem);
    color: #fff;
    text-shadow: 
        2px 2px 0px #ff00ff, 
        -2px -2px 0px #00ffff,
        0 0 20px #000,
        0 0 40px #000; /* Added strong shadow */
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0% { transform: skew(0deg); }
    20% { transform: skew(-2deg); }
    21% { transform: skew(2deg); }
    22% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}

.subtitle {
    font-family: 'Michroma', sans-serif;
    font-size: clamp(1rem, 3vw, 2rem);
    color: var(--accent-color);
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px #000, 0 0 20px #000; /* Stronger shadow */
    /* background: rgba(0, 0, 0, 0.7); Removed as requested */
    display: inline-block;
    padding: 0.5rem 1rem;
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    opacity: 1;
    text-shadow: 0 0 10px #000, 0 0 20px #000, 0 0 30px #000; /* Max readability shadow */
    color: #fff;
    font-weight: 500;
}

/* Sections General */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: transparent; /* Changed from black to transparent as requested */
    /* backdrop-filter: blur(20px); Removed */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-family: 'Michroma', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.3);
    background: rgba(0,0,0,0.3); /* Subtle background for titles */
    display: inline-block;
    padding: 0.5rem 1rem;
}

/* Hero Content Background for Readability */
.hero-content {
    background: rgba(0, 0, 0, 0.4); /* Restored for readability */
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(2px); /* Slight blur */
    margin-top: 2rem;
    border: none;
}

.section-title.center {
    text-align: center;
}

.section-lead.center {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: var(--accent-color);
    background: rgba(0,0,0,0.6);
    display: inline-block;
    padding: 0.5rem 2rem;
    border-radius: 50px;
}

/* Grid Layout (Concept) */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-box img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.3s;
}

.image-box img:hover {
    filter: grayscale(0%) contrast(1.1);
}

.content-box {
    background: rgba(0, 0, 0, 0.5); /* Added container background */
    padding: 2rem;
    border-radius: 8px;
}

.content-box p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    text-shadow: 0 0 10px #000;
    color: #ffffff; /* Explicit white */
}

.warning-text {
    color: #ff3333;
    font-size: 0.9rem !important;
    border: 1px solid #ff3333;
    padding: 1rem;
    margin-top: 2rem;
    display: inline-block;
    background: rgba(0,0,0,0.8); /* Ensure warning is readable */
}

/* Features Grid (Logic) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 5;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.card-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.feature-card:hover .card-image img {
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: 'Michroma', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 0 5px #000;
}

.feature-card p {
    font-size: 1rem;
    opacity: 1; /* Increased opacity */
    color: #fff; /* Ensure white */
    text-shadow: 0 0 5px #000;
}

/* Flow Section */
.flow-section {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 255, 0.05) 50%, transparent 100%);
}

.flow-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.flow-step {
    background: #000000;
    border: 1px solid var(--accent-color);
    padding: 40px;
    position: relative;
    margin-bottom: 0;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    z-index: 5;
}

.step-num {
    font-family: 'Michroma', sans-serif;
    font-size: 3rem;
    color: var(--accent-color);
    line-height: 1;
    opacity: 0.5;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 10px #000;
}

.step-content p {
    color: #fff;
    text-shadow: 0 0 5px #000;
}

.flow-arrow {
    text-align: center;
    color: var(--accent-color);
    font-size: 2rem;
    margin: 20px 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Capabilities */
.capabilities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.cap-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    z-index: 5;
    position: relative;
}

.cap-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.cap-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cap-text h3 {
    font-family: 'Michroma', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-secondary);
    text-shadow: 0 0 5px #000;
}

.cap-text p {
    color: #fff;
    text-shadow: 0 0 5px #000;
}

.note-text {
    margin-top: 3rem;
    font-size: 0.9rem;
    opacity: 1; /* Increased opacity */
    background: rgba(0,0,0,0.6);
    padding: 1rem;
    border-radius: 4px;
    display: inline-block;
    color: #fff; /* Ensure white */
    text-shadow: 0 0 5px #000;
}

/* Campaign Box */
.cta-section {
    padding: 80px 0;
}

.campaign-box {
    background: #000000;
    border: 2px solid var(--accent-color);
    text-align: center;
    padding: 100px 60px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.1);
    z-index: 5;
}

.cta-title {
    font-family: 'Michroma', sans-serif;
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fff;
}

.cta-sub {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: bold;
}

.cta-desc {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #fff;
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
}

/* Added specific rule for .note inside campaign box in reactor page css */
.campaign-box .note {
    margin-top: 2rem; /* More space */
    font-size: 0.9rem;
    color: #ffffff !important;
    opacity: 1;
    text-shadow: 0 0 5px #000;
    display: block;
}

.glow-effect {
    box-shadow: 0 0 20px var(--accent-color);
    border: none;
}

.glow-effect:hover {
    box-shadow: 0 0 40px var(--accent-color);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
    
    .capabilities-list {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        flex-direction: column;
        gap: 10px;
        padding: 30px 20px;
    }
    
    .step-num {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}


