/* PM4Subs Design System - Tailwind Compatible */
/* This file provides custom component classes that work with Tailwind CSS */

/* ========================================
   CSS Custom Properties (Design Tokens)
   ======================================== */
:root {
    /* Primary Colors */
    --color-primary: 26 90 142;        /* Slate blue */
    --color-primary-light: 56 189 248; /* Sky-400 */
    --color-primary-dark: 14 165 233;  /* Sky-500 */

    /* Background Colors */
    --color-bg: 241 245 249;           /* Slate-100 */
    --color-surface: 255 255 255;      /* White */
    --color-surface-hover: 248 250 252; /* Slate-50 */

    /* Border Colors */
    --color-border: 226 232 240;       /* Slate-200 */
    --color-border-hover: 203 213 225; /* Slate-300 */

    /* Text Colors */
    --color-text: 15 23 42;            /* Slate-900 */
    --color-text-muted: 100 116 139;   /* Slate-500 */
    --color-text-light: 148 163 184;   /* Slate-400 */

    /* Accent/Status Colors */
    --color-accent: 56 189 248;        /* Sky-400 */
    --color-success: 34 197 94;        /* Green-500 */
    --color-warning: 234 179 8;        /* Yellow-500 */
    --color-danger: 239 68 68;         /* Red-500 */

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Dark Mode Variables */
.dark, [data-theme="dark"] {
    --color-primary: 56 189 248;       /* Sky-400 */
    --color-primary-light: 125 211 252; /* Sky-300 */
    --color-primary-dark: 14 165 233;  /* Sky-500 */

    --color-bg: 15 23 42;              /* Slate-900 */
    --color-surface: 17 24 39;         /* Gray-900 */
    --color-surface-hover: 30 41 59;   /* Slate-800 */

    --color-border: 30 41 59;          /* Slate-800 */
    --color-border-hover: 51 65 85;    /* Slate-700 */

    --color-text: 229 231 235;         /* Gray-200 */
    --color-text-muted: 148 163 184;   /* Slate-400 */
    --color-text-light: 100 116 139;   /* Slate-500 */

    --color-accent: 56 189 248;        /* Sky-400 */

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4), 0 4px 6px -4px rgb(0 0 0 / 0.3);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.3);
}

/* ========================================
   Base Styles
   ======================================== */
body {
    background-color: rgb(var(--color-bg));
    color: rgb(var(--color-text));
}

/* ========================================
   Button Components
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}

.btn:focus-visible {
    outline: 2px solid rgb(var(--color-accent));
    outline-offset: 2px;
}

.btn-primary {
    background-color: rgb(var(--color-accent));
    color: rgb(15 23 42);
    border-color: rgb(var(--color-accent));
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: rgb(var(--color-primary-dark));
    border-color: rgb(var(--color-primary-dark));
}

.btn-secondary {
    background-color: transparent;
    color: rgb(var(--color-text));
    border-color: rgb(var(--color-border));
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
}

.btn-secondary:hover {
    border-color: rgb(var(--color-accent));
    color: rgb(var(--color-accent));
}

.btn-ghost {
    background-color: transparent;
    color: rgb(var(--color-text-muted));
    border-color: transparent;
}

.btn-ghost:hover {
    background-color: rgb(var(--color-surface-hover));
    color: rgb(var(--color-text));
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Utility: Full Width */
.w-full {
    width: 100%;
}

