/* ════════════════════════════════════════════════
   GreenCompliance AI  —  Premium UI  v3
   ════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

/* ── Design tokens ──────────────────────────────── */
:root {
    --green: #10b981;
    --green-d: #059669;
    --green-l: #34d399;
    --yellow: #fbbf24;
    --red: #f87171;
    --orange: #fb923c;
    --indigo: #a5b4fc;
    --text: #e5e7eb;
    --muted: #6b7280;
    --card: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --r-lg: 1.25rem;
    --r-md: 0.875rem;
    --r-sm: 0.5rem;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    --glow: 0 0 28px rgba(16, 185, 129, 0.35);
}

/* ── Base ───────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #060d12;
    background-image:
        radial-gradient(ellipse 70vw 55vh at 15% 10%, rgba(5, 150, 105, 0.1) 0%, transparent 65%),
        radial-gradient(ellipse 60vw 50vh at 85% 90%, rgba(4, 120, 87, 0.07) 0%, transparent 65%);
    min-height: 100vh;
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Layout wrapper ─────────────────────────────── */
.inner {
    max-width: 1024px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* ── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.3);
    border-radius: 3px;
}

/* ── Cards ──────────────────────────────────────── */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.card-accent {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.07), rgba(5, 150, 105, 0.04));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
}

/* ── Header ─────────────────────────────────────── */
.site-header {
    background: rgba(6, 13, 18, 0.88);
    border-bottom: 1px solid rgba(16, 185, 129, 0.12);
    backdrop-filter: blur(24px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--green), var(--green-d));
    border-radius: 0.75rem;
    box-shadow: var(--glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Gradient text ──────────────────────────────── */
.text-gradient {
    background: linear-gradient(135deg, var(--green-l) 0%, var(--green) 60%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero tag ────────────────────────────────────── */
.hero-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 9999px;
    padding: 0.3rem 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--green-l);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Step row ────────────────────────────────────── */
.step-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.step-arrow {
    color: var(--muted);
    font-size: 1rem;
}

.step-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.6rem 1rem;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    background: var(--card);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.25s;
    min-width: 90px;
}

.step-pill.active {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--green-l);
}

.step-pill.done {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.15);
    color: var(--green);
}

.step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: all 0.25s;
}

.step-pill.active .step-num {
    background: var(--green);
    color: #fff;
}

.step-pill.done .step-num {
    background: rgba(16, 185, 129, 0.3);
    color: var(--green-l);
}

/* ── Section label ───────────────────────────────── */
.section-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.section-num {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-d));
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.35);
    margin-top: 1px;
}

.section-divider {
    height: 1px;
    background: var(--border);
    margin: 1.5rem 0;
}

/* ── Industry grid ───────────────────────────────── */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 500px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.industry-btn {
    padding: 0.75rem 0.4rem;
    border-radius: var(--r-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    line-height: 1.5;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.industry-btn span {
    display: block;
    font-size: 0.72rem;
    margin-top: 2px;
}

.industry-btn:hover {
    background: rgba(16, 185, 129, 0.07);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--text);
}

.industry-btn.active {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.45);
    color: var(--green-l);
    font-weight: 700;
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.18);
}

/* ── Example grid ────────────────────────────────── */
.example-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.example-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--muted);
    font-size: 0.73rem;
    font-weight: 500;
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.example-btn:hover,
.example-btn.active-ex {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--green-l);
}

/* ── Input field ─────────────────────────────────── */
.field {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-md);
    color: var(--text);
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.field::placeholder {
    color: var(--muted);
}

.field:focus {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* ── Tips box ────────────────────────────────────── */
.tips-box {
    background: rgba(251, 191, 36, 0.04);
    border: 1px solid rgba(251, 191, 36, 0.13);
    border-radius: var(--r-sm);
    padding: 0.85rem 1rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem 1rem;
    margin-top: 0.5rem;
}

.tip-item {
    font-size: 0.75rem;
    color: #9ca3af;
}

@media (max-width: 480px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Primary button ──────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--green), var(--green-d));
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
    border-radius: var(--r-md);
    border: none;
    cursor: pointer;
    box-shadow: var(--glow);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 42px rgba(16, 185, 129, 0.55);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
}

