/* ==========================================================================
   Quantix Web — Design System
   ========================================================================== */

:root {
    --bg-0: #07071a;
    --bg-1: #0d0d24;
    --bg-2: #14143a;
    --bg-card: rgba(20, 20, 58, 0.6);
    --bg-card-hover: rgba(28, 28, 76, 0.8);
    --border: rgba(124, 58, 237, 0.18);
    --border-strong: rgba(124, 58, 237, 0.4);
    --text: #e7e8f0;
    --text-soft: #b4b6cc;
    --text-muted: #8083a3;
    --primary: #7c3aed;
    --primary-hover: #8b5cf6;
    --accent: #06b6d4;
    --accent-hover: #22d3ee;
    --gradient: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    --gradient-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.3);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --container: 1180px;
    --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg-0);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124, 58, 237, 0.18), transparent 70%),
        radial-gradient(ellipse 60% 50% at 100% 30%, rgba(6, 182, 212, 0.10), transparent 70%),
        radial-gradient(ellipse 60% 60% at 0% 80%, rgba(124, 58, 237, 0.08), transparent 70%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

img, svg { max-width: 100%; display: block; }

input, button, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--primary); color: #fff; }

/* Stars background pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 82% 64%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 33% 78%, rgba(255,255,255,0.35), transparent),
        radial-gradient(1px 1px at 67% 18%, rgba(255,255,255,0.45), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1.5px 1.5px at 90% 90%, rgba(255,255,255,0.5), transparent);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

main, header, footer, section { position: relative; z-index: 1; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.35rem; }

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-soft { color: var(--text-soft); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--gradient-soft);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-soft);
}

.eyebrow i { color: var(--accent); font-size: 0.7rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
    white-space: nowrap;
    user-select: none;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-soft);
    border: 1px solid var(--border);
}

.btn-ghost:hover { color: var(--text); border-color: var(--border-strong); }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #dc2626; }

.btn-sm { padding: 8px 14px; font-size: 0.85rem; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(7, 7, 26, 0.7);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--gradient);
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--shadow-glow);
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text);
    background: rgba(124, 58, 237, 0.1);
}

.nav-cta { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    color: var(--text);
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .nav-links, .nav-cta .btn-secondary { display: none; }
    .nav-toggle { display: flex; }
    .nav.open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-1);
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
    }
    .nav.open .nav-links a { padding: 12px 16px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
}

.hero-eyebrow { margin-bottom: 24px; }

.hero h1 { margin-bottom: 24px; }

.hero p.lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-soft);
    max-width: 720px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    padding: 24px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section { padding: 80px 0; }
.section-tight { padding: 60px 0; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--text-soft); font-size: 1.05rem; }

/* ==========================================================================
   Feature Grid
   ========================================================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
}

.feature-card {
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-soft);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
}

.feature-card:hover::before { opacity: 1; }

.feature-card > * { position: relative; z-index: 1; }

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 22px;
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.feature-card.cyan .feature-icon {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.feature-card h3 { margin-bottom: 10px; }

.feature-card p { color: var(--text-soft); font-size: 0.95rem; }

/* ==========================================================================
   Product showcase (Quantix Bot / Quantix Ticket)
   ========================================================================== */

.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-row.reverse { direction: rtl; }
.product-row.reverse > * { direction: ltr; }

@media (max-width: 900px) {
    .product-row, .product-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
}

.product-text h2 { margin-bottom: 16px; }
.product-text p { color: var(--text-soft); margin-bottom: 24px; font-size: 1.02rem; }

.product-list { list-style: none; margin-bottom: 28px; }
.product-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 8px 0;
    color: var(--text-soft);
}
.product-list li i {
    color: var(--accent);
    font-size: 0.95rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.product-visual {
    aspect-ratio: 16/11;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.product-visual::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient);
    opacity: 0.25;
    z-index: 0;
    filter: blur(40px);
}

.product-visual i {
    font-size: 8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
}

/* ==========================================================================
   News
   ========================================================================== */

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

.news-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition), transform var(--transition);
}

.news-item:hover { border-color: var(--border-strong); transform: translateY(-2px); }

.news-date {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 8px;
}

.news-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.news-item p { color: var(--text-soft); font-size: 0.92rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition);
    overflow: hidden;
}

.faq details[open] { border-color: var(--border-strong); }

.faq summary {
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    transition: transform var(--transition);
    font-size: 0.85rem;
}

.faq details[open] summary::after { transform: rotate(180deg); }

