:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --slate-900: #0f172a;
    --slate-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #e0e7ff, #f8fafc 45%);
    color: var(--slate-900);
}
header {
    padding: 28px 24px 0;
    display: flex;
    justify-content: center;
}
.header-inner {
    width: min(1100px, 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.brand img { width: 44px; height: 44px; }
.brand-title { font-weight: 800; letter-spacing: 0.2px; }
.brand-sub { color: var(--gray-600); font-size: 0.9rem; }

main {
    padding: 24px;
    display: flex;
    justify-content: center;
}
.container {
    width: min(1100px, 100%);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}
.card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    padding: 28px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
}
h1 {
    margin: 0 0 10px;
    font-size: 2.1rem;
    line-height: 1.1;
}
p {
    margin: 0 0 14px;
    color: var(--gray-600);
    line-height: 1.55;
    font-size: 1.02rem;
}
.bullets {
    margin: 12px 0 0;
    padding-left: 18px;
    color: var(--gray-600);
    line-height: 1.6;
}
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--gray-200);
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}
.cta.primary {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}
.cta.primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.cta.secondary {
    background: white;
    color: var(--slate-900);
}
.cta.secondary:hover { border-color: rgba(37, 99, 235, 0.35); }
.fine {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.shots {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.shot {
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 14px;
    background: var(--slate-100);
}
.shot strong { display: block; margin-bottom: 6px; }
.shot span { color: var(--gray-600); font-size: 0.92rem; line-height: 1.45; }

.donate-link {
    position: fixed;
    left: calc(16px + env(safe-area-inset-left));
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.35);
    background: var(--blue);
    color: white;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(10px);
}
.donate-link:hover {
    background: var(--blue-dark);
    border-color: rgba(37, 99, 235, 0.55);
    transform: translateY(-1px);
}
.donate-link:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 2px;
}

@media (max-width: 960px) {
    .container { grid-template-columns: 1fr; }
}
