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

html, body {
    font-family: var(--brand-font);
    color: var(--text-primary);
    background: var(--bg-page);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Auth card (login, register, forgot password) */
.auth-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 40px 32px;
    width: 100%;
    max-width: 400px;
}

.auth-brand {
    text-align: center;
    margin-bottom: 24px;
}

.auth-logo {
    font-size: 3rem;
    display: block;
    margin-bottom: 8px;
}

.auth-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-primary-dark);
}

.auth-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.auth-links {
    margin-top: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-links a {
    color: var(--brand-primary);
    text-decoration: none;
    font-size: 0.85rem;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Auth tabs */
.auth-tabs {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 16px;
    gap: 0;
}

.auth-tab {
    flex: 1;
    padding: 10px 8px;
    border: none;
    background: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
}

.auth-tab:hover {
    color: var(--text-primary);
}

.auth-tab.active {
    color: var(--brand-primary);
    border-bottom-color: var(--brand-primary);
}

/* Social login */
.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.btn-social {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.btn-social:hover:not(:disabled) {
    background: var(--bg-page);
    border-color: var(--text-secondary);
}

.btn-social:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
}

.btn-google .social-icon { background: #DB4437; }
.btn-apple .social-icon { background: #000000; }
.btn-facebook .social-icon { background: #1877F2; }

.social-coming-soon {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 12px;
}

/* Forms */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: border-color 0.15s;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.form-hint {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, opacity 0.15s;
    text-decoration: none;
}

.btn-primary {
    width: 100%;
    background: var(--brand-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--brand-primary-dark);
}

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

/* Alerts */
.alert {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.alert-error {
    background: #FFEBEE;
    color: var(--error);
    border: 1px solid #FFCDD2;
}

.alert-success {
    background: var(--brand-primary-light);
    color: var(--success);
    border: 1px solid #C8E6C9;
}

/* Dashboard */
.dashboard {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.greeting {
    font-size: 1.4rem;
    font-weight: 700;
}

.loading {
    text-align: center;
    padding: 48px 0;
    color: var(--text-secondary);
}

/* Balance card */
.balance-card {
    background: var(--brand-gradient);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    color: white;
}

.balance-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 700;
    margin: 4px 0 12px;
    color: white;
}

.balance-amount.negative {
    color: #FFCDD2;
}

.balance-status {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

.status-badge {
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.status-badge.warning {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.status-badge.stop {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.billing-info {
    color: rgba(255, 255, 255, 0.75);
}

/* Sections */
.section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-primary-dark);
    padding-left: 10px;
    border-left: 3px solid var(--brand-primary);
}

/* Collections scroll */
.collections-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.collection-card {
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 16px;
    min-width: 140px;
    border-left: 4px solid var(--border);
}

.collection-card.waste {
    border-left-color: #424242;
}

.collection-card.recycling {
    border-left-color: var(--brand-primary);
}

.collection-card.compost {
    border-left-color: #795548;
}

.collection-card.glass {
    border-left-color: #1565C0;
}

.collection-type {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.collection-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.collection-bin {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Quick actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .quick-actions {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action-card {
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: box-shadow 0.15s, background 0.15s, transform 0.15s;
    font-size: 0.85rem;
    font-weight: 500;
}

.action-card:hover {
    box-shadow: var(--shadow-lg);
    background: var(--brand-primary-light);
    transform: translateY(-1px);
}

.action-icon {
    font-size: 1.6rem;
    color: var(--brand-primary);
}

/* Activity list */
.activity-list {
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.activity-type {
    font-weight: 600;
    font-size: 0.85rem;
}

.activity-ref {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.activity-amount {
    font-weight: 600;
    font-size: 0.9rem;
}

.activity-amount.positive {
    color: var(--success);
}

/* Sign-up Layout */
.signup-layout { min-height: 100vh; background: var(--bg-page); }
.signup-header { padding: 16px 24px; background: white; border-bottom: 1px solid var(--border); display: flex; align-items: center; }
.signup-logo { font-size: 1.5rem; font-weight: 700; color: var(--brand-primary); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.signup-leaf { width: 28px; height: auto; }
.signup-main { max-width: 720px; margin: 0 auto; padding: 24px 16px; }

/* Step Indicator */
.step-indicator { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 32px; flex-wrap: wrap; }
.step { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 60px; }
.step-number { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 600; border: 2px solid var(--border); color: var(--text-secondary); background: white; }
.step-label { font-size: 0.75rem; color: var(--text-secondary); white-space: nowrap; }
.step-active .step-number { border-color: var(--brand-primary); background: var(--brand-primary); color: white; }
.step-active .step-label { color: var(--brand-primary); font-weight: 600; }
.step-complete .step-number { border-color: var(--success); background: var(--success); color: white; }
.step-connector { width: 40px; height: 2px; background: var(--border); margin: 0 4px; align-self: flex-start; margin-top: 15px; }
.connector-complete { background: var(--success); }

/* Sign-up Cards (Plan/Bin selection) */
.signup-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 16px 0; }
.signup-card { background: white; border: 2px solid var(--border); border-radius: var(--radius); padding: 20px; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; }
.signup-card:hover { border-color: var(--brand-primary-light); }
.signup-card.selected { border-color: var(--brand-primary); box-shadow: var(--shadow); }
.signup-card .card-name { font-size: 1.125rem; font-weight: 600; margin-bottom: 8px; }
.signup-card .card-description { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 12px; }
.signup-card .card-price { font-size: 1.5rem; font-weight: 700; color: var(--brand-primary); }
.signup-card .card-price-period { font-size: 0.875rem; color: var(--text-secondary); }
.signup-card .card-price-original { text-decoration: line-through; color: var(--text-secondary); font-size: 1rem; margin-right: 8px; }
.signup-card .card-included { display: inline-block; background: var(--brand-primary-light); color: var(--brand-primary); padding: 2px 8px; border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 600; }
.signup-card .card-addon-price { font-size: 0.875rem; color: var(--text-secondary); }

/* Bin colour indicators */
.bin-colour { width: 24px; height: 24px; border-radius: 4px; display: inline-block; margin-right: 8px; vertical-align: middle; }
.bin-colour-black { background: #333; }
.bin-colour-green { background: #27ae60; }
.bin-colour-brown { background: #8b4513; }
.bin-colour-blue { background: #2980b9; }

/* Sign-up Form */
.signup-form { background: white; border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.signup-actions { display: flex; gap: 12px; margin-top: 24px; }
.signup-actions .btn-back { background: white; color: var(--text-primary); border: 1px solid var(--border); padding: 12px 24px; border-radius: var(--radius); cursor: pointer; font-size: 0.875rem; }
.signup-actions .btn-next { flex: 1; }

/* Offer Banner */
.offer-banner { background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: var(--radius); padding: 12px 16px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.offer-banner .offer-icon { font-size: 1.25rem; }
.offer-banner .offer-text { font-size: 0.875rem; color: #2e7d32; }
.offer-error { color: var(--error); font-size: 0.875rem; margin-top: 4px; }

/* Field validation error */
.field-error { color: var(--error); font-size: 0.8rem; margin-top: 4px; }

/* Payment method selector */
.payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.payment-method-card { background: white; border: 2px solid var(--border); border-radius: var(--radius); padding: 16px; cursor: pointer; text-align: center; transition: border-color 0.2s; }
.payment-method-card:hover { border-color: var(--brand-primary-light); }
.payment-method-card.selected { border-color: var(--brand-primary); background: var(--brand-primary-light); }
.payment-method-card .method-icon { font-size: 1.5rem; margin-bottom: 4px; }
.payment-method-card .method-name { font-weight: 600; font-size: 0.875rem; }

/* Payment form fields */
.payment-form { margin: 20px 0; }
.payment-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consent-group { display: flex; align-items: flex-start; gap: 8px; margin: 16px 0; }
.consent-group input[type="checkbox"] { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--brand-primary); }
.consent-group label { font-size: 0.875rem; color: var(--text-secondary); }

/* Consent Banner (cookie overlay) */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    animation: consent-slide-up 0.3s ease-out;
}

@keyframes consent-slide-up {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.consent-banner-text {
    flex: 1;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: 800px;
}

.consent-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.consent-btn {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.consent-btn-accept {
    background: var(--brand-primary, #4CAF50);
    color: white;
}

.consent-btn-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.consent-btn-accept:hover { opacity: 0.9; }
.consent-btn-decline:hover { border-color: white; }

@media (max-width: 600px) {
    .consent-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .consent-banner-actions {
        width: 100%;
    }

    .consent-btn {
        flex: 1;
        text-align: center;
    }
}

/* Order Summary (Payment step placeholder) */
.order-summary { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; }
.order-summary h3 { margin: 0 0 16px; font-size: 1.125rem; }
.order-line { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
.order-line:last-child { border-bottom: none; }
.order-total { font-weight: 700; font-size: 1.125rem; border-top: 2px solid var(--border); padding-top: 12px; margin-top: 8px; }
.order-discount { color: var(--success); }

/* Complete page */
.signup-complete { text-align: center; padding: 40px 20px; }
.signup-complete .success-icon { font-size: 3rem; margin-bottom: 16px; }
.signup-complete h2 { margin-bottom: 8px; }
.signup-complete .account-details { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin: 24px auto; max-width: 400px; text-align: left; }
.signup-complete .detail-row { display: flex; justify-content: space-between; padding: 8px 0; }
.signup-complete .detail-label { color: var(--text-secondary); }
.signup-complete .detail-value { font-weight: 600; }

/* Signup link on login */
.signup-link { text-align: center; margin-top: 16px; font-size: 0.875rem; color: var(--text-secondary); }
.signup-link a { color: var(--brand-primary); font-weight: 600; }

.version-label { text-align: center; margin-top: 1rem; font-size: 0.75rem; color: var(--text-secondary); opacity: 0.5; }

/* Hero section */
.signup-hero { text-align: center; padding: 40px 20px; }
.signup-hero h1 { font-size: 2rem; margin-bottom: 12px; }
.signup-hero p { font-size: 1.125rem; color: var(--text-secondary); margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.signup-hero .offer-input-group { display: flex; gap: 8px; max-width: 360px; margin: 16px auto 0; }
.signup-hero .offer-input-group input { flex: 1; }
.signup-hero .offer-input-group button { white-space: nowrap; }

/* ── Icon & Spinner ── */
.icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.spin {
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    color: var(--text-secondary);
}

.loading-message {
    font-size: 14px;
}

/* Dev Login */
.dev-login-section {
    padding: 16px;
    margin-bottom: 12px;
    background: #fffbe6;
    border: 1px dashed #e6c200;
    border-radius: var(--radius-sm);
}

.dev-login-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8a7200;
    margin-bottom: 10px;
}

.dev-login-dropdown-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.dev-login-select {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #d4c88a;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    appearance: auto;
}

.dev-login-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dev-login-go {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: #00A651;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.dev-login-go:hover:not(:disabled) {
    opacity: 0.85;
}

.dev-login-go:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dev-login-hint {
    font-size: 11px;
    color: #8a7200;
    font-family: monospace;
}

/* Toast notifications */
.toast-container {
    position: fixed;
    bottom: 90px; /* Above bottom nav on mobile */
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc(100% - 32px);
    max-width: 400px;
    pointer-events: none;
}

@media (min-width: 768px) {
    .toast-container {
        bottom: 24px;
    }
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    pointer-events: auto;
    cursor: pointer;
    animation: slideInUp 0.3s ease-out;
}

.toast-success {
    background: var(--brand-primary);
    color: white;
}

.toast-error {
    background: var(--error);
    color: white;
}

.toast-info {
    background: #1565C0;
    color: white;
}

.toast-exiting {
    animation: slideOutDown 0.3s ease-in forwards;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* ============================================================
   Phase 2: Animations, spacing, skeleton, empty-state polish
   Issue #288
   ============================================================ */

/* Spacing scale (4px base) */
:root {
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 32px;
    --space-8: 40px;
    --space-9: 48px;
    --space-10: 64px;
    --accent-warm: #FF8F50;
    --accent-warm-light: #FFD0B0;
    --focus-ring: 0 0 0 3px rgba(26, 122, 74, 0.3);
}

/* Focus ring */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Page entrance animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-content,
.form-container,
.signup-container {
    animation: fadeInUp 0.3s ease-out;
}

/* Skeleton shimmer animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 6px;
}

.skeleton-text {
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    height: 1em;
    margin-bottom: 8px;
}

.skeleton-card {
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 12px;
    min-height: 80px;
}

/* Hover lift for cards (desktop only) */
@media (hover: hover) {
    .collection-card:hover,
    .summary-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.1));
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
}

/* Button press feedback */
button:active:not(:disabled),
.btn-primary:active:not(:disabled),
.btn-secondary:active:not(:disabled) {
    transform: scale(0.97);
}

/* Bottom nav tap feedback */
.bottom-nav button:active,
.bottom-nav a:active {
    transform: scale(0.9);
}

/* Icon utility */
.icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Empty state */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-8, 40px) var(--space-4, 16px);
    font-style: normal;
}

.empty-state-icon {
    margin-bottom: var(--space-4, 16px);
    color: var(--text-secondary, #666);
    opacity: 0.6;
}

.empty-state-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a2e);
    margin-bottom: var(--space-2, 8px);
}

.empty-state-text {
    font-size: 0.9rem;
    color: var(--text-secondary, #666);
    max-width: 280px;
    line-height: 1.5;
}

/* ============================================================
   Route transition animations (Phase A)
   Issue #298
   ============================================================ */

.page-transition-wrapper {
    animation: fadeInUp 0.25s ease-out;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .page-transition-wrapper,
    .page-content,
    .form-container,
    .signup-container {
        animation: none;
    }

    .collection-card,
    .summary-card {
        transition: none;
    }
}
