/* RZOLUT AML Assessment - Single Page Application Styles */
/* WordPress/WPBakery Compatible - All classes prefixed with rz- */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Public+Sans:wght@400;500;600&display=swap');

/* ========== CSS Variables ========== */
:root {
    --rz-background: #f8fafc;
    --rz-foreground: #0f172a;
    --rz-card: #ffffff;
    --rz-card-foreground: #0f172a;
    --rz-primary: #2563eb;
    --rz-primary-hover: #1d4ed8;
    --rz-primary-foreground: #ffffff;
    --rz-secondary: #f1f5f9;
    --rz-secondary-foreground: #0f172a;
    --rz-muted: #f1f5f9;
    --rz-muted-foreground: #64748b;
    --rz-border: #e2e8f0;
    --rz-input: #e2e8f0;
    --rz-ring: #2563eb;
    --rz-radius: 0.5rem;
    --rz-risk-high: #059669;
    --rz-risk-moderate: #d97706;
    --rz-risk-low: #dc2626;
}

/* ========== Reset for WordPress ========== */
#rzolut-assessment-app {
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--rz-background);
    color: var(--rz-foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

#rzolut-assessment-app *, 
#rzolut-assessment-app *::before, 
#rzolut-assessment-app *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#rzolut-assessment-app h1, 
#rzolut-assessment-app h2, 
#rzolut-assessment-app h3, 
#rzolut-assessment-app h4, 
#rzolut-assessment-app h5, 
#rzolut-assessment-app h6 {
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1.2;
}

#rzolut-assessment-app a {
    color: inherit;
    text-decoration: none;
}

/* ========== Layout ========== */
.rz-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.rz-container-sm {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.rz-container-md {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== Sections (SPA Navigation) ========== */
.rz-section {
    display: none;
    min-height: 100vh;
}

.rz-section-active {
    display: block;
}

.rz-section-inner {
    padding: 5rem 0;
    border-top: 1px solid var(--rz-border);
}

.rz-section-white {
    background: var(--rz-card);
}

.rz-section-gray {
    background: #f1f5f9;
}

/* ========== Header ========== */
.rz-header {
    border-bottom: 1px solid var(--rz-border);
    background: var(--rz-card);
    position: sticky;
    top: 0;
    z-index: 50;
}

.rz-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.rz-logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
    color: var(--rz-foreground);
}

.rz-header-spacer {
    width: 5rem;
}

/* ========== Back Button Container ========== */
.rz-back-container {
    background: var(--rz-card);
    border-bottom: 1px solid var(--rz-border);
    padding: 0.75rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.rz-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--rz-muted-foreground);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    font-family: inherit;
}

.rz-back-link:hover {
    color: var(--rz-foreground);
}

/* ========== Buttons ========== */
.rz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s;
    text-decoration: none;
    font-family: inherit;
}

.rz-btn:active {
    transform: scale(0.97);
}

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

.rz-btn-primary {
    background-color: var(--rz-primary);
    color: var(--rz-primary-foreground);
}

.rz-btn-primary:hover:not(:disabled) {
    background-color: var(--rz-primary-hover);
}

.rz-btn-outline {
    background-color: transparent;
    border: 1px solid var(--rz-border);
    color: var(--rz-foreground);
}

.rz-btn-outline:hover:not(:disabled) {
    background-color: var(--rz-secondary);
}

.rz-btn-ghost {
    background-color: transparent;
    color: var(--rz-muted-foreground);
}

.rz-btn-ghost:hover:not(:disabled) {
    background-color: var(--rz-secondary);
    color: var(--rz-foreground);
}

.rz-btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    height: 3rem;
}

.rz-btn-full {
    width: 100%;
}

