/* web-concept.css - Styles for new Aurum Micelium concepts */

/* --- GENERAL UTILS --- */
.am-glow-text {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 1px;
}

/* --- SYMBIOSIS PARADIGM SECTION --- */
.am-symbiosis-section {
    padding: 8rem 0;
    background: #000;
    position: relative;
    border-bottom: 1px solid rgba(255,215,0,0.1);
}
.am-symbiosis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}
@media (min-width: 900px) {
    .am-symbiosis-grid {
        grid-template-columns: 1fr 1fr;
        align-items: flex-start;
    }
    .am-symb-left {
        position: sticky;
        top: 6rem;
    }
}
.am-symb-left h2 {
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.1;
    margin: 1.5rem 0 2rem;
}
.am-symb-left p {
    font-size: 1.3rem;
    color: #aaa;
    line-height: 1.6;
}
.am-symb-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.am-symb-card {
    background: rgba(20,20,20,0.5);
    border-left: 4px solid #ffd700;
    padding: 2.5rem;
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease;
}
.am-symb-card:hover {
    transform: translateX(10px);
    background: rgba(40,40,40,0.5);
}
.am-symb-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
@media (min-width: 768px) {
    .am-symb-card h3 {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.am-symb-card h3 span {
    font-size: 1rem;
    color: #888;
    font-family: monospace;
}
.am-symb-card p {
    color: #bbb;
    line-height: 1.6;
    margin: 0;
}
.am-symb-time {
    margin-top: 1rem;
    padding: 2rem;
    background: linear-gradient(90deg, rgba(255,215,0,0.1), transparent);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 4px;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
}
.am-symb-time strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* --- MASSIVE ALCHEMY SECTION (Blocks 4-7) --- */
.am-huge-alchemy {
    background: #050505;
    color: #fff;
    padding: 10rem 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.am-huge-alchemy .section-header {
    margin-bottom: 10rem;
}

.am-stages-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12rem;
}

.am-stage-panel {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

@media (min-width: 1024px) {
    .am-stage-panel {
        flex-direction: row;
        align-items: flex-start;
    }
}

.am-stage-left {
    flex: 0 0 35%;
    position: -webkit-sticky;
    position: sticky;
    top: 6rem;
    padding-right: 3rem;
}

.am-stage-indicator {
    font-size: 8.5rem;
    font-weight: 900;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    font-family: serif;
    transition: all 0.5s ease;
}

.am-stage-name {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.am-stage-name span {
    font-size: 1.2rem;
    color: #666;
    display: block;
    margin-top: 0.5rem;
    font-weight: 400;
}

.am-stage-right {
    flex: 1;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 4rem;
    position: relative;
}

@media (max-width: 1023px) {
    .am-stage-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 3rem;
    }

    .am-stage-left {
        position: static;
        padding-right: 0;
    }
}

/* Timeline dot */
@media (min-width: 1024px) {
    .am-stage-right::before {
        content: '';
        position: absolute;
        left: -8px;
        top: 0;
        width: 16px;
        height: 16px;
        background: #050505;
        border: 2px solid #ffd700;
        border-radius: 50%;
        transition: box-shadow 0.3s ease;
    }
    .am-stage-panel:hover .am-stage-right::before {
        box-shadow: 0 0 15px #ffd700;
    }
}

.am-panel-content h3 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
}

.am-panel-intro {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 5rem;
}

.am-panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .am-panel-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.am-pg-item h4 {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 1rem;
    position: relative;
}

.am-pg-item h4::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 30px; height: 1px;
    background: #ffd700;
}

.am-pg-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #999;
}

.am-panel-results {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(0,0,0,0));
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.am-panel-results::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
}

