/* ── Design tokens ── */
:root {
    --color-navy:      #002458;
    --color-navy-dark: #1C2C4F;
    --color-red:       #E01837;
    --color-gold:      #FFDE4F;
    --color-bg:        #F0F2F5;
    --color-surface:   #ffffff;
    --color-text:      #374151;
    --color-muted:     #6b7280;
    --color-border:    #D0D2D3;
}

/* ── Reset ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Base ── */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--color-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* ── Shared: gradient accent bar ── */
.card-accent {
    height: 5px;
    background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-red) 100%);
}
