:root {
    --color-blue: #0094cf;
    --color-blue-soft: #6ebde5;
    --color-green: #a0c32c;
    --color-green-soft: #d7e8a7;
    --color-gold: #dfb853;
    --color-gray-dark: #555555;
    --color-gray: #8f8f8f;
    --color-gray-light: #d9d9d9;
    --color-surface: rgba(255, 255, 255, 0.84);
    --color-surface-strong: rgba(255, 255, 255, 0.92);
    --color-text: #163244;
    --color-text-muted: rgba(22, 50, 68, 0.72);
    --shadow-soft: 0 24px 60px rgba(0, 73, 112, 0.12);
    --shadow-card: 0 20px 40px rgba(0, 108, 156, 0.14);
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 18px;
    --transition: 220ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgba(0, 148, 207, 0.17), transparent 34%),
        radial-gradient(circle at top right, rgba(160, 195, 44, 0.18), transparent 24%),
        linear-gradient(180deg, #f6fbfe 0%, #ffffff 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.page-shell {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

.page-shell__glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.6;
    pointer-events: none;
    animation: drift 12s ease-in-out infinite;
}

.page-shell__glow--blue {
    top: -12rem;
    right: -8rem;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 148, 207, 0.2);
}

.page-shell__glow--green {
    bottom: -10rem;
    left: -8rem;
    width: 22rem;
    height: 22rem;
    background: rgba(160, 195, 44, 0.16);
    animation-delay: -5s;
}

.page-shell__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 148, 207, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(160, 195, 44, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
    pointer-events: none;
}

@keyframes drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, 18px, 0) scale(1.08);
    }
}
