:root {
    --bg-color: #f8f9fa;
    /* Pale Off-White */
    --card-bg: #ffffff;
    --text-main: #2d3436;
    --text-pale: #636e72;
    --accent: #b2bec3;
    /* Soft Gray-Blue */
    --soft-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    padding: 20px;
    max-width: 500px;
    /* Mobile focused width */
    margin: 0 auto;
}

/* Nav */
.glass-nav {
    padding: 2rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    margin: 4rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.accent {
    color: var(--text-pale);
    font-style: italic;
}

/* Cards */
.card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 24px;
    margin-bottom: 2rem;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.card:active {
    transform: translateY(5px);
    /* Soft click feel for mobile */
}

.label {
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--accent);
    display: block;
    margin-bottom: 1rem;
}

.mono-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    background: #f1f2f6;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin: 1rem 0;
}

.logo-box {
    background: #ffffff00;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: left;
    border-radius: 12px;
}

.logo-box img {
    max-height: 80px;
    max-width: 80%;
    object-fit: contain;
}

.image-placeholder {
    background: #684f4f00;
    height: 200px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 0.5rem;
}

.image-placeholder img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Scaling for Desktop */
@media (min-width: 1024px) {
    .container {
        max-width: 1100px;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}