:root {
    --bg-gradient: linear-gradient(135deg, #0f172a, #0b1120 40%, #0a0b14 100%);
    --card-gradient: linear-gradient(135deg, #1e3a8a, #2563eb);
    --accent-color: #38bdf8;
    --text-color: #f8fafc;
    --muted-color: rgba(248, 250, 252, 0.8);
    --border-color: rgba(255, 255, 255, 0.2);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    min-height: 100vh;
    background: var(--bg-gradient);
    color: var(--text-color);
}

.home-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.home-header {
    text-align: center;
    margin-bottom: 2rem;
}

.home-header .eyebrow {
    letter-spacing: 0.4em;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.6);
    margin-bottom: 0.5rem;
}

.home-header h1 {
    font-size: clamp(2.2rem, 3vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.home-header p {
    color: var(--muted-color);
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.menu-card {
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--card-gradient);
    opacity: 0.05;
    pointer-events: none;
}

.menu-card span.badge {
    align-self: flex-start;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.menu-card h2 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
}

.menu-card p {
    color: var(--muted-color);
    line-height: 1.5;
    flex: 1;
}

.menu-card .cta {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.45);
}

.footnote {
    text-align: center;
    color: var(--muted-color);
    font-size: 0.95rem;
}

.home-footnote a {
    color: var(--accent-color);
}
