/* ----------------------------------------------------
   FINX CALCULATOR - CSS DESIGN SYSTEM
   Professional, Sleek, Glassmorphism, Dual-Theme, Responsive
   ---------------------------------------------------- */

/* Reset & Variables */
:root {
    /* Color Palette - Dark Mode (Default) */
    --bg-main: #080c14;
    --bg-card: rgba(17, 25, 40, 0.75);
    --bg-card-hover: rgba(23, 33, 53, 0.85);
    --bg-input: #0e1626;
    --bg-input-focus: #141f36;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-focus: rgba(99, 102, 241, 0.5);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Brand Accents */
    --accent: #6366f1; /* Indigo */
    --accent-hover: #4f46e5;
    --accent-glow: rgba(99, 102, 241, 0.15);
    --secondary-accent: #06b6d4; /* Cyan */
    --success: #10b981; /* Emerald */
    --success-glow: rgba(16, 185, 129, 0.15);
    --warning: #f59e0b; /* Amber */
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    --gradient-text: linear-gradient(135deg, #ffffff 30%, #94a3b8 100%);
    --gradient-glow: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(8, 12, 20, 0) 70%);

    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.2);
    --blur-intensity: 16px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Layout */
    --nav-height: 80px;
    --transition-speed: 0.3s;
}

/* Light Theme Variables */
[data-theme="light"] {
    --bg-main: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.8);
    --bg-card-hover: rgba(255, 255, 255, 0.95);
    --bg-input: #f1f5f9;
    --bg-input-focus: #e2e8f0;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-color-focus: rgba(79, 70, 229, 0.5);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --accent: #4f46e5;
    --accent-hover: #3730a3;
    --accent-glow: rgba(79, 70, 229, 0.1);
    --secondary-accent: #0891b2;
    --success: #059669;
    --success-glow: rgba(5, 150, 105, 0.1);
    
    --gradient-brand: linear-gradient(135deg, #4f46e5 0%, #0891b2 100%);
    --gradient-text: linear-gradient(135deg, #0f172a 30%, #475569 100%);
    --gradient-glow: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, rgba(248, 250, 252, 0) 70%);
    
    --shadow-md: 0 10px 15px -3px rgba(148, 163, 184, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(148, 163, 184, 0.15);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Background Glow Elements */
body::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: var(--gradient-glow);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}

body::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: var(--gradient-glow);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}