/* ========== Cards ========== */
.rz-card {
    background: var(--rz-card);
    border: 1px solid var(--rz-border);
    border-radius: var(--rz-radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.rz-card:hover {
    border-color: #cbd5e1;
}

.rz-card-padding {
    padding: 2rem;
}

/* ========== Form Elements ========== */
.rz-form-group {
    margin-bottom: 1.5rem;
}

.rz-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.rz-required {
    color: var(--rz-risk-low);
}

.rz-optional {
    color: var(--rz-muted-foreground);
    font-weight: 400;
}

.rz-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--rz-border);
    border-radius: var(--rz-radius);
    background: var(--rz-card);
    color: var(--rz-foreground);
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.rz-form-input:focus {
    outline: none;
    border-color: var(--rz-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.rz-form-input::placeholder {
    color: var(--rz-muted-foreground);
}

.rz-form-header {
    margin-bottom: 2rem;
}

.rz-form-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rz-form-header p {
    color: var(--rz-muted-foreground);
    font-size: 0.875rem;
}

.rz-form-disclaimer {
    font-size: 0.75rem;
    color: var(--rz-muted-foreground);
    text-align: center;
    margin-top: 1rem;
}

.rz-form-container {
    width: 100%;
    max-width: 28rem;
}

/* ========== Progress Bar ========== */
.rz-progress-wrapper {
    margin-bottom: 2rem;
}

.rz-progress-container {
    border-bottom: 1px solid var(--rz-border);
    background: var(--rz-card);
    padding: 1rem 1.5rem;
}

.rz-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.rz-progress-label {
    color: var(--rz-primary);
    font-weight: 500;
}

.rz-progress-step {
    color: var(--rz-muted-foreground);
}

.rz-progress-bar {
    height: 0.375rem;
    background: var(--rz-secondary);
    border-radius: 9999px;
    overflow: hidden;
}

.rz-progress-fill {
    height: 100%;
    background: var(--rz-primary);
    border-radius: 9999px;
    transition: width 0.3s ease;
}

.rz-progress-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--rz-muted-foreground);
}

/* ========== Centered Layout ========== */
.rz-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    padding: 3rem 1.5rem;
}

/* ========== Hero Section ========== */
.rz-hero {
    padding: 5rem 0 8rem;
    position: relative;
}

.rz-hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.rz-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .rz-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.rz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1d4ed8;
    margin-bottom: 1.5rem;
}

.rz-hero-badge-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 9999px;
    background: var(--rz-primary);
    animation: rz-pulse 2s infinite;
}

@keyframes rz-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.rz-hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--rz-foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .rz-hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .rz-hero-title {
        font-size: 3.75rem;
    }
}

.rz-hero-subtitle {
    font-size: 1rem;
    color: var(--rz-muted-foreground);
    margin-bottom: 2rem;
    max-width: 36rem;
}

@media (min-width: 1024px) {
    .rz-hero-subtitle {
        font-size: 1.125rem;
    }
}

.rz-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .rz-hero-cta {
        flex-direction: row;
        align-items: center;
    }
}

.rz-hero-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--rz-muted-foreground);
}

.rz-hero-visual {
    display: none;
    position: relative;
}

@media (min-width: 1024px) {
    .rz-hero-visual {
        display: block;
    }
}

.rz-hero-visual-glow {
    position: absolute;
    inset: -1rem;
    background: rgba(191, 219, 254, 0.3);
    border-radius: 1rem;
    filter: blur(40px);
}

.rz-hero-card {
    position: relative;
    background: var(--rz-card);
    border: 1px solid var(--rz-border);
    border-radius: 0.75rem;
    padding: 2rem;
}

.rz-hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--rz-muted-foreground);
    margin-bottom: 1.5rem;
}

.rz-hero-card-progress {
    height: 0.5rem;
    background: #e2e8f0;
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.rz-hero-card-progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(to right, var(--rz-primary), #60a5fa);
    border-radius: 9999px;
}

.rz-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.rz-hero-stat {
    padding: 1rem;
    background: var(--rz-background);
    border: 1px solid var(--rz-border);
    border-radius: 0.5rem;
}

.rz-hero-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rz-foreground);
}

.rz-hero-stat-value.rz-green { color: var(--rz-risk-high); }
.rz-hero-stat-value.rz-amber { color: var(--rz-risk-moderate); }

.rz-hero-stat-label {
    font-size: 0.75rem;
    color: var(--rz-muted-foreground);
    margin-top: 0.25rem;
}

