/* PAGE 1: COVER - AWARD-WINNING DRIBBBLE TECH/ECOMMERCE LANDING HERO (NO OVERLAPS) */
.cover-page {
    background-color: #07080c;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 2rem 4vw 2rem;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    gap: 1.25rem;
}

/* Glowing Ambient Mesh Gradient */
.cover-mesh-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 90vh;
    background: radial-gradient(circle at 30% 30%, rgba(0, 85, 255, 0.18) 0%, transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(0, 176, 122, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 50% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    animation: meshPulse 12s ease-in-out infinite alternate;
}

@keyframes meshPulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-48%, -52%) scale(1.08); }
}

/* Geometric Tech Grid Overlay */
.cover-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

/* Canvas for interactive particle beams */
#cover-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cover-content {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    z-index: 2;
    position: relative;
}

/* Top Status Pill */
.hero-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.775rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-emerald);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-emerald);
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.cover-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.cover-header .headline {
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    letter-spacing: -0.02em;
    font-family: var(--font-editorial);
    font-style: normal;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 40%, #00b07a 80%, #0055ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.05;
    margin: 0;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.cover-header .subtitle {
    font-family: var(--font-ui);
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-emerald);
    line-height: 1.4;
    margin: 0;
}

/* HERO STAGE - CLEAN 3-COLUMN GRID (NO OVERLAPS) */
.hero-stage-container {
    display: grid;
    grid-template-columns: 260px minmax(320px, 440px) 260px;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0.5rem 0;
    position: relative;
}

.hero-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-portrait-card {
    width: 100%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 176, 122, 0.12);
    transition: transform 0.2s ease;
    background: #0d0f17;
}

.hero-portrait-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 176, 122, 0.4);
}

/* Dashboard Graphic Styling */
.hero-dashboard-graphic {
    width: 100%;
    height: 100%;
    background: #0b0d14;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.dash-graphic-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 0.6rem;
}

.dash-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.dash-dot.red { background: #ff5f56; }
.dash-dot.yellow { background: #ffbd2e; }
.dash-dot.green { background: #27c93f; }

.dash-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.7);
    margin-left: 0.4rem;
}

.dash-graphic-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
    justify-content: center;
    margin-top: 0.5rem;
}

.dash-stat-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.dash-kpi {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    flex: 1;
}

.dash-kpi .kpi-label {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.5);
    display: block;
    letter-spacing: 0.08em;
}

.dash-kpi .kpi-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
}

.dash-kpi .kpi-val.emerald {
    color: var(--color-emerald);
}

.dash-chart-svg {
    width: 100%;
    height: 65px;
}

.dash-footer-pills {
    display: flex;
    gap: 0.4rem;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
}

.dash-footer-pills span {
    background: rgba(0, 176, 122, 0.15);
    color: var(--color-emerald);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Feature Cards (Replacing absolute floating badges) */
.hero-feature-card {
    background: rgba(13, 16, 24, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: left;
}

.hero-feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-emerald);
    background: rgba(20, 24, 36, 0.85);
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon.ebay { background: rgba(0, 85, 255, 0.2); color: var(--color-electric-blue); }
.badge-icon.shopify { background: rgba(0, 176, 122, 0.2); color: var(--color-emerald); }
.badge-icon.ai { background: rgba(139, 121, 210, 0.2); color: var(--color-muted-purple); }
.badge-icon.ops { background: rgba(255, 107, 53, 0.2); color: var(--color-warm-orange); }

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text .title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-white);
}

.badge-text .sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.1rem;
}

.cover-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 950px;
    width: 100%;
}

.cover-footer .tagline {
    font-family: var(--font-editorial);
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-style: italic;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.75rem;
    max-width: 900px;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-soft-beige);
    transition: all 0.25s ease;
}

.skill-tag:hover {
    background: rgba(0, 176, 122, 0.15);
    border-color: var(--color-emerald);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Scroll Indicator - Clear spacing, never overlaps */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.675rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1.25rem;
    z-index: 5;
}

.scroll-indicator .line {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, var(--color-emerald), transparent);
    animation: scrollLine 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@media (max-width: 1024px) {
    .hero-stage-container {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}