/* Form Note */
.form-note {
    text-align: center;
    color: rgb(var(--color-text-muted));
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* ========================================
   Card Components
   ======================================== */
.card {
    background-color: rgb(var(--color-surface));
    border: 1px solid rgb(var(--color-border));
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-interactive:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgb(var(--color-border));
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgb(var(--color-text));
}

.card-body {
    color: rgb(var(--color-text-muted));
    line-height: 1.7;
}

/* Feature Card (for feature sections) */
.feature-card {
    background-color: rgb(var(--color-surface));
    border: 1px solid rgb(var(--color-border));
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Pain Card (for pain points with danger accent) */
.pain-card {
    background-color: rgb(var(--color-surface));
    border: 1px solid rgb(var(--color-border));
    border-left: 4px solid rgb(var(--color-danger));
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Dashboard Tile (for product pages)
   ======================================== */
.dashboard-tile {
    background-color: rgb(var(--color-surface));
    border: 1px solid rgb(var(--color-border));
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.dashboard-tile:hover {
    border-color: rgb(var(--color-accent) / 0.5);
    box-shadow: var(--shadow-md);
}

.dashboard-tile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.dashboard-tile-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(var(--color-text-muted));
}

.dashboard-tile-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(var(--color-text));
}

/* ========================================
   Chip/Badge Components
   ======================================== */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    background-color: rgb(var(--color-surface-hover));
    color: rgb(var(--color-text-muted));
}

.chip-primary {
    background-color: rgb(var(--color-accent) / 0.15);
    color: rgb(var(--color-accent));
}

.chip-success {
    background-color: rgb(var(--color-success) / 0.15);
    color: rgb(var(--color-success));
}

.chip-warning {
    background-color: rgb(var(--color-warning) / 0.15);
    color: rgb(var(--color-warning));
}

.chip-danger {
    background-color: rgb(var(--color-danger) / 0.15);
    color: rgb(var(--color-danger));
}

/* ========================================
   Navigation Components
   ======================================== */
.nav {
    background-color: rgb(var(--color-surface));
    border-bottom: 1px solid rgb(var(--color-border));
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(var(--color-accent));
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgb(var(--color-text-muted));
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: rgb(var(--color-text));
}

/* ========================================
   Form Components
   ======================================== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    color: rgb(var(--color-text-muted));
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgb(var(--color-border));
    border-radius: 0.5rem;
    font-size: 1rem;
    background-color: rgb(var(--color-bg));
    color: rgb(var(--color-text));
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
    color: rgb(var(--color-text-light));
}

.form-input:focus {
    outline: none;
    border-color: rgb(var(--color-accent));
    box-shadow: 0 0 0 3px rgb(var(--color-accent) / 0.1);
}

/* ========================================
   Section Components
   ======================================== */
.section {
    padding: 4rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-alt {
    background-color: rgb(var(--color-surface));
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgb(var(--color-text));
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: rgb(var(--color-text-muted));
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: 6rem 1.5rem;
    text-align: center;
    background-color: rgb(var(--color-bg));
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: rgb(var(--color-text));
}

.hero-subtitle {
    color: rgb(var(--color-text-muted));
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0.5rem auto 2rem;
    line-height: 1.7;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 5rem 1.5rem;
    text-align: center;
    background-color: rgb(var(--color-surface));
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgb(var(--color-text));
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgb(var(--color-text-muted));
    margin-bottom: 2.5rem;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

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

.faq-item {
    background-color: rgb(var(--color-surface));
    border: 1px solid rgb(var(--color-border));
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.faq-question {
    color: rgb(var(--color-text));
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: rgb(var(--color-text-muted));
    line-height: 1.7;
}

/* ========================================
   Grid Layouts
   ======================================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

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

/* ========================================
   Icon Styling
   ======================================== */
.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.icon-lg {
    font-size: 3rem;
}

/* ========================================
   Links
   ======================================== */
a {
    color: rgb(var(--color-accent));
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: rgb(var(--color-primary-dark));
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 2rem 1.5rem;
    text-align: center;
    color: rgb(var(--color-text-muted));
    font-size: 0.9rem;
    background-color: rgb(var(--color-surface));
    border-top: 1px solid rgb(var(--color-border));
}

/* ========================================
   Hamburger Menu
   ======================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: rgb(var(--color-text));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }
}

/* ========================================
   Side Panel
   ======================================== */
.side-panel {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: rgb(var(--color-surface));
    border-left: 1px solid rgb(var(--color-border));
    z-index: 150;
    transition: right 0.3s ease;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
}

.side-panel.open {
    right: 0;
}

.side-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.5);
    z-index: 140;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-panel-overlay.show {
    opacity: 1;
    visibility: visible;
}

.side-panel-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.side-panel-nav a {
    color: rgb(var(--color-text));
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.side-panel-nav a:hover {
    background-color: rgb(var(--color-bg));
    color: rgb(var(--color-accent));
}

.nav-section-title {
    color: rgb(var(--color-text-muted));
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 1rem 0.5rem;
    margin-top: 1rem;
}

.nav-section-title:first-child {
    margin-top: 0;
}

.side-panel-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgb(var(--color-border));
}

.side-panel-cta .btn-primary {
    width: 100%;
    justify-content: center;
}

/* ========================================
   Modal
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background-color: rgb(var(--color-surface));
    padding: 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgb(var(--color-border));
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.75rem;
    color: rgb(var(--color-text-muted));
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.modal-close:hover {
    color: rgb(var(--color-text));
}

.modal-title {
    color: rgb(var(--color-text));
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ========================================
   Floating CTA
   ======================================== */
.floating-cta {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    animation: fadeInUp 0.5s ease;
}

.floating-cta-button {
    padding: 1rem 2rem;
    background-color: rgb(var(--color-accent) / 0.2);
    color: rgb(var(--color-accent));
    border: 1px solid rgb(var(--color-accent) / 0.3);
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.floating-cta-button:hover {
    background-color: rgb(var(--color-accent));
    color: rgb(15 23 42);
    border-color: rgb(var(--color-accent));
    box-shadow: 0 8px 24px rgb(var(--color-accent) / 0.3);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgb(var(--color-accent) / 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgb(var(--color-accent) / 0.5);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Hide floating CTA when modal is open */
.modal-overlay.show ~ .floating-cta {
    display: none;
}

/* ========================================
   Quick Links Section
   ======================================== */
.quick-links-section {
    padding: 3rem 1.5rem;
    background-color: rgb(var(--color-bg));
    border-top: 1px solid rgb(var(--color-border));
    text-align: center;
}

.quick-links-title {
    font-size: 1.25rem;
    color: rgb(var(--color-text-muted));
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
}

.quick-links a {
    color: rgb(var(--color-text));
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.quick-links a:hover {
    color: rgb(var(--color-accent));
    background-color: rgb(var(--color-surface));
}

/* ========================================
   Screenshots Section
   ======================================== */
.screenshots-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    align-items: start;
}

.mobile-column {
    position: sticky;
    top: 80px;
}

.desktop-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.screenshot-card {
    background-color: rgb(var(--color-surface));
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgb(var(--color-border));
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-column .screenshot-card img {
    max-height: 700px;
    object-fit: cover;
    object-position: top;
}

.screenshot-caption {
    padding: 1.25rem;
    text-align: center;
}

.screenshot-caption h4 {
    color: rgb(var(--color-text));
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.screenshot-caption p {
    color: rgb(var(--color-text-muted));
    font-size: 0.875rem;
}

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

    .mobile-column {
        position: relative;
    }

    .mobile-column .screenshot-card img {
        max-height: 500px;
    }
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 1.125rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .floating-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ========================================
   Success Message
   ======================================== */
.success-message {
    display: none;
    background-color: rgb(var(--color-success));
    color: white;
    padding: 1.25rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
    margin-top: 1.25rem;
}

/* ========================================
   Utility: Container
   ======================================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   Privacy Page Content
   ======================================== */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.privacy-content h1 {
    color: rgb(var(--color-accent));
    margin-bottom: 0.5rem;
}

.privacy-content h2 {
    color: rgb(var(--color-text));
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.privacy-content p {
    color: rgb(var(--color-text-muted));
    margin-bottom: 1rem;
    line-height: 1.7;
}

.privacy-content ul {
    color: rgb(var(--color-text-muted));
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.privacy-content strong {
    color: rgb(var(--color-text));
}

/* ========================================
   About Page List Styling
   ======================================== */
.about-list {
    list-style: none;
    padding-left: 0;
}

.about-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgb(var(--color-text-muted));
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: rgb(var(--color-accent));
    border-radius: 50%;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-muted {
    color: rgb(var(--color-text-muted));
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* ========================================
   Focus States for Accessibility
   ======================================== */
button:focus-visible,
input:focus-visible,
a:focus-visible {
    outline: 2px solid rgb(var(--color-accent));
    outline-offset: 2px;
}

/* ========================================
   Smooth Scrolling
   ======================================== */
html {
    scroll-behavior: smooth;
}

/* ========================================
   Selection Styling
   ======================================== */
::selection {
    background-color: rgb(var(--color-accent));
    color: rgb(var(--color-bg));
}
