/* 
 * 🎨 VIZINEX - THEME SYSTEM
 * Dark theme emphasizing Amber/Gold accents
 */

:root {
    /* Color Palette */
    --vz-canvas-dark: #111822;    /* Deep Blue-Grey Background */
    --vz-panel-base: #1A2332;     /* Lighter Surface */
    --vz-panel-deep: #0B0F16;     /* Darker Element Surface */
    
    --vz-aura-gold: #FFC107;      /* Main Accent */
    --vz-aura-gold-dim: rgba(255, 193, 7, 0.12);
    --vz-aura-gold-hover: #FFA000;
    
    --vz-ink-bright: #F8FAFC;     /* White/Light text */
    --vz-ink-main: #E2E8F0;       /* Base Body text */
    --vz-ink-dim: #CBD5E1;        /* Muted text (AA compliant on dark) */
    
    --vz-line-subtle: rgba(255, 255, 255, 0.08);
    --vz-shadow-soft: 0 15px 35px -5px rgba(0, 0, 0, 0.6);
    
    /* Typography */
    --vz-font-heading: 'Oswald', sans-serif;
    --vz-font-body: 'Open Sans', sans-serif;
    
    /* Structure */
    --vz-measure-max: 1200px;
}

/* 
 * 🛠️ BASE RESETS & SETUP
 */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.vz-layout-canvas {
    background-color: var(--vz-canvas-dark);
    color: var(--vz-ink-main);
    font-family: var(--vz-font-body);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--vz-font-heading);
}

.vz-core-flow {
    flex: 1;
    position: relative;
    z-index: 10;
}

/* Width constraint constraint replacing rigid containers */
.vz-boundary {
    width: 100%;
    max-width: var(--vz-measure-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Background Decor */
.vz-bg-motif {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
    overflow: hidden;
}

/* Color Utilities (Mapped to Custom Variables) */
.vz-txt-bright { color: var(--vz-ink-bright); }
.vz-txt-main { color: var(--vz-ink-main); }
.vz-txt-dim { color: var(--vz-ink-dim); }
.vz-txt-gold { color: var(--vz-aura-gold); }

/* 
 * 🏷️ HEADER
 */
.vz-roof {
    padding: 1.25rem 0;
    background-color: var(--vz-panel-deep);
    border-bottom: 1px solid var(--vz-line-subtle);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.vz-brand-mark {
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.vz-brand-mark:hover {
    opacity: 0.8;
}

/* 
 * 📦 PRODUCT INTRO (PRESET B)
 */
.vz-genesis-pane {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .vz-genesis-pane {
        flex-direction: row;
        align-items: stretch;
    }
    .vz-genesis-prose {
        width: 55%;
        flex-shrink: 0;
        padding-right: 2rem;
    }
    .vz-genesis-art {
        width: 45%;
        flex-shrink: 0;
    }
}

/* Badges */
.vz-pill-item {
    background-color: var(--vz-aura-gold-dim);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: var(--vz-aura-gold);
}

/* Mini Features List */
.vz-icon-box {
    background-color: var(--vz-panel-deep);
    border: 1px solid var(--vz-line-subtle);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vz-aura-gold);
}

/* Floating CTA Box */
.vz-action-anchor {
    background-color: var(--vz-panel-base);
    border: 1px solid var(--vz-line-subtle);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: var(--vz-shadow-soft);
}

@media (min-width: 1024px) {
    .vz-action-anchor {
        position: sticky;
        bottom: 2rem;
        z-index: 40;
    }
}

.vz-btn-go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--vz-aura-gold);
    color: #000;
    font-family: var(--vz-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vz-btn-go:hover, .vz-btn-go:focus {
    background-color: var(--vz-aura-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.2);
    outline: none;
}

/* Image Background Decor */
.vz-art-backdrop {
    background: radial-gradient(circle at center, var(--vz-panel-base) 0%, transparent 70%);
}


/* 
 * ⚙️ FEATURES GRID
 */
.vz-facets-realm {
    background-color: var(--vz-panel-base);
    border-top: 1px solid var(--vz-line-subtle);
    border-bottom: 1px solid var(--vz-line-subtle);
    padding: 5rem 0;
    position: relative;
    z-index: 10;
}

.vz-facets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .vz-facets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 3rem;
    }
}

.vz-facet-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .vz-facet-block {
        flex-direction: row;
        align-items: flex-start;
    }
}

.vz-facet-symbol {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--vz-aura-gold-dim);
    color: var(--vz-aura-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.vz-facet-symbol svg {
    width: 32px;
    height: 32px;
}


/* 
 * 💬 TESTIMONIALS
 */
.vz-voices-domain {
    padding: 3rem 0 5rem;
    position: relative;
    z-index: 10;
}

.vz-voices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .vz-voices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vz-voice-card {
    background-color: var(--vz-panel-deep);
    border: 1px solid var(--vz-line-subtle);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.vz-voice-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 193, 7, 0.3);
}

.vz-voice-quote-mark {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 10rem;
    color: var(--vz-ink-bright);
    opacity: 0.03;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.vz-voice-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vz-aura-gold), var(--vz-aura-gold-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    font-family: var(--vz-font-heading);
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}


/* 
 * 🏁 FOOTER
 */
.vz-floor {
    padding: 3rem 0;
    background-color: var(--vz-panel-deep);
    border-top: 1px solid var(--vz-line-subtle);
    position: relative;
    z-index: 20;
    color: var(--vz-ink-dim);
    font-size: 0.875rem;
}

.vz-floor-nav a {
    text-decoration: none;
    position: relative;
}

.vz-floor-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--vz-aura-gold);
    transition: width 0.3s ease;
}

.vz-floor-nav a:hover::after {
    width: 100%;
}