:root {
    --bg: #0f1724;
    --card: #0b1220;
    --accent: #6ee7b7;
    --muted: #9ca3af;
    --glass: rgba(255, 255, 255, 0.04);
    --max: 1100px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    padding: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    line-height: 1.45;
    background: var(--bg);
    color: #e6eef6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 48px 20px
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center
}

.logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #042;
    font-weight: 700
}

nav a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 18px;
    font-weight: 600
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    padding: 56px 0
}

.hero-inner {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    padding: 36px;
    border-radius: 14px;
    box-shadow: 0 6px 30px rgba(2, 6, 23, 0.6)
}

/* small touches */
a.logo-link {
    color: inherit;
    text-decoration: none
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

/* Footer */
footer {
    margin-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
    padding: 18px 8px
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700
}

.contact-link:hover {
    text-decoration: underline
}

position: relative;
min-height: 220px
}

.chef-vat {
    max-width: 640px;
    height: auto;
    display: block
}

.stir {
    transform-origin: 10% 50%;
    animation: stir 1.2s linear infinite
}

@keyframes stir {
    0% {
        transform: rotate(-12deg)
    }

    50% {
        transform: rotate(12deg)
    }

    100% {
        transform: rotate(-12deg)
    }
}

.bubbles circle {
    animation: bubble 3s infinite ease-in-out;
    transform-origin: center
}

@keyframes bubble {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1
    }

    50% {
        transform: translateY(-10px) scale(1.08);
        opacity: 0.85
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1
    }
}

.chef .tongue {
    animation: tongue 1.6s ease-in-out infinite
}

@keyframes tongue {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(3px)
    }

    100% {
        transform: translateX(0)
    }
}

.code-clouds {
    position: absolute;
    left: 50%;
    top: 40%;
    width: 60%;
    height: 1px;
    pointer-events: none;
    transform: translateX(-50%)
}

.code-block {
    position: absolute;
    left: 0;
    top: 0;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", "Courier New", monospace;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.6)
}

@keyframes floatUp {
    from {
        transform: translateY(0) scale(1) rotate(0);
        opacity: 1
    }

    to {
        transform: translateY(-160px) scale(.85) rotate(12deg);
        opacity: 0
    }
}

/* reduced motion */
@media (prefers-reduced-motion:reduce) {

    .stir,
    .bubbles circle,
    .chef .tongue,
    .code-block {
        animation: none !important
    }
}