/* ====================================
   Content (inside dock grid cells)
   ==================================== */

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--golden);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Tools Grid */
.tool-full {
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 2rem;
    border-radius: 12px;
}

/* ====================================
   South Dock (Footer)
   ==================================== */

#dock-south .dock-content {
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.85rem;
}

.south-brand {
    font-weight: 600;
    color: var(--brain);
}

.south-stats {
    color: var(--text-light);
    font-size: 0.8rem;
}

.south-route {
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    color: var(--golden);
    background: rgba(245, 158, 11, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

/* ====================================
   Utility Classes
   ==================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary);
}

.btn-accent {
    background: var(--accent);
    color: white;
}

/* Page content */
.page-content {
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 2rem;
    border-radius: 12px;
}

/* Inside dock grid cells, page-content inherits cell background */
.grid-cell .page-content {
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    height: 100%;
    overflow: auto;
}

.grid-cell .tool-full {
    background: transparent;
    border: none;
    border-radius: 0;
    height: 100%;
    overflow: auto;
}

.page-content h2 {
    color: var(--golden);
    margin-bottom: 1rem;
}

