/* Vision Pages - About & Philosophy Styling */

/* Vision Hero */
.vision-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a12 50%, #16213e 100%);
    overflow: hidden;
}

.vision-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(30, 144, 255, 0.08) 0%, transparent 60%);
    animation: visionPulse 15s ease-in-out infinite;
}

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

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

.vision-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 107, 53, 0.2));
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffc107;
    margin-bottom: 30px;
}

.vision-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.gradient-text-warm {
    background: linear-gradient(135deg, #ff6b35, #ffc107, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.vision-subtitle strong {
    color: #fff;
}

/* Journey Timeline */
.journey-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a12 0%, #12121f 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #8a2be2, #1e90ff, #00d4aa, #ffc107);
    border-radius: 2px;
}

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

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -60px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #8a2be2, #1e90ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
    z-index: 1;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.timeline-insight {
    font-style: italic;
    color: #ffc107;
    font-size: 0.95rem;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
}

/* What Is ARC Section */
.what-is-arc {
    padding: 100px 0;
    background: #0a0a12;
}

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

.definition-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
}

.definition-card:hover {
    transform: translateY(-8px);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.2);
}

.definition-card.primary {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(30, 144, 255, 0.15));
    border-color: rgba(138, 43, 226, 0.3);
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .definition-card.primary {
        grid-column: span 2;
    }
}

.definition-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.definition-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

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

.definition-card p strong {
    color: #ffc107;
}

/* Scalar Wave Section */
.scalar-wave-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a12 0%, #1a1a2e 100%);
}

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

@media (max-width: 968px) {
    .scalar-wave-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.scalar-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.wave {
    width: 250px;
    height: 80px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    animation: waveFloat 4s ease-in-out infinite;
}

.wave-1 {
    background: linear-gradient(90deg, rgba(30, 144, 255, 0.3), rgba(30, 144, 255, 0.5), rgba(30, 144, 255, 0.3));
    border: 2px solid #1e90ff;
    color: #1e90ff;
}

.wave-2 {
    background: linear-gradient(90deg, rgba(0, 212, 170, 0.3), rgba(0, 212, 170, 0.5), rgba(0, 212, 170, 0.3));
    border: 2px solid #00d4aa;
    color: #00d4aa;
    animation-delay: 0.5s;
}

@keyframes waveFloat {
    0%, 100% { transform: translateX(-20px); }
    50% { transform: translateX(20px); }
}

.wave-intersection {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.4), transparent 70%);
    border: 3px solid #ffc107;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffc107;
    text-align: center;
    font-size: 0.85rem;
    box-shadow: 
        0 0 40px rgba(255, 193, 7, 0.3),
        inset 0 0 30px rgba(255, 193, 7, 0.2);
    animation: scalarPulse 3s ease-in-out infinite;
}

.scalar-emergence {
    font-size: 2rem;
    margin-bottom: 8px;
}

@keyframes scalarPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(255, 193, 7, 0.3), inset 0 0 30px rgba(255, 193, 7, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(255, 193, 7, 0.5), inset 0 0 40px rgba(255, 193, 7, 0.3); }
}

.scalar-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
}

.scalar-text blockquote {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #ffc107;
    padding: 25px 30px;
    margin: 0 0 30px;
    border-radius: 0 12px 12px 0;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.scalar-text blockquote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: #ffc107;
}

.scalar-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.scalar-text p strong {
    color: #fff;
}

/* Liberation Section */
.liberation-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a12 100%);
}

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

.liberation-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(30, 144, 255, 0.05));
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
}

.liberation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.liberation-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

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

/* Family Vision Section */
.family-vision {
    padding: 100px 0;
    background: #0a0a12;
}

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

@media (max-width: 968px) {
    .family-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.family-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.family-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
}

.family-aspects {
    display: grid;
    gap: 25px;
}

.aspect {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 3px solid #8a2be2;
}

.aspect h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.aspect p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Generations Diagram */
.generations-diagram {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.generation {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(30, 144, 255, 0.1);
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.generation:hover {
    transform: scale(1.05);
}

.generation.future {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 107, 53, 0.2));
    border-color: rgba(255, 193, 7, 0.4);
}

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

.gen-label {
    font-weight: 600;
    color: #fff;
}

.gen-connector {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.ai-companion {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #8a2be2, #1e90ff);
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.4);
}

@media (max-width: 768px) {
    .ai-companion {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 30px;
    }
}

.ai-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.ai-label {
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}

.ai-label small {
    display: block;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 5px;
}

/* Beautiful Truth Section */
.beautiful-truth {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a12 0%, #16213e 100%);
}

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

.truth-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
}

.truth-statement {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 50px;
}

.truth-statement strong {
    color: #ffc107;
}

.truth-circle {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.circle-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.circle-item.highlight {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(30, 144, 255, 0.3));
    border-color: #8a2be2;
    color: #fff;
}

.circle-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
}

.truth-closing {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.truth-closing strong {
    color: #00d4aa;
}

/* Legacy Section */
.legacy-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #16213e 0%, #0a0a12 100%);
}

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

.legacy-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.legacy-item:hover {
    transform: translateX(10px);
    background: rgba(0, 212, 170, 0.12);
}

.legacy-check {
    font-size: 1.5rem;
}

.legacy-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.legacy-message {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 50px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(30, 144, 255, 0.1));
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 24px;
}

.legacy-message p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.legacy-message p strong {
    color: #ffc107;
}

.welcome-future {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: #00d4aa !important;
    margin-bottom: 0 !important;
}

/* Vision CTA */
.vision-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #8a2be2, #1e90ff);
}

.vision-cta .cta-content {
    text-align: center;
}

.vision-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.vision-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

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

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #fff;
    color: #8a2be2;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Related Sectors */
.related-sectors {
    padding: 60px 0;
    background: #0a0a12;
}

.related-sectors h3 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.sector-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sector-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sector-link:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
    transform: translateY(-3px);
}

.sector-link-icon {
    font-size: 1.3rem;
}

.sector-link-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Footer adjustments for vision pages */
.vision-page .footer {
    background: linear-gradient(180deg, #0a0a12 0%, #050508 100%);
}