/* ========== Section Titles ========== */
.rz-section-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .rz-section-title {
        font-size: 1.875rem;
    }
}

.rz-section-subtitle {
    text-align: center;
    color: var(--rz-muted-foreground);
    max-width: 42rem;
    margin: 0 auto 4rem;
}

/* ========== Feature Grid ========== */
.rz-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .rz-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rz-feature-card {
    padding: 1.5rem;
}

.rz-feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.rz-feature-icon.rz-blue { background: #eff6ff; color: var(--rz-primary); }
.rz-feature-icon.rz-amber { background: #fffbeb; color: var(--rz-risk-moderate); }
.rz-feature-icon.rz-green { background: #ecfdf5; color: var(--rz-risk-high); }

.rz-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rz-feature-description {
    font-size: 0.875rem;
    color: var(--rz-muted-foreground);
}

/* ========== Credibility ========== */
.rz-credibility-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .rz-credibility-card {
        flex-direction: row;
        text-align: left;
        padding: 3rem;
    }
}

.rz-credibility-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rz-credibility-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rz-credibility-text {
    color: var(--rz-muted-foreground);
}

.rz-credibility-highlight {
    color: var(--rz-foreground);
    font-weight: 600;
}

/* ========== Footer ========== */
.rz-footer {
    border-top: 1px solid var(--rz-border);
    background: var(--rz-card);
    padding: 2rem 0;
}

.rz-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .rz-footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.rz-footer-logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--rz-muted-foreground);
}

.rz-footer-copyright {
    font-size: 0.875rem;
    color: var(--rz-muted-foreground);
}

/* ========== Assessment ========== */
.rz-assessment-container {
    min-height: calc(100vh - 145px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.rz-assessment-card {
    width: 100%;
    max-width: 42rem;
}

.rz-assessment-welcome {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--rz-muted-foreground);
}

.rz-assessment-welcome span {
    color: var(--rz-foreground);
    font-weight: 500;
}

.rz-assessment-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: var(--rz-secondary);
    border: 1px solid var(--rz-border);
    font-size: 0.75rem;
    color: var(--rz-muted-foreground);
    margin-bottom: 1.5rem;
}

.rz-assessment-hint-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 9999px;
    background: var(--rz-primary);
}

.rz-assessment-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--rz-foreground);
    margin-bottom: 2rem;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .rz-assessment-question {
        font-size: 1.5rem;
    }
}

.rz-assessment-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.rz-assessment-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--rz-border);
}

/* ========== Option Cards ========== */
.rz-option-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--rz-card);
    border: 1px solid var(--rz-border);
    border-radius: var(--rz-radius);
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, transform 0.15s;
    text-align: left;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
}

.rz-option-card:hover {
    background: var(--rz-background);
    border-color: #cbd5e1;
}

.rz-option-card.rz-selected {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.5);
}

.rz-option-card:active {
    transform: scale(0.99);
}

.rz-option-key {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--rz-secondary);
    color: var(--rz-muted-foreground);
}

.rz-option-card.rz-selected .rz-option-key {
    background: var(--rz-primary);
    color: var(--rz-primary-foreground);
}

.rz-option-text {
    padding-top: 0.25rem;
    color: #374151;
}

.rz-option-card.rz-selected .rz-option-text {
    color: var(--rz-foreground);
}

/* ========== Results ========== */
.rz-results-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.rz-results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.rz-results-subtitle {
    color: var(--rz-muted-foreground);
    margin-bottom: 0.5rem;
}

.rz-results-title {
    font-size: 1.875rem;
}

@media (min-width: 640px) {
    .rz-results-title {
        font-size: 2.25rem;
    }
}

.rz-results-footer-note {
    margin-top: 3rem;
    text-align: center;
}

.rz-results-footer-note p {
    font-size: 0.875rem;
    color: var(--rz-muted-foreground);
}

.rz-results-start-over {
    text-align: center;
    margin-top: 1.5rem;
}

/* ========== Meter ========== */
.rz-meter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .rz-meter-container {
        flex-direction: row;
    }
}