.am-stage-nigredo .am-panel-results::before { background: #555; }
.am-stage-albedo .am-panel-results::before { background: #bbb; }
.am-stage-citrinitas .am-panel-results::before { background: #ffcc00; }
.am-stage-rubedo .am-panel-results::before { background: #ff3333; }

.am-pr-label {
    font-family: monospace;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.am-pr-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.am-panel-results p {
    color: #aaa;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Unique Stage Colors */
.am-stage-nigredo .am-stage-indicator { -webkit-text-stroke-color: rgba(255,255,255,0.1); }
.am-stage-albedo .am-stage-indicator { -webkit-text-stroke-color: rgba(255,255,255,0.4); }
.am-stage-citrinitas .am-stage-indicator { -webkit-text-stroke-color: rgba(255, 215, 0, 0.6); }
.am-stage-rubedo .am-stage-indicator { -webkit-text-stroke-color: rgba(255, 51, 51, 0.6); }

/* --- ROOT SYSTEM METRICS DASHBOARD (Block 18) --- */
.am-metrics-section {
    padding: 10rem 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.am-metrics-subtitle {
    font-size: 1.25rem;
    color: #888;
    margin-top: 1.5rem;
    max-width: 800px;
    line-height: 1.6;
}
.am-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 5rem;
}
@media (min-width: 900px) {
    .am-dashboard-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.am-dashboard-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.am-dashboard-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}
.am-dash-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.am-dash-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.am-dash-icon {
    font-size: 1.8rem;
    line-height: 1;
    background: rgba(255, 215, 0, 0.05);
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    color: #ffd700;
}
.am-dash-title h4 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
}
.am-dash-desc {
    color: #888;
    font-size: 1.05rem;
    line-height: 1.6;
}
.am-dash-compare {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.am-dash-bar-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.am-dash-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #bbb;
    font-family: monospace;
}
.am-dash-val {
    font-weight: bold;
    font-size: 1.1rem;
}
.bad-val { color: #ff4444; }
.gold-val { color: #ffd700; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
.am-bar-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}
.am-bar {
    height: 100%;
    width: 0; /* Animated by GSAP */
    border-radius: 4px;
}
.am-bar-bad {
    background: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}
.am-bar-gold {
    background: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}


/* --- ORACLE FAQ BLOCK (Block 16) --- */
.am-oracle-section {
    background: #0a0a0a !important; /* Forces dark mode locally */
    color: #e0e0e0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding: 6rem 0;
}

.am-oracle-header h2 {
    color: #fff;
}

.am-oracle-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .am-oracle-container {
        grid-template-columns: 1fr;
    }
}

.am-oracle-questions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 1.5rem;
}
.am-oracle-questions::-webkit-scrollbar {
    width: 6px;
}
.am-oracle-questions::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}
.am-oracle-questions::-webkit-scrollbar-thumb {
    background: rgba(255,215,0,0.3);
    border-radius: 4px;
}
.am-oracle-questions::-webkit-scrollbar-thumb:hover {
    background: rgba(255,215,0,0.5);
}

.am-oracle-q {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 1.5rem;
    text-align: left;
    color: #b0b0b0;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-family: inherit;
}

.am-oracle-q:hover, .am-oracle-q.active {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border-color: #ffd700;
    transform: translateX(10px);
}

.am-oracle-answer-area {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    min-height: 250px;
}

.am-oracle-text {
    color: #c9a84c;
    white-space: pre-wrap;
}

.am-oracle-text.typing::after {
    content: '█';
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}


/* --- SINGULARITY CTA (Block 20) --- */
.am-singularity-section {
    background: #000;
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.mycelium-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.am-singularity-void {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200vw;
    height: 200vw;
    background: radial-gradient(circle at center, rgba(255,215,0,0.05) 0%, #000 70%);
    pointer-events: none;
    z-index: 0;
}

.am-singularity-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.am-singularity-point {
    background: #000;
    border: 2px solid #ffd700;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4), inset 0 0 20px rgba(255, 215, 0, 0.2);
    transition: all 0.5s ease;
    text-align: center;
    padding: 2rem;
}

.am-singularity-point:hover {
    transform: scale(0.9);
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.8), inset 0 0 40px rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.1);
}

.am-s-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Modals */
.am-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.am-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.am-modal-content {
    background: #111;
    border: 1px solid #ffd700;
    padding: 3rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.am-modal-overlay.active .am-modal-content {
    transform: scale(1);
}

.am-modal-content h3 {
    color: #ffd700;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.am-qualify-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.am-qualify-form input {
    background: #000;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1rem;
    color: #fff;
    font-family: inherit;
    border-radius: 4px;
}

.am-qualify-form input:focus {
    outline: none;
    border-color: #ffd700;
}

.am-qualify-form button {
    margin-top: 1rem;
    background: #ffd700;
    color: #000;
    border: none;
    padding: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

.am-modal-close {
    position: absolute;
    top: 1rem; right: 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Service Hero Background Injection */
.service-hero {
    background-image: url('../img/hero_mycelium_web.png');
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #000;
}
.service-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}
.service-hero .container {
    position: relative;
    z-index: 1;
}

/* SVG DYNAMIC ICONS */
.am-dash-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4));
}
.am-icon-pulse svg {
    animation: am-pulse 2s infinite ease-in-out;
}
.am-icon-spin svg {
    animation: am-spin 8s linear infinite;
}
.am-icon-wave svg path:nth-child(2) {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: am-dash 2.5s linear infinite;
}
.am-icon-float svg {
    animation: am-float 3s ease-in-out infinite;
}

@keyframes am-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
}
@keyframes am-spin {
    100% { transform: rotate(360deg); }
}
@keyframes am-dash {
    0% { stroke-dashoffset: 40; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 40; }
}
@keyframes am-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