@media (max-width: 640px) {
    .btn-primary {
        width: 100%;
    }
}

.btn-badge {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 9999px;
    padding: 0.15rem 0.55rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: none;
}

@media (min-width: 400px) {
    .btn-badge {
        display: inline;
    }
}

/* ── Outline button ──────────────────────────────── */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.28);
    color: var(--indigo);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.6rem 1.1rem;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    white-space: nowrap;
    -webkit-appearance: none;
    appearance: none;
}

.btn-outline:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.45);
    transform: translateY(-1px);
}

/* ── Loading ─────────────────────────────────────── */
.loading-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.loading-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.3;
    animation: dotPulse 1.2s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: .3;
        transform: scale(.8)
    }

    50% {
        opacity: 1;
        transform: scale(1.2)
    }
}

.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    max-width: 300px;
    margin: 0 auto;
}

.loading-step {
    font-size: 0.8rem;
    text-align: left;
    padding: 0.5rem 0.85rem;
    border-radius: var(--r-sm);
    border: 1px solid transparent;
    color: var(--muted);
    transition: all 0.3s;
}

.loading-step.active {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--green-l);
}

.loading-step.done {
    background: rgba(16, 185, 129, 0.04);
    color: var(--green);
}

/* ── Badges ──────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.8rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.badge-low {
    background: rgba(52, 211, 153, 0.12);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.28);
}

.badge-medium {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.28);
}

.badge-high {
    background: rgba(248, 113, 113, 0.12);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.28);
}

.src-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.22rem 0.6rem;
    border-radius: 9999px;
}

.src-ai {
    background: rgba(99, 102, 241, 0.12);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.25);
}

.src-rule {
    background: rgba(251, 191, 36, 0.10);
    color: #fcd34d;
    border: 1px solid rgba(251, 191, 36, 0.22);
}

/* ── Result banner ───────────────────────────────── */
.result-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: var(--r-md);
    padding: 0.875rem 1.25rem;
}

/* ── Chart wrapper ───────────────────────────────── */
.chart-wrap {
    position: relative;
    flex-shrink: 0;
    width: 150px;
    height: 150px;
}

#scoreChart {
    width: 150px !important;
    height: 150px !important;
}

.chart-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

@media (max-width: 380px) {

    .chart-wrap,
    #scoreChart {
        width: 120px !important;
        height: 120px !important;
    }
}

/* ── Progress bar ────────────────────────────────── */
.progress-track {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 9999px;
    height: 8px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 9999px;
    transition: width 1.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.progress-low {
    background: linear-gradient(90deg, #34d399, #10b981);
}

.progress-medium {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.progress-high {
    background: linear-gradient(90deg, #f87171, #ef4444);
}

/* ── Stat card ───────────────────────────────────── */
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r-md);
    padding: 1rem 0.75rem;
    text-align: center;
    transition: border-color 0.2s;
}

.stat-card:hover {
    border-color: rgba(16, 185, 129, 0.2);
}

/* ── Score legend ────────────────────────────────── */
.score-leg {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.76rem;
    color: var(--muted);
}

.leg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.leg-dot.green {
    background: var(--green-l);
}

.leg-dot.yellow {
    background: var(--yellow);
}

.leg-dot.red {
    background: var(--red);
}

/* ── Section title row ───────────────────────────── */
.sec-title {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.sec-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.sec-icon.red {
    background: rgba(248, 113, 113, 0.1);
}

.sec-icon.green {
    background: rgba(52, 211, 153, 0.1);
}

.sec-icon.blue {
    background: rgba(96, 165, 250, 0.1);
}

/* ── List items ──────────────────────────────────── */
.list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.7rem 0.9rem;
    border-radius: var(--r-sm);
    margin-bottom: 0.4rem;
    font-size: 0.875rem;
    line-height: 1.55;
}

.list-item-issue {
    background: rgba(248, 113, 113, 0.06);
    border-left: 3px solid rgba(248, 113, 113, 0.5);
}

.list-item-rec {
    background: rgba(52, 211, 153, 0.06);
    border-left: 3px solid rgba(52, 211, 153, 0.5);
}

/* ── Regulatory card ─────────────────────────────── */
.reg-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--r-md);
    padding: 0.95rem 1rem;
    margin-bottom: 0.5rem;
    transition: border-color 0.25s, transform 0.25s;
}

