/* The Weekly Dividend — placeholder landing styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --ink: #0d2b25;
    --ink-2: #08433a;
    --cream: #f4f1e8;
    --muted: #b9c9c2;
    --gold: #e3b341;
}

html, body { height: 100%; }

body {
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    color: var(--cream);
    background: radial-gradient(120% 120% at 50% 0%, var(--ink-2) 0%, var(--ink) 55%, #061a16 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.hero {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    text-align: center;
}

.card {
    max-width: 40rem;
    animation: rise 0.7s ease-out both;
}

.eyebrow {
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    color: var(--gold);
    margin-bottom: 1.4rem;
}

.brand {
    font-size: clamp(2.4rem, 7vw, 4.25rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.rule {
    display: block;
    width: 3.5rem;
    height: 2px;
    margin: 1.6rem auto;
    background: var(--gold);
    opacity: 0.85;
}

.tagline {
    font-size: clamp(1.05rem, 2.4vw, 1.3rem);
    line-height: 1.6;
    color: var(--cream);
    max-width: 32rem;
    margin: 0 auto;
}

.cta {
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink);
    background: var(--gold);
    border: none;
    border-radius: 999px;
    padding: 0.85rem 2.4rem;
    margin-top: 2.2rem;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta:hover {
    background: #efc35c;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta:active {
    transform: translateY(0);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.cta:focus-visible {
    outline: 2px solid var(--cream);
    outline-offset: 3px;
}

.note {
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 0.95rem;
    color: var(--muted);
    margin-top: 1.5rem;
}

.foot {
    margin-top: 3.5rem;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: var(--muted);
}

@keyframes rise {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .card { animation: none; }
}
