:root {
    /* Color Palette - Vibrant yet readable */
    --bg-color: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --card-bg: rgba(30, 41, 59, 0.7);
    --card-border: rgba(255, 255, 255, 0.1);
    
    --primary: #8b5cf6; /* Violet */
    --primary-glow: rgba(139, 92, 246, 0.4);
    --secondary: #3b82f6; /* Blue */
    --accent: #f43f5e; /* Rose */
    
    --success: #10b981;
    --success-bg: rgba(16, 185, 129, 0.15);
    --warning: #f59e0b;
    --warning-bg: rgba(245, 158, 11, 0.15);
    --danger: #ef4444;
    --danger-bg: rgba(239, 68, 68, 0.15);

    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.8);
}

body {
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(at 0% 0%, rgba(139, 92, 246, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.15) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    line-height: 1.2;
}

h2 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 0.5px;
}

.hero-title {
    color: #e2e8f0;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 3rem 1.5rem 2.5rem;
    text-align: center;
    overflow: hidden;
}

.hero-shell {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-banner {
    position: relative;
    width: 100%;
    padding: 3.5rem 2rem;
    border-radius: 24px;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.hero-bg-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Smaller tilt, natural aspect ratio, scaled down */
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 100%;
    max-width: 450px;
    height: auto;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-top: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite alternate;
}

.circle-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: -50px;
    right: -50px;
    animation: float 10s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(30px) scale(1.1); }
}

/* Layout Container */
.container {
    max-width: 1000px;
    width: 100%;
    min-width: 0;
    margin: 0 auto;
    padding: 0 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Card Styles */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    min-width: 0;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-header-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.card-body {
    padding: 1.5rem 2.5rem;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--card-border);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

a.badge {
    display: inline-block;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

a.badge:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.14);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.18),
        0 0 18px rgba(139, 92, 246, 0.35);
}

.sync-status {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 0.75rem;
    opacity: 0.8;
}

/* Meeting Section Specifics */
.announcement {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.meeting-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: rgba(0,0,0,0.2);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.meeting-details + .meeting-details {
    margin-top: 0.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.meeting-location-row,
.meeting-datetime-row,
.meeting-next-book-row {
    align-items: center;
    justify-content: space-between;
}

.detail-item .icon {
    font-size: 1.8rem;
    background: rgba(255,255,255,0.05);
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
}

.text-group {
    display: flex;
    flex-direction: column;
}

.text-group strong {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-group span,
.text-group > div {
    font-size: 1.6rem;
    font-weight: 600;
}

.meeting-map-btn,
.meeting-calendar-btn,
.meeting-cpl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

.meeting-calendar-btn {
    gap: 0.4rem;
}

.meeting-book-links,
.meeting-calendar-links {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    flex-shrink: 0;
}

.meeting-book-links .status-pill {
    text-align: center;
}

/* Table Styles */
.table-container {
    margin-top: 2rem;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    width: 100%;
}

.table-container-flush {
    margin-top: 0;
}

.book-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.book-table th, .book-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
}

.book-table th {
    background: rgba(0,0,0,0.3);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
}

.book-table tbody tr {
    border-top: 1px solid var(--card-border);
    transition: background 0.2s ease;
}

.book-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

.archive-panel {
    border: 1px solid var(--card-border);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.35);
    overflow: hidden;
}

.archive-summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.archive-summary::-webkit-details-marker {
    display: none;
}

.archive-summary:hover {
    background: rgba(255,255,255,0.08);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.18),
        0 0 18px rgba(139, 92, 246, 0.35);
}

.archive-summary-title {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    color: white;
}

.archive-summary-title::before {
    content: '▸';
    color: var(--primary);
    transition: transform 0.2s ease;
}

.archive-panel[open] .archive-summary-title::before {
    transform: rotate(90deg);
}

.archive-summary-copy {
    margin-top: 0.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.archive-table-container {
    margin: 0;
    border: 0;
    border-top: 1px solid var(--card-border);
    border-radius: 0;
}

.center-col {
    text-align: center !important;
}

.col-rank {
    width: 2.5rem;
}

.book-cell {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.book-cover {
    width: 60px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    background-color: rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.book-cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--card-border), rgba(255,255,255,0.05));
}

