@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    --brand: #7b001c;
    --brand-strong: #a51c30;
    --accent: #2f6b57;
    --ink: #201a1b;
    --paper: #f7f4f2;
    --grid: rgba(123, 0, 28, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--paper);
    background-image:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.7), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(47, 107, 87, 0.15), transparent 45%),
        linear-gradient(120deg, rgba(123, 0, 28, 0.06), transparent 50%);
    color: var(--ink);
    min-height: 100vh;
}

.bg-grid {
    background-image:
        linear-gradient(90deg, var(--grid) 1px, transparent 1px),
        linear-gradient(var(--grid) 1px, transparent 1px);
    background-size: 24px 24px;
}

.brand-title {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(123, 0, 28, 0.12);
    box-shadow: 0 20px 50px -40px rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
}

.tag {
    border: 1px solid rgba(47, 107, 87, 0.25);
    color: #2f6b57;
    background: rgba(47, 107, 87, 0.08);
}

.input-field {
    border: 1px solid rgba(59, 32, 36, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.input-field:focus {
    outline: 2px solid rgba(123, 0, 28, 0.3);
    outline-offset: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    color: #ffffff;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-secondary {
    border: 1px solid rgba(123, 0, 28, 0.25);
    color: var(--brand);
    background: rgba(255, 255, 255, 0.8);
}

.site-banner {
    background: linear-gradient(120deg, #1d0d58 0%, #2b0d74 55%, #1a0b4a 100%);
    position: relative;
    overflow: hidden;
}

.site-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.2), transparent 40%),
        radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.15), transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.site-banner > * {
    position: relative;
    z-index: 1;
}

.banner-strip {
    height: 6px;
    background: linear-gradient(90deg, #d0202a, #8c0e1d 40%, #d0202a 90%);
}