.rz-meter-visual {
    position: relative;
    width: 16rem;
    height: 16rem;
    flex-shrink: 0;
}

.rz-meter-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-135deg);
}

.rz-meter-bg {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 16;
    stroke-linecap: round;
}

.rz-meter-fill {
    fill: none;
    stroke-width: 16;
    stroke-linecap: round;
    transition: stroke-dasharray 1s ease;
}

.rz-meter-fill.rz-high { stroke: var(--rz-risk-high); }
.rz-meter-fill.rz-moderate { stroke: var(--rz-risk-moderate); }
.rz-meter-fill.rz-low { stroke: var(--rz-risk-low); }

.rz-meter-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rz-meter-score {
    font-size: 3rem;
    font-weight: 700;
}

.rz-meter-score.rz-high { color: var(--rz-risk-high); }
.rz-meter-score.rz-moderate { color: var(--rz-risk-moderate); }
.rz-meter-score.rz-low { color: var(--rz-risk-low); }

.rz-meter-label {
    font-size: 0.875rem;
    color: var(--rz-muted-foreground);
}

.rz-meter-info {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .rz-meter-info {
        text-align: left;
    }
}

.rz-meter-band {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .rz-meter-band {
        justify-content: flex-start;
    }
}

.rz-meter-band-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.rz-meter-band-title.rz-high { color: var(--rz-risk-high); }
.rz-meter-band-title.rz-moderate { color: var(--rz-risk-moderate); }
.rz-meter-band-title.rz-low { color: var(--rz-risk-low); }

.rz-meter-description {
    color: var(--rz-muted-foreground);
    margin-bottom: 1.5rem;
}

.rz-meter-breakdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.rz-breakdown-item {
    padding: 0.75rem;
    background: var(--rz-background);
    border: 1px solid var(--rz-border);
    border-radius: 0.5rem;
}

.rz-breakdown-label {
    font-size: 0.75rem;
    color: var(--rz-muted-foreground);
    margin-bottom: 0.25rem;
}

.rz-breakdown-value {
    font-size: 0.875rem;
    color: var(--rz-muted-foreground);
}

/* ========== Insights ========== */
.rz-insights-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.rz-insight-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--rz-background);
    border: 1px solid var(--rz-border);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.rz-insight-number {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rz-primary);
}

.rz-insight-title {
    font-weight: 500;
    color: var(--rz-foreground);
    margin-bottom: 0.25rem;
}

.rz-insight-text {
    font-size: 0.875rem;
    color: var(--rz-muted-foreground);
}

/* ========== CTA Grid ========== */
.rz-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .rz-cta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rz-cta-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.rz-cta-card {
    background: var(--rz-card);
    border: 1px solid var(--rz-border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.rz-cta-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.rz-cta-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.rz-cta-icon.rz-blue { background: #eff6ff; color: var(--rz-primary); }
.rz-cta-icon.rz-green { background: #ecfdf5; color: var(--rz-risk-high); }
.rz-cta-icon.rz-amber { background: #fffbeb; color: var(--rz-risk-moderate); }

.rz-cta-title {
    font-weight: 600;
    color: var(--rz-foreground);
    margin-bottom: 0.5rem;
}

.rz-cta-description {
    font-size: 0.875rem;
    color: var(--rz-muted-foreground);
    margin-bottom: 1rem;
}

/* ========== Toast ========== */
.rz-toast-container {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.rz-toast {
    background: var(--rz-card);
    border: 1px solid var(--rz-border);
    border-radius: var(--rz-radius);
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    animation: rz-slideIn 0.3s ease;
}

.rz-toast.rz-success {
    border-color: var(--rz-risk-high);
}

.rz-toast.rz-error {
    border-color: var(--rz-risk-low);
}

@keyframes rz-slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Animation ========== */
.rz-animate-fade-in {
    animation: rz-fadeIn 0.4s ease-out forwards;
}

@keyframes rz-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Margin Utilities for Cards ========== */
#meterCard {
    margin-bottom: 2rem;
}

#insightsCard {
    margin-bottom: 2rem;
}