.book-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.book-title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

.book-author {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    margin-top: 0.2rem;
    letter-spacing: 0.5px;
}

.book-author-static {
    margin-top: 0;
}

.number-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.status-pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-high {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-med {
    background: var(--warning-bg);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-low {
    background: var(--danger-bg);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-neutral {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

a.status-link {
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

a.status-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.35);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.8),
        0 0 14px 3px rgba(255, 255, 255, 0.2),
        0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Next Book row on the homepage — mirrors a queue-table row layout. */
.next-book-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 0.4rem;
}

.next-book-row .book-cell {
    flex: 1 1 auto;
    min-width: 0;
}

/* Stacked Links cell — Past Books table */
.links-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
}

.links-stack .status-pill {
    text-align: center;
}

.amazon-link {
    background: rgba(255, 153, 0, 0.3);
    color: #ffb84d;
    border-color: rgba(255, 153, 0, 0.65);
}

.amazon-label {
    letter-spacing: 0.5px;
}

/* Amazon Associates disclosure marker — required to be clear & conspicuous next to each affiliate link. */
.amazon-ad-marker {
    margin-left: 0.35rem;
    font-size: 0.7em;
    font-weight: 600;
    letter-spacing: 0.3px;
    opacity: 0.75;
    text-transform: lowercase;
}

.link-arrow {
    font-size: 0.9em;
    margin-left: 0.3rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-shell {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.affiliate-disclosure {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-year {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

.heart {
    color: var(--accent);
    display: inline-block;
    animation: pump 1.5s infinite;
}

@keyframes pump {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Forms & Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.8rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.25);
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.85),
        0 0 20px 6px rgba(139, 92, 246, 0.7),
        0 12px 30px rgba(59, 130, 246, 0.5);
}

/* Action Row */
.action-row {
    text-align: center;
    margin: -0.25rem 0 0.25rem 0;
}

.action-row .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
}

.action-row .btn-primary span {
    font-size: 1.3rem;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.85),
        0 0 20px 6px rgba(139, 92, 246, 0.7),
        0 8px 20px var(--primary-glow);
}

.suggestion-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    flex: 1;
    padding-right: 3.2rem;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0.35rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background 0.2s ease;
}

.password-toggle:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
}

.eye-icon {
    width: 20px;
    height: 20px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.honeypot-group {
    display: none;
}

.form-message {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    margin-top: 0.5rem;
    opacity: 1;
    transition: opacity 0.3s ease;
    position: relative;
}

.form-message.hidden {
    display: none;
    opacity: 0;
}

.form-message-close {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    opacity: 0.6;
    transition: opacity 0.15s ease;
}

.form-message-close:hover {
    opacity: 1;
}

.form-message.success {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
    background: var(--danger-bg);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hidden {
    display: none !important;
}

.meeting-vote-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.vote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.95fr);
    gap: 2rem;
}

.vote-meta-card {
    height: fit-content;
}

.vote-meta-card .announcement {
    margin-bottom: 1rem;
}

.vote-ballot-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vote-book-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 130px;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.16);
}

/* Vote Page — Expandable Blurb */
.vote-blurb-panel {
    margin-top: 0.45rem;
}

.vote-blurb-summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: color 0.2s ease;
}

.vote-blurb-summary::-webkit-details-marker {
    display: none;
}

.vote-blurb-summary::before {
    content: '▸';
    transition: transform 0.2s ease;
}

.vote-blurb-panel[open] .vote-blurb-summary::before {
    transform: rotate(90deg);
}

.vote-blurb-summary:hover {
    color: white;
}

.vote-blurb-text {
    margin-top: 0.4rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.vote-rank-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.vote-rank-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vote-rank-group select {
    background: rgba(0, 0, 0, 0.26);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    color: white;
    font-family: var(--font-sans);
    font-size: 1rem;
}

.vote-rank-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
}

.vote-side-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    list-style: none;
}