.smooth-transition {
    transition: background-color var(--transition-speed) ease, 
                color var(--transition-speed) ease, 
                border-color var(--transition-speed) ease, 
                box-shadow var(--transition-speed) ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

/* Helper Components */
.highlight {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
    border: 3px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* --- HEADER / NAVBAR --- */
.navbar {
    height: var(--nav-height);
    background: rgba(8, 12, 20, 0.6);
    backdrop-filter: blur(var(--blur-intensity));
    -webkit-backdrop-filter: blur(var(--blur-intensity));
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

[data-theme="light"] .navbar {
    background: rgba(248, 250, 252, 0.7);
}

.nav-container {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    position: relative;
    width: 42px;
    height: 42px;
    background: var(--gradient-brand);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: var(--shadow-glow);
}

.logo-icon {
    font-size: 1.2rem;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.sub-brand {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    display: inline-block;
    margin-left: 4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.theme-toggle-btn:hover {
    border-color: var(--border-color-focus);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.sun-icon {
    display: none;
    font-size: 1.1rem;
    color: #f59e0b;
}

.moon-icon {
    display: block;
    font-size: 1.1rem;
    color: #818cf8;
}

[data-theme="light"] .sun-icon {
    display: block;
}

[data-theme="light"] .moon-icon {
    display: none;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--bg-input);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-input-focus);
    border-color: var(--border-color-focus);
}

.btn-sm {
    padding: 10px 18px;
    font-size: 0.875rem;
}

.btn-md {
    padding: 12px 24px;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* --- MAIN CONTENT & HERO --- */
.main-content {
    flex: 1;
    width: 100%;
}

.hero {
    padding: 80px 24px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-glow);
    border-radius: 100px;
    border: 1px solid var(--border-color);
}

.hero-title {
    font-size: 3.5rem;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .hero-title {
    background: var(--text-primary);
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* --- CALCULATOR SECTOR & TABS --- */
.dashboard-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.tabs-container {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.tabs-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.tab-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 14px 24px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-speed) ease;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-color-focus);
    background: var(--bg-card-hover);
}

.tab-btn.active {
    color: #ffffff;
    background: var(--gradient-brand);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

/* --- CALCULATOR WINDOW LAYOUT --- */
.calc-window {
    background: var(--bg-card);
    backdrop-filter: blur(var(--blur-intensity));
    -webkit-backdrop-filter: blur(var(--blur-intensity));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: none;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.calc-window.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 550px;
}

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

/* Left Panel: Inputs */
.calc-inputs {
    padding: 40px;
    border-right: 1px solid var(--border-color);
}

@media (max-width: 968px) {
    .calc-inputs {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 30px 20px;
    }
}

.calc-header-block {
    margin-bottom: 32px;
}

.calc-header-block h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.calc-header-block p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Input Fields & Groups */
.input-field-group {
    margin-bottom: 28px;
}

.input-label-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.input-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Custom Number Input Wrapper */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-box {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    padding: 12px 48px 12px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.input-box:focus {
    outline: none;
    border-color: var(--border-color-focus);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
    background: var(--bg-input-focus);
}

/* Hide Spin Buttons */
.input-box::-webkit-outer-spin-button,
.input-box::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.input-box[type=number] {
    -moz-appearance: textfield;
}

.input-suffix {
    position: absolute;
    right: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    pointer-events: none;
}

.input-prefix {
    position: absolute;
    left: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    pointer-events: none;
}

.input-wrapper.has-prefix .input-box {
    padding-left: 36px;
}

/* Sliders */
.range-slider-container {
    margin-top: 12px;
}

.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-input);
    outline: none;
    cursor: pointer;
    transition: background var(--transition-speed) ease;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--text-primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    transition: transform 0.1s ease, background 0.1s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--secondary-accent);
}

.range-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--text-primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    transition: transform 0.1s ease;
}

.range-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

/* Radio Tab Switch (GST, Add/Remove) */
.switch-buttons-container {
    display: flex;
    background: var(--bg-input);
    padding: 4px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.switch-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all var(--transition-speed) ease;
}

.switch-btn.active {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .switch-btn.active {
    background: #ffffff;
    color: var(--accent);
}

/* Quick Select Buttons (e.g. GST % slabs, loan tenures) */
.quick-select-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.quick-btn {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.quick-btn:hover, .quick-btn.active {
    border-color: var(--border-color-focus);
    color: var(--text-primary);
    background: var(--bg-input-focus);
}

.quick-btn.active {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--accent);
}

/* Right Panel: Results & Chart */
.calc-results-panel {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

[data-theme="light"] .calc-results-panel {
    background: rgba(0, 0, 0, 0.01);
}

@media (max-width: 968px) {
    .calc-results-panel {
        padding: 30px 20px;
        gap: 32px;
    }
}

.results-summary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.result-card {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--border-color);
}

.result-card.accent-card::before {
    background: var(--gradient-brand);
}

.result-card.success-card::before {
    background: var(--success);
}

.result-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Chart Area */
.chart-container {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Features Block */
.features-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 24px;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-speed) ease;
}

[data-theme="light"] .feature-card {
    background: rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-focus);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- PRIVACY POLICY PAGE --- */
.policy-hero {
    padding: 80px 24px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.policy-title {
    font-size: 3rem;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.policy-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.policy-content-section {
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 0 24px;
}

.policy-box {
    background: var(--bg-card);
    backdrop-filter: blur(var(--blur-intensity));
    -webkit-backdrop-filter: blur(var(--blur-intensity));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .policy-box {
        padding: 30px 20px;
    }
}

.policy-box h2 {
    font-size: 1.5rem;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--text-primary);
    border-left: 4px solid var(--accent);
    padding-left: 12px;
}

.policy-box h2:first-of-type {
    margin-top: 0;
}

.policy-box p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.policy-box ul {
    margin-bottom: 20px;
    padding-left: 24px;
    color: var(--text-secondary);
}

.policy-box li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* --- FOOTER --- */
.footer {
    background: #04060b;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 80px 24px 30px;
}

[data-theme="light"] .footer {
    background: #f1f5f9;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 60px;
}

@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all var(--transition-speed) ease;
}

.footer-socials a:hover {
    color: #ffffff;
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: var(--shadow-glow);
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-link:hover {
    color: var(--text-primary);
    padding-left: 4px;
}

.footer-divider {
    max-width: 1280px;
    margin: 0 auto 30px;
    border-bottom: 1px solid var(--border-color);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-bottom-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted);
}