.reg-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(4px);
}

.sev-critical {
    color: #f87171;
}

.sev-high {
    color: #fb923c;
}

.sev-medium {
    color: #fbbf24;
}

.sev-low {
    color: #34d399;
}

/* ── AI Insight ──────────────────────────────────── */
.insight-box {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.07), rgba(5, 150, 105, 0.03));
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: var(--r-lg);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    overflow: hidden;
}

.insight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--green-l), var(--green-d));
}

.insight-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.cursor::after {
    content: '|';
    animation: blink 0.75s step-start infinite;
    color: var(--green-l);
}

/* ── CTA box ─────────────────────────────────────── */
.cta-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--r-lg);
    padding: 1.25rem;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .cta-box {
        text-align: center;
        justify-content: center;
    }
}

/* ── How it works ────────────────────────────────── */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 540px) {
    .how-grid {
        grid-template-columns: 1fr;
    }
}

.how-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r-md);
    padding: 1.25rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.how-card:hover {
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-3px);
}

.how-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

/* ── Dot ping ────────────────────────────────────── */
.dot-ping {
    display: inline-flex;
    position: relative;
    width: 8px;
    height: 8px;
}

.dot-ping span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--green);
    opacity: .75;
    animation: ping 1.5s ease-out infinite;
}

.dot-ping i {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

/* ── Glow pulse ──────────────────────────────────── */
.glow-pulse {
    animation: glowPulse 2.8s ease-in-out infinite;
}

/* ── Toast ───────────────────────────────────────── */
#toast {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 999;
    padding: 0.85rem 1.2rem;
    border-radius: var(--r-md);
    border: 1px solid transparent;
    font-size: 0.85rem;
    font-weight: 500;
    max-width: 20rem;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .3s, transform .3s;
    pointer-events: none;
}

#toast.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto;
}

#toast.t-success {
    background: #052e16;
    border-color: #166534;
    color: #bbf7d0;
}

#toast.t-error {
    background: #1c0909;
    border-color: #7f1d1d;
    color: #fecaca;
}

#toast.t-warn {
    background: #1c1309;
    border-color: #78350f;
    color: #fde68a;
}

#toast.t-info {
    background: #111827;
    border-color: #374151;
    color: #d1d5db;
}

/* ── Footer ──────────────────────────────────────── */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Animations ──────────────────────────────────── */
@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, .18)
    }

    50% {
        box-shadow: 0 0 44px rgba(16, 185, 129, .5)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-14px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(.94)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.anim-fade {
    animation: fadeIn 0.55s ease both;
}

.anim-slide {
    animation: slideRight 0.48s ease both;
}

.anim-scale {
    animation: scaleIn 0.45s ease both;
}

/* ── Footer ──────────────────────────────────────── */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 0.5rem;
}

.footer-inner {
    text-align: center;
    padding: 2.5rem 1rem 2rem;
    max-width: 480px;
    margin: 0 auto;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.45rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.01em;
    margin-bottom: 1.4rem;
}

.footer-rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.22), transparent);
    margin-bottom: 1.25rem;
}

.footer-copy {
    font-size: 0.78rem;
    color: #4b5563;
    font-weight: 500;
    margin-bottom: 0.7rem;
}

.footer-disclaimer {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.71rem;
    color: #374151;
    line-height: 1.6;
    max-width: 400px;
}

.footer-warn-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #6b7280;
}