.vote-side-list li {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}

.vote-side-list strong {
    color: var(--text-main);
}

.vote-options-group {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1rem 1.15rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    margin: 0;
}

.vote-options-group legend {
    padding: 0 0.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.vote-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.vote-option-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.vote-option-row:hover {
    background: rgba(255, 255, 255, 0.07);
}

.vote-option-label {
    color: var(--text-main);
}

.vote-closed-box {
    padding: 1.15rem 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vote-closed-box h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.vote-closed-box .announcement {
    margin-bottom: 0;
}

/* Join the Club Callout */
.join-callout {
    position: relative;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 200%;
    animation: callout-shimmer 6s ease-in-out infinite;
}

@keyframes callout-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.join-callout-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2.25rem;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.join-callout-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.join-callout-text {
    flex: 1;
    min-width: 0;
}

.join-callout-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.35rem;
}

.join-callout-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.join-callout-btn {
    flex-shrink: 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
}

/* Vote Admin Page */
.admin-ballot-info {
    margin-bottom: 2rem;
}

.admin-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.admin-stat-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.admin-stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.admin-stat-value {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    word-break: break-word;
}

.admin-stat-highlight {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-status-open {
    color: var(--success) !important;
}

.admin-status-closed {
    color: var(--text-muted) !important;
}

.admin-section-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

.admin-subsection-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.admin-section-block {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
}

.admin-section-block + .admin-section-block {
    margin-top: 0;
}

.admin-section-collapsible > summary {
    cursor: pointer;
    list-style: none;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.admin-section-collapsible > summary::-webkit-details-marker {
    display: none;
}

/* Disclosure chevron pinned to the far right of the summary bar. */
.admin-section-collapsible > summary::after {
    content: '';
    width: 0.55rem;
    height: 0.55rem;
    margin-left: auto;
    margin-right: 0.15rem;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.admin-section-collapsible[open] > summary::after {
    transform: rotate(225deg);
}

.admin-section-collapsible[open] > summary {
    margin-bottom: 1rem;
}

.admin-section-collapsible > summary > .badge {
    margin-left: auto;
}

.admin-add-disclosure {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 0.4rem 1rem;
    margin-bottom: 1.25rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.admin-add-disclosure[open] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.18);
    border-style: solid;
    padding: 0.6rem 1rem 1rem;
}

.admin-add-disclosure > summary {
    cursor: pointer;
    list-style: none;
    padding: 0.55rem 0.25rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    user-select: none;
}

.admin-add-disclosure > summary::-webkit-details-marker {
    display: none;
}

.admin-add-disclosure > summary:hover {
    color: var(--primary);
}

.admin-add-disclosure[open] > summary {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-note {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

#catalog-list {
    gap: 0.4rem;
}

.catalog-entry {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.16);
    transition: border-color 0.2s ease;
    overflow: hidden;
}

.catalog-entry:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.catalog-entry[open] {
    background: rgba(0, 0, 0, 0.22);
}

.catalog-entry-summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.5rem 0.85rem;
    user-select: none;
}

.catalog-entry-summary::-webkit-details-marker {
    display: none;
}

.catalog-entry-summary::after {
    content: '▶';
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform 0.15s ease;
}

.catalog-entry[open] > .catalog-entry-summary::after {
    transform: rotate(90deg);
}

.catalog-row-thumb {
    width: 36px;
    height: 54px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.catalog-row-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--card-border), rgba(255, 255, 255, 0.05));
}

.catalog-row-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
    flex: 1;
}

