* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #eeeeea;
    --surface: rgba(255, 255, 255, 0.70);
    --surface-solid: #ffffff;

    --text: #101010;
    --muted: #5f5f5f;
    --line: rgba(16, 16, 16, 0.12);

    --accent: #d9623a;
    --accent-strong: #c5542f;

    --shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    --radius: 18px;
    --radius-sm: 12px;

    --container: 1100px;
}

body {
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
    line-height: 1.5;
    background: var(--bg);
    color: var(--text);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body::before,
body::after {
    content: '';
    position: fixed;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

body::before {
    background-image: url('/static/images/retriver_2.png');
    bottom: 0;
    left: 0;
    width: 540px;
    height: 540px;
    z-index: -1;
}

body::after {
    background-image: url('/static/images/mops.png');
    top: 0;
    right: 0;
    width: 473px;
    height: 473px;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 28px 20px 56px;
    position: relative;
    z-index: 1;
}

.content {
    background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.58));
    border: 1px solid var(--line);
    padding: 34px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 1;
}

h1 {
    font-family: "Montserrat", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: clamp(34px, 4.2vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.045em;
    font-weight: 900;
    margin-bottom: 14px;
    text-transform: uppercase;
}

h2 {
    font-family: "Montserrat", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 20px;
    letter-spacing: -0.02em;
    font-weight: 900;
    margin-top: 22px;
    margin-bottom: 10px;
}

h3 {
    font-family: "Montserrat", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    letter-spacing: -0.01em;
    font-weight: 900;
    margin-top: 18px;
    margin-bottom: 10px;
}

p {
    margin: 10px 0;
}

a {
    color: var(--text);
    text-underline-offset: 3px;
}

a:hover {
    text-decoration-thickness: 2px;
}

.muted {
    color: var(--muted);
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
}

.section {
    margin-top: 18px;
}

.stack > * + * {
    margin-top: 12px;
}

.list {
    padding-left: 18px;
}

.list li {
    margin: 8px 0;
}

.mt-12 {
    margin-top: 12px;
}
