@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    color-scheme: light;
    --ink: #10131a;
    --muted: #667085;
    --paper: #f6f5f1;
    --white: #ffffff;
    --line: rgba(16, 19, 26, 0.12);
    --orange: #ff5a36;
    --lime: #d9ff65;
    --navy: #121d35;
    --radius-lg: 30px;
    --radius-md: 18px;
    --shadow: 0 24px 80px rgba(20, 24, 35, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: 'Manrope', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

button,
input,
select {
    font: inherit;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--orange);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(16, 19, 26, 0.2);
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(255, 90, 54, 0.4);
    outline-offset: 3px;
}

.button--orange {
    background: var(--orange);
}

.button--wide {
    width: 100%;
}

.notice {
    margin: 0 0 20px;
    padding: 14px 16px;
    border: 1px solid #f1c96d;
    border-radius: 12px;
    background: #fff8df;
    color: #684b08;
    font-size: 14px;
}

.lab-home {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 90, 54, 0.2), transparent 24%),
        radial-gradient(circle at 90% 80%, rgba(217, 255, 101, 0.45), transparent 25%),
        #111725;
    color: #fff;
}

.lab-shell {
    width: min(980px, calc(100% - 40px));
    margin-inline: auto;
    padding: clamp(80px, 12vw, 150px) 0;
}

.lab-shell h1 {
    max-width: 780px;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.lab-intro {
    max-width: 600px;
    margin: 28px 0 50px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 17px;
    line-height: 1.7;
}

.lab-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.lab-card {
    display: flex;
    min-height: 290px;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    border-radius: 30px;
    color: var(--ink);
    text-decoration: none;
    transition: transform 180ms ease;
}

.lab-card:hover {
    transform: translateY(-5px) rotate(-0.5deg);
}

.lab-card span,
.lab-card small {
    font-weight: 700;
}

.lab-card strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.lab-card--orange {
    background: var(--orange);
}

.lab-card--lime {
    background: var(--lime);
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .lab-grid {
        grid-template-columns: 1fr;
    }

    .lab-card {
        min-height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