.catalog-row-title {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog-row-author {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog-entry-body {
    padding: 0.5rem 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.catalog-blurb-toggle {
    margin-top: 0.35rem;
}

.catalog-blurb-toggle > summary {
    cursor: pointer;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    user-select: none;
}

.catalog-blurb-toggle > summary::-webkit-details-marker {
    display: none;
}

.catalog-blurb-toggle > summary::before {
    content: '▶';
    display: inline-block;
    font-size: 0.65rem;
    transition: transform 0.15s ease;
}

.catalog-blurb-toggle[open] > summary::before {
    transform: rotate(90deg);
}

.catalog-blurb-toggle > summary:hover {
    color: var(--primary);
}

.catalog-blurb-text {
    margin-top: 0.4rem;
    margin-bottom: 0;
}

.ballot-open-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.75rem;
}

.admin-inline-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.admin-inline-actions-centered {
    justify-content: center;
}

.admin-secondary-btn {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.8rem 1.15rem;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.admin-secondary-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.admin-secondary-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ballot-builder-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.ballot-builder-wide {
    grid-column: 1 / -1;
}

.ballot-candidate-builder {
    margin-top: 1.5rem;
}

.ballot-candidate-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: end;
    margin-top: 0.9rem;
}

.ballot-candidate-select-wrap {
    margin-bottom: 0;
}

/* Location builder row: stack the name + optional map URL inputs in the first
   grid column so the Remove button stays aligned to the right. */
.ballot-location-fields {
    display: grid;
    gap: 0.6rem;
    min-width: 0;
}

/* "Ballot Results" group heading sits above the three result collapsibles. */
.admin-results-heading {
    margin: 0.5rem 0 1rem;
}

.admin-empty-state {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.16);
    border: 1px dashed rgba(255, 255, 255, 0.14);
    color: var(--text-muted);
}

.admin-submissions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-submission-card {
    background: rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s ease;
}

.admin-submission-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.admin-submission-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.admin-submission-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.admin-submission-number {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.25rem 0.65rem;
    border-radius: 8px;
}

.admin-submission-email {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
}

.admin-submission-time {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.admin-remove-btn {
    background: rgba(239, 68, 68, 0.12);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 0.45rem 1.1rem;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.admin-remove-btn:hover:not(:disabled) {
    background: rgba(239, 68, 68, 0.25);
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-1px);
}

.admin-remove-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.admin-submission-rankings {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.admin-rank-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.admin-rank-chip strong {
    color: var(--primary);
    margin-right: 0.25rem;
}

/* Admin — Blurb Editor */
.admin-blurb-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-blurb-entry {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 1.15rem 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.16);
    transition: border-color 0.2s ease;
}

.admin-blurb-entry:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.admin-blurb-entry.sortable-ghost {
    opacity: 0.4;
    background: rgba(139, 92, 246, 0.1);
    border: 1px dashed var(--primary);
}

.admin-drag-handle {
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    padding-right: 0.5rem;
}

.admin-drag-handle:active {
    cursor: grabbing;
}

.admin-drag-handle svg {
    width: 20px;
    height: 20px;
}

.admin-list-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: flex-end;
}

.admin-blurb-book-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-blurb-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    justify-content: center;
}

.admin-blurb-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-blurb-field textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: white;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    resize: vertical;
    min-height: 70px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.admin-blurb-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
}

.admin-blurb-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

/* Admin — Books Catalog */
.admin-toolbar-actions {
    display: flex;
    gap: 0.5rem;
}

.admin-secondary-btn-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.3);
}

.admin-secondary-btn-success:hover:not(:disabled) {
    background: rgba(16, 185, 129, 0.22);
    border-color: rgba(16, 185, 129, 0.5);
}

.admin-add-form {
    margin-top: 2rem;
}