.faq .faq-answer {
    padding: 0 24px 18px;
    color: var(--text-soft);
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */

.cta-banner {
    text-align: center;
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    background: var(--gradient-soft);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { color: var(--text-soft); margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .hero-actions { margin-bottom: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    margin-top: 80px;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    background: rgba(7, 7, 26, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-soft); font-size: 0.92rem; max-width: 320px; }

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-soft); font-size: 0.92rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--text-soft);
    transition: color var(--transition), border-color var(--transition), transform var(--transition);
}
.footer-social a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 0;
}

.legal-page h1 { margin-bottom: 16px; }
.legal-page > p:first-of-type { color: var(--text-soft); margin-bottom: 40px; }
.legal-page h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.legal-page h3 { font-size: 1.1rem; margin: 24px 0 10px; }
.legal-page p { color: var(--text-soft); margin-bottom: 14px; }
.legal-page ul, .legal-page ol { color: var(--text-soft); margin: 0 0 16px 22px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--accent); }
.legal-page a:hover { text-decoration: underline; }

/* ==========================================================================
   Admin Layout
   ========================================================================== */

.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }

@media (max-width: 800px) {
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar { position: static !important; }
}

.admin-sidebar {
    background: var(--bg-1);
    border-right: 1px solid var(--border);
    padding: 24px 18px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.admin-sidebar .logo { margin-bottom: 32px; }

.admin-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-soft);
    font-weight: 500;
    font-size: 0.94rem;
    transition: background var(--transition), color var(--transition);
}
.admin-nav a:hover, .admin-nav a.active {
    background: var(--gradient-soft);
    color: var(--text);
}
.admin-nav a i { width: 16px; text-align: center; color: var(--accent); }

.admin-main { padding: 32px 40px; max-width: 1100px; }

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-user {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 6px 14px 6px 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.9rem;
}

.admin-user img { width: 28px; height: 28px; border-radius: 50%; }

.admin-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 22px;
}

.admin-card h2 { font-size: 1.2rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.admin-card h2 i { color: var(--accent); }

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.admin-stat {
    padding: 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.admin-stat .num {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.admin-stat .lbl { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Forms */
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row label { font-size: 0.85rem; color: var(--text-soft); font-weight: 500; }
.form-row input, .form-row textarea, .form-row select {
    padding: 12px 14px;
    background: var(--bg-0);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: border-color var(--transition);
    width: 100%;
    font-family: inherit;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
    outline: none;
    border-color: var(--accent);
}
.form-row textarea { resize: vertical; min-height: 90px; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* Editable item rows */
.item-list { display: flex; flex-direction: column; gap: 14px; }
.item-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: start;
    padding: 18px;
    background: var(--bg-0);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.item-row .body { display: flex; flex-direction: column; gap: 10px; }
.item-row .actions { display: flex; gap: 8px; align-self: start; }

/* Login page */
.login-shell { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.login-card {
    max-width: 440px;
    width: 100%;
    text-align: center;
    padding: 48px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}
.login-card .logo-mark { width: 64px; height: 64px; font-size: 1.8rem; margin: 0 auto 24px; }
.login-card h1 { font-size: 1.8rem; margin-bottom: 12px; }
.login-card p { color: var(--text-soft); margin-bottom: 32px; }
.login-card .btn { width: 100%; padding: 14px; background: #5865F2; }
.login-card .btn:hover { background: #4752c4; }

/* Role Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid transparent;
    line-height: 1;
}
.badge-owner  { background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(239,68,68,0.18)); color: #fbbf24; border-color: rgba(245,158,11,0.45); }
.badge-admin  { background: var(--gradient-soft); color: #c4b5fd; border-color: rgba(124,58,237,0.45); }
.badge-editor { background: rgba(6,182,212,0.12); color: #67e8f9; border-color: rgba(6,182,212,0.45); }
.badge-soon   { background: rgba(245,158,11,0.12); color: #fbbf24; border-color: rgba(245,158,11,0.4); }

/* Alerts */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    border: 1px solid transparent;
}
.alert i { flex-shrink: 0; }
.alert-success { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.3); color: #34d399; }
.alert-danger { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.3); color: #fca5a5; }
.alert-info { background: rgba(6, 182, 212, 0.1); border-color: rgba(6, 182, 212, 0.3); color: #67e8f9; }

/* ==========================================================================
   Utilities
   ========================================================================== */

.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-sm { gap: 8px; }
.gap { gap: 16px; }
.mt-0 { margin-top: 0; }
.mt-md { margin-top: 24px; }
.mb-md { margin-bottom: 24px; }
.hidden { display: none !important; }

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

.fade-up { animation: fadeUp 0.6s ease-out backwards; }
.fade-up.delay-1 { animation-delay: 0.1s; }
.fade-up.delay-2 { animation-delay: 0.2s; }
.fade-up.delay-3 { animation-delay: 0.3s; }
