/* ==========================================================================
   🌌 IMMENSUM CORE DESIGN STYLE
   ========================================================================== */

/* 1. Resetting the canvas for a clean template */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Fixed the double box-box-sizing typo here! */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* 2. Turning on the dark-mode cosmic engine */
body {
    background-color: #0b091a; /* Deep space dark purple */
    color: #e2e8f0; /* Crisp white-silver for body text */
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtly embedding our favored cosmic neon atmosphere */
    background-image: radial-gradient(circle at 50% 0%, #1e1145 0%, #0b091a 70%);
}

/* 3. The Navigation Forge Bar */
.forge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(11, 9, 26, 0.8);
    backdrop-filter: blur(12px); /* Sleek glassmorphism */
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-name {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #ffd700; /* Rich gold from our coin badge */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00d4ff; /* Dynamic cyan glow link hover */
}

/* 🛠️ Main Workspace Constraints (The Missing Engine Piece) */
.module-container {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.module-header {
    text-align: center;
    margin-bottom: 1rem;
}

.module-header h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #ffd700 30%, #fff4ba 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.screenshot-card {
    background: linear-gradient(145deg, #13112c, #0f0d24);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.screenshot-caption {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* 4. The Hero Spotlight Banner */
.hero-section {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    /* Beautiful gradient text pulling from your sidebar theme */
    background: linear-gradient(135deg, #ffd700 30%, #fff4ba 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 1rem auto;
    color: #94a3b8;
}

/* 5. Buttons forged for action */
.cta-buttons a {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 0.75rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0072ff);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    border: 2px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

/* 6. Grid system for features */
.features-grid {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.features-grid h2, .data-showcase h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.features-grid div.feature-card {
    background: linear-gradient(145deg, #13112c, #0f0d24);
    border: 1px solid rgba(255, 215, 0, 0.05); /* Soft gold edge */
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.features-grid div.feature-card:hover {
    transform: scale(1.02);
    border-color: rgba(0, 212, 255, 0.2);
}

.feature-card h3 {
    color: #00d4ff; /* Cyan title text */
    margin-bottom: 0.5rem;
}

/* 7. Compliant layout for the footer */
.forge-footer {
    background: #060512;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.05);
    margin-top: 6rem;
    font-size: 0.9rem;
    color: #64748b;
}

.legal-links {
    margin-top: 1rem;
}

.legal-links a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #ffd700; /* Gold flip on legal hover */
}

.divider {
    margin: 0 0.5rem;
    color: #334155;
}

/* 📊 THE LIVE PROOF DATA GRID */
.data-showcase {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.interactive-grid-wrapper {
    background: rgba(19, 17, 44, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.proof-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    text-align: left;
}

.proof-table th {
    color: #ffd700; /* Gold headers */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 1rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.1);
}

.proof-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

/* Styling the monstrously exact outputs */
.exact-output {
    font-family: 'Courier New', Courier, monospace;
    color: #00d4ff; /* Neon cyan glow for precision text */
    background: rgba(0, 212, 255, 0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    font-weight: bold;
}

.operation-badge {
    font-weight: bold;
    color: #ffd700;
}

/* ==========================================================================
   🌌 IMMENSUM MODULE WORKSPACE STYLES (Google Sheets & Future Expansions)
   ========================================================================== */

/* 🛠️ Video & Section Alignment Contenders */
.showcase-section {
    max-width: 850px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.video-glow-frame {
    position: relative;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 10px;
    background: rgba(19, 17, 44, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(8px);
}

.video-glow-frame video {
    border-radius: 10px;
    display: block;
}

/* 💎 Pricing Grid Engine */
.pricing-section {
    margin-top: 6rem;
    margin-bottom: 4rem;
    text-align: center;
}

.pricing-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-section p {
    color: #94a3b8;
    margin-bottom: 3rem;
}

.pricing-flex-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* 🎫 Custom Variant Cards */
.pricing-card {
    position: relative;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    width: 320px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    text-align: center;
}

.pricing-card.monthly-variant {
    background: linear-gradient(145deg, #18153c, #0f0d24);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.pricing-card.annual-variant {
    background: linear-gradient(145deg, #1c184a, #0f0d24);
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px rgba(255, 215, 0, 0.1);
}

/* 🏷️ Badge Overlays */
.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
}

.card-badge.blue-glow {
    background: linear-gradient(135deg, #00d4ff, #0072ff);
}

.card-badge.gold-glow {
    background: linear-gradient(135deg, #ffd700, #ff9900);
    color: #0b091a;
}

/* 📊 Price Numbers & Text Styling */
.price-display {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price-display.cyan-text { color: #00d4ff; }
.price-display.gold-text { color: #ffd700; }

.price-sub {
    font-size: 1rem;
    color: #64748b;
}

.price-highlight-text {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.price-description {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}