.admin-dirty-indicator {
    color: var(--warning);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.admin-book-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.admin-book-meta .status-pill {
    padding: 0.2rem 0.65rem;
    font-size: 0.7rem;
}

.admin-book-availability strong {
    color: var(--text-main);
    font-weight: 700;
}

.admin-book-cpl-link {
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.admin-book-cpl-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.admin-book-asin {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

.admin-book-asin code {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.1rem 0.4rem;
    border-radius: 6px;
    font-size: 0.92em;
    margin-left: 0.25rem;
}

.admin-book-asin-missing {
    color: var(--warning);
}

.admin-ineligible-flag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.3);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-blurb-entry-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-remove-btn-move {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
}

.admin-remove-btn-move:hover:not(:disabled) {
    background: rgba(139, 92, 246, 0.2);
}

.admin-book-rank {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 0.4rem;
    letter-spacing: 0.3px;
}

/* Admin — Edit Book Inline Panel */
.admin-edit-btn {
    background: rgba(139, 92, 246, 0.12);
    color: var(--primary);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.45rem 1.1rem;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.admin-edit-btn:hover:not(:disabled) {
    background: rgba(139, 92, 246, 0.22);
    border-color: rgba(139, 92, 246, 0.55);
    transform: translateY(-1px);
}

.admin-edit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.admin-edit-panel {
    grid-column: 1 / -1;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.admin-edit-panel-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.85rem;
}

.admin-edit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.admin-edit-grid .form-group {
    gap: 0.3rem;
}

.admin-edit-grid label {
    font-size: 0.78rem;
}

.admin-edit-grid input {
    padding: 0.7rem 0.85rem;
    font-size: 0.95rem;
}

.admin-edit-current-asin {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.admin-edit-current-asin code {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.1rem 0.4rem;
    border-radius: 6px;
    font-size: 0.85em;
}

/* Admin — Consolidated console tabs */
.admin-tabs {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.admin-tab {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.admin-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.admin-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.admin-tab-panel {
    /* Each panel just controls its own visibility via .hidden. */
}

/* Responsive */
@media (max-width: 768px) {
    .card-header, .card-body { padding: 1.5rem; }
    .meeting-details { flex-direction: column; gap: 1rem; }
    .meeting-location-row,
    .meeting-datetime-row { align-items: stretch; }
    .container { gap: 1.5rem; }
    .hero { padding: 2rem 1rem; }
    .hero-banner { padding: 2.5rem 1.25rem; border-radius: 20px; }
    .hero-title { font-size: 2.4rem; }
    .subtitle { font-size: 1rem; letter-spacing: 1.5px; }
    footer { padding: 2.25rem 1rem; margin-top: 2rem; }
    .vote-layout { grid-template-columns: 1fr; }
    .vote-book-card { grid-template-columns: 1fr; }
    .meeting-vote-actions { flex-direction: column; }
    .join-callout-inner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    .join-callout-btn {
        width: 100%;
        justify-content: center;
    }
    .admin-stat-row { grid-template-columns: 1fr; }
    .admin-submission-header { flex-direction: column; align-items: flex-start; }
    .admin-toolbar { flex-direction: column; align-items: flex-start; }
    .ballot-builder-grid { grid-template-columns: 1fr; }
    .ballot-candidate-row { grid-template-columns: 1fr; }
    .admin-blurb-entry { grid-template-columns: 1fr; }
    .admin-edit-grid { grid-template-columns: 1fr; }
    .archive-summary {
        align-items: flex-start;
        flex-direction: column;
    }
    .meeting-map-btn,
    .meeting-calendar-btn,
    .meeting-cpl-btn {
        width: 100%;
        text-align: center;
    }
}

/* ---------- Confirmation modal (shared async confirm() replacement) ---------- */
.confirm-modal {
    /* Re-center: the global `* { margin: 0 }` reset cancels the UA dialog centering. */
    position: fixed;
    inset: 0;
    margin: auto;
    width: min(90vw, 440px);
    padding: 1.75rem;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    background: rgba(30, 41, 59, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-main);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.confirm-modal::backdrop {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.confirm-modal-title {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.confirm-modal-message {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    line-height: 1.5;
    white-space: pre-line; /* preserve \n\n breaks carried over from the old confirm() text */
}

.confirm-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.confirm-modal-actions button {
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--card-border);
    transition: background 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.confirm-modal-cancel {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
}

.confirm-modal-cancel:hover {
    background: rgba(255, 255, 255, 0.12);
}

.confirm-modal-confirm {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.confirm-modal-confirm:hover {
    filter: brightness(1.1);
}

/* Honor the OS "reduce motion" setting (vestibular/migraine accessibility,
   WCAG 2.3.3): neutralize the decorative animations — floating hero circles,
   the join-callout shimmer, the suggest-button pump — and shorten transitions
   for users who have opted out of motion. No effect for everyone else. */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
