/* =========================================================
   TekTool.app — Premium Enterprise Design System
   Built for Field Technician Support Workflows
   ========================================================= */

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

:root {
    --primary: #0b5cff;
    --primary-dark: #003b95;
    --primary-soft: #eaf1ff;

    --navy-950: #06172f;
    --navy-900: #08224a;
    --navy-800: #0f356d;
    --navy-700: #164b8f;

    --orange: #ff9f1c;
    --orange-dark: #f97316;
    --green: #10b981;
    --purple: #8b5cf6;
    --cyan: #06b6d4;
    --red: #ef4444;

    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;

    --white: #ffffff;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 28px;

    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.14);
    --shadow-lg: 0 24px 70px rgba(2, 8, 23, 0.28);

    --max-width: 1200px;
}

/* =========================================================
   Global Reset
   ========================================================= */

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--white);
    color: var(--slate-900);
    line-height: 1.6;
}

a {
    color: inherit;
}

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

.btn,
.btn-primary,
.btn-secondary,
.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.btn-primary,
.nav-btn {
    color: white;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 12px 26px rgba(249, 115, 22, 0.32);
}

.btn-primary:hover,
.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(249, 115, 22, 0.42);
}

.btn-secondary {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.btn-outline {
    color: var(--primary);
    border: 1px solid var(--slate-300);
    background: white;
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
}

.btn-sm {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.9rem;
}

.btn-lg {
    min-height: 52px;
    padding: 0 24px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

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

.landing-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.landing-nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo,
.brand,
.nav-brand,
.landing-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-950);
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-icon,
.brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    color: white;
    box-shadow: 0 10px 24px rgba(11, 92, 255, 0.35);
}

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

.nav-link {
    color: var(--slate-700);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}

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

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

.hero {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 118px 24px 110px;
    text-align: center;
    background:
        radial-gradient(circle at 12% 15%, rgba(6, 182, 212, 0.28), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(255, 159, 28, 0.28), transparent 30%),
        linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 45%, #0b5cff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: 50%;
    bottom: -360px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.18);
    filter: blur(90px);
    border-radius: 999px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    padding: 9px 16px;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-title {
    margin: 0 auto 24px;
    max-width: 900px;
    font-size: clamp(2.75rem, 6vw, 5.8rem);
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: -0.07em;
}

.hero-accent {
    color: var(--orange);
    text-shadow: 0 12px 40px rgba(255, 159, 28, 0.35);
}

.hero-subtitle,
.hero-sub,
.hero p {
    max-width: 760px;
    margin: 0 auto 32px;
    color: #dbeafe;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 500;
}

.hero-actions,
.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero a {
    text-decoration: none;
}

/* =========================================================
   Features
   ========================================================= */

.features {
    position: relative;
    padding: 92px 24px;
    background: linear-gradient(180deg, var(--slate-50), #ffffff);
}

.features-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-eyebrow {
    text-align: center;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.section-title {
    text-align: center;
    color: var(--navy-950);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
    font-weight: 900;
    margin: 0 0 18px;
}

.section-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 52px;
    color: var(--slate-600);
    font-size: 1.08rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(11, 92, 255, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 92, 255, 0.28);
}

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

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

.feature-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    box-shadow: 0 14px 30px rgba(11, 92, 255, 0.25);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--purple), var(--primary));
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--green), var(--cyan));
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #14b8a6, var(--primary));
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.feature-card h3 {
    margin: 0 0 12px;
    color: var(--navy-950);
    font-size: 1.22rem;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin: 0;
    color: var(--slate-600);
    font-size: 1rem;
}

/* =========================================================
   How It Works
   ========================================================= */

.how-it-works {
    position: relative;
    padding: 96px 24px;
    background: white;
}

.steps-grid {
    max-width: 1060px;
    margin: 58px auto 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 28px;
}

.step {
    text-align: center;
    padding: 18px;
}

.step-number {
    width: 54px;
    height: 54px;
    margin: 0 auto 20px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 16px 32px rgba(11, 92, 255, 0.3);
}

.step h3 {
    margin: 0 0 12px;
    color: var(--navy-950);
    font-size: 1.18rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.step p {
    margin: 0 auto;
    color: var(--slate-600);
    max-width: 270px;
}

.step-arrow {
    padding-top: 34px;
    color: #94a3b8;
    font-size: 2rem;
    font-weight: 800;
}

/* =========================================================
   CTA Section
   ========================================================= */

.cta-section {
    padding: 90px 24px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 159, 28, 0.22), transparent 28%),
        linear-gradient(135deg, var(--navy-950), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-section h2 {
    margin: 0 auto 16px;
    max-width: 760px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    font-weight: 900;
}

.cta-section p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: #dbeafe;
    font-size: 1.1rem;
}

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

.site-footer {
    padding: 46px 24px;
    background: var(--navy-950);
    color: #cbd5e1;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.legal-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.legal-row strong {
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

/* =========================================================
   Authentication Pages — Login + Shared Auth Styles
   ========================================================= */

.auth-page {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(6, 182, 212, 0.18), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(255, 159, 28, 0.18), transparent 28%),
        linear-gradient(135deg, #06172f 0%, #08224a 45%, #0b5cff 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
}

.auth-left {
    position: relative;
    padding: 48px 64px;
    color: white;
    overflow: hidden;
}

.auth-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
    pointer-events: none;
}

.auth-brand {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.auth-copy {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin-top: 110px;
}

.auth-copy h1 {
    margin: 24px 0 20px;
    font-size: clamp(2.8rem, 5vw, 5.1rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
    font-weight: 900;
}

.auth-copy p {
    max-width: 560px;
    color: #dbeafe;
    font-size: 1.12rem;
    line-height: 1.7;
}

.auth-highlights {
    display: grid;
    gap: 16px;
    margin-top: 36px;
    max-width: 540px;
}

.auth-highlights div {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

.auth-highlights strong {
    display: block;
    color: white;
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.auth-highlights span {
    color: #dbeafe;
    font-size: 0.92rem;
}

.auth-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 28px;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(20px);
}

.auth-card {
    width: 100%;
    max-width: 460px;
    padding: 42px;
    border-radius: 28px;
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 30px 90px rgba(2, 8, 23, 0.25);
}

.auth-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo-mobile {
    display: none;
    margin-bottom: 18px;
    color: #06172f;
    font-weight: 900;
}

.auth-card-header h2 {
    margin: 0 0 10px;
    color: #06172f;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.auth-card-header p {
    margin: 0;
    color: #64748b;
    font-size: 0.98rem;
}

.auth-alert {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    color: #991b1b;
    background: #fee2e2;
    border: 1px solid #fecaca;
    font-weight: 700;
    font-size: 0.92rem;
}

.auth-success {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    color: #166534;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    font-weight: 700;
    font-size: 0.92rem;
}

.auth-success a {
    color: #14532d;
    font-weight: 900;
    text-decoration: underline;
}

.alert {
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
}

.alert-error {
    color: #991b1b;
    background: #fee2e2;
    border: 1px solid #fecaca;
}

.alert-success {
    color: #166534;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
}

.auth-form {
    display: grid;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
}

.form-group textarea {
    padding-top: 14px;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0b5cff;
    background: white;
    box-shadow: 0 0 0 4px rgba(11, 92, 255, 0.12);
}

.auth-submit {
    min-height: 54px;
    margin-top: 8px;
    border: 0;
    border-radius: 999px;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 900;
    font-family: inherit;
    background: linear-gradient(135deg, #ff9f1c, #f97316);
    box-shadow: 0 16px 34px rgba(249, 115, 22, 0.35);
    transition: all 0.25s ease;
}

.auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(249, 115, 22, 0.45);
}

.auth-switch,
.auth-footer {
    margin: 24px 0 0;
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
}

.auth-switch a,
.auth-footer a {
    color: #0b5cff;
    font-weight: 900;
    text-decoration: none;
}

.auth-switch a:hover,
.auth-footer a:hover {
    text-decoration: underline;
}

.back-home {
    display: block;
    margin-top: 18px;
    text-align: center;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.back-home:hover {
    color: #0b5cff;
}

/* =========================================================
   Register Page — Centered Premium Layout
   ========================================================= */

body.auth-page.auth-page-centered {
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(6, 182, 212, 0.22), transparent 28%),
        radial-gradient(circle at 82% 14%, rgba(255, 159, 28, 0.16), transparent 26%),
        radial-gradient(circle at 70% 86%, rgba(139, 92, 246, 0.16), transparent 30%),
        linear-gradient(135deg, #06172f 0%, #08224a 42%, #0b5cff 100%);
}

.auth-center-shell {
    width: 100%;
    min-height: 100vh;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 48px 24px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.auth-center-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(115deg, rgba(255,255,255,0.08), transparent 32%),
        linear-gradient(295deg, rgba(255,255,255,0.06), transparent 35%);
    pointer-events: none;
}

/* Decorative glowing orbs */
.auth-bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.auth-bg-orb-1 {
    width: 360px;
    height: 360px;
    top: -80px;
    left: -80px;
    background: rgba(6, 182, 212, 0.32);
}

.auth-bg-orb-2 {
    width: 460px;
    height: 460px;
    right: -140px;
    bottom: -140px;
    background: rgba(255, 159, 28, 0.24);
}

/* Technical grid background */
.auth-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 92%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.95;
}

/* Centered register card */
.auth-card.register-card {
    position: relative;
    z-index: 10;
    width: min(100%, 520px);
    max-width: 520px;
    margin: 0 auto !important;
    padding: 36px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.99), rgba(248,250,252,0.97));
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow:
        0 40px 110px rgba(2, 8, 23, 0.38),
        0 18px 38px rgba(2, 8, 23, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.9);
    backdrop-filter: blur(18px);
}

/* Register card header */
.register-card .auth-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.register-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-decoration: none;
    color: #06172f;
    font-weight: 900;
    font-size: 1.08rem;
    margin: 0 auto 18px;
}

.register-card .auth-card-header h2 {
    margin: 0 0 8px;
    color: #06172f;
    font-size: 2.15rem;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.register-card .auth-card-header p {
    max-width: 390px;
    margin: 0 auto;
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Register form spacing */
.register-card .auth-form {
    gap: 14px;
}

.register-card .form-group {
    gap: 7px;
}

.register-card .form-group label {
    font-size: 0.86rem;
}

.register-card .form-group input,
.register-card .form-group select {
    min-height: 52px;
    border-radius: 16px;
    background: #f8fafc;
}

.register-card .auth-submit {
    width: 100%;
    min-height: 54px;
    margin-top: 8px;
}

/* Floating background tool cards */
.tool-float {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 240px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px);
    box-shadow:
        0 24px 60px rgba(2, 8, 23, 0.24),
        inset 0 1px 0 rgba(255,255,255,0.15);
    color: white;
}

.tool-float-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.16);
    flex-shrink: 0;
}

.tool-float-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tool-float-text strong {
    font-size: 0.95rem;
    font-weight: 800;
    color: white;
}

.tool-float-text span {
    font-size: 0.84rem;
    color: #dbeafe;
    line-height: 1.35;
}

.tool-float-1 {
    top: 16%;
    left: clamp(24px, 8vw, 150px);
}

.tool-float-2 {
    top: 18%;
    right: clamp(24px, 8vw, 150px);
}

.tool-float-3 {
    bottom: 17%;
    left: clamp(24px, 9vw, 170px);
}

.tool-float-4 {
    bottom: 16%;
    right: clamp(24px, 9vw, 170px);
}

@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.tool-float-1,
.tool-float-4 {
    animation: floatSoft 7s ease-in-out infinite;
}

.tool-float-2,
.tool-float-3 {
    animation: floatSoft 8s ease-in-out infinite;
}

/* =========================================================
   Responsive Design
   ========================================================= */

@media (max-width: 1100px) {
    .tool-float {
        display: none;
    }

    .auth-card.register-card {
        width: min(100%, 520px);
    }
}

@media (max-width: 980px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 900px) {
    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-left {
        display: none;
    }

    .auth-right {
        min-height: 100vh;
        padding: 28px 18px 42px;
        background:
            radial-gradient(circle at 15% 20%, rgba(6, 182, 212, 0.18), transparent 30%),
            radial-gradient(circle at 90% 10%, rgba(255, 159, 28, 0.18), transparent 28%),
            linear-gradient(135deg, #06172f 0%, #08224a 45%, #0b5cff 100%);
    }

    .auth-card {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .auth-logo-mobile {
        display: block;
    }
}

@media (max-width: 640px) {
    .landing-nav-inner {
        padding: 12px 18px;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-link {
        display: none;
    }

    .hero {
        padding: 92px 18px 84px;
    }

    .hero-title {
        font-size: clamp(2.45rem, 14vw, 4rem);
    }

    .hero a {
        width: 100%;
        max-width: 320px;
    }

    .features,
    .how-it-works {
        padding: 72px 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 28px;
        min-height: auto;
    }

    .legal-row {
        flex-direction: column;
        gap: 6px;
    }

    .auth-center-shell {
        padding: 22px 14px;
    }

    .auth-card.register-card {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .register-card .auth-card-header {
        text-align: left;
    }

    .register-brand {
        justify-content: flex-start;
        margin-left: 0;
    }

    .register-card .auth-card-header p {
        margin-left: 0;
    }
}
/* =========================================================
   TekTool Application Dashboard Layout
   Admin / Senior / Junior Shared UI
   Paste at the VERY BOTTOM of style.css
   ========================================================= */

:root {
    --app-bg: #f4f7fb;
    --app-panel: #ffffff;
    --app-border: rgba(226, 232, 240, 0.95);
    --app-text: #0f172a;
    --app-muted: #64748b;
    --app-primary: #0b5cff;
    --app-primary-dark: #003b95;
    --app-success: #10b981;
    --app-warning: #f59e0b;
    --app-danger: #ef4444;
    --app-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
}

/* App body */
body.app-page {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(11, 92, 255, 0.08), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(255, 159, 28, 0.10), transparent 26%),
        linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
    color: var(--app-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Dashboard navbar */
body.app-page .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background:
        linear-gradient(135deg, rgba(6, 23, 47, 0.98), rgba(8, 34, 74, 0.96));
    border-bottom: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 42px rgba(2, 8, 23, 0.20);
    backdrop-filter: blur(18px);
}

body.app-page .nav-inner {
    width: 100%;
    max-width: 1440px;
    min-height: 72px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 24px;
}

body.app-page .nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 1.16rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

body.app-page .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0b5cff, #06b6d4);
    box-shadow: 0 12px 26px rgba(11, 92, 255, 0.35);
    color: white;
}

body.app-page .nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

body.app-page .nav-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border-radius: 999px;
    color: #dbeafe;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 800;
    transition: all 0.2s ease;
}

body.app-page .nav-link:hover {
    color: white;
    background: rgba(255,255,255,0.10);
}

body.app-page .nav-link.active {
    color: white;
    background: rgba(255,255,255,0.16);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

body.app-page .nav-link-icon {
    font-size: 1rem;
}

body.app-page .nav-logout {
    color: #fecaca;
}

body.app-page .nav-logout:hover {
    background: rgba(239, 68, 68, 0.16);
    color: white;
}

body.app-page .nav-user {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

body.app-page .nav-name {
    color: white;
    font-size: 0.92rem;
    font-weight: 800;
}

/* Mobile nav toggle */
body.app-page .nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    cursor: pointer;
}

body.app-page .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: white;
    border-radius: 999px;
}

/* Main content */
.main-content {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 34px 28px 56px;
    flex: 1;
}

/* Page header */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.page-header h1 {
    margin: 0;
    color: #06172f;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.text-muted {
    color: var(--app-muted);
    font-weight: 700;
}

.text-primary {
    color: var(--app-primary);
}

.text-success {
    color: var(--app-success);
}

.text-warning {
    color: var(--app-warning);
}

.text-danger {
    color: var(--app-danger);
}

/* Buttons */
body.app-page .btn,
body.app-page .btn-primary,
body.app-page .btn-outline,
body.app-page .btn-escalate,
body.app-page .btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.22s ease;
}

body.app-page .btn-primary {
    color: white;
    background: linear-gradient(135deg, #ff9f1c, #f97316);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
}

body.app-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.36);
}

body.app-page .btn-outline,
body.app-page .btn {
    color: #0b5cff;
    background: white;
    border: 1px solid #cbd5e1;
}

body.app-page .btn-outline:hover,
body.app-page .btn:hover {
    background: #eaf1ff;
    border-color: #0b5cff;
}

body.app-page .btn-escalate {
    color: white;
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.24);
}

body.app-page .btn-sm {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.82rem;
}

body.app-page .btn-link {
    color: #0b5cff;
    background: transparent;
    padding: 0;
    min-height: auto;
}

/* Cards */
.card,
.stat-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--app-border);
    border-radius: 26px;
    box-shadow: var(--app-shadow);
    overflow: hidden;
}

.card {
    margin-bottom: 24px;
}

.card-header {
    min-height: 68px;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.card-header h2 {
    margin: 0;
    color: #06172f;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -0.025em;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.stats-grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stat-card {
    position: relative;
    padding: 24px;
    min-height: 138px;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -80px;
    top: -80px;
    background: radial-gradient(circle, rgba(11, 92, 255, 0.14), transparent 68%);
}

.stat-number {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 900;
    color: #06172f;
    letter-spacing: -0.055em;
    margin-bottom: 12px;
}

.stat-label {
    position: relative;
    z-index: 1;
    color: var(--app-muted);
    font-size: 0.92rem;
    font-weight: 900;
}

/* Layout columns */
.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    gap: 24px;
    align-items: start;
}

/* Lists */
.request-list,
.activity-list {
    padding: 8px;
}

.request-item,
.activity-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.request-item + .request-item,
.activity-item + .activity-item {
    border-top: 1px solid #eef2f7;
}

.request-item:hover,
.activity-item:hover {
    background: #f8fafc;
}

.request-info,
.activity-detail {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.request-title {
    color: #06172f;
    font-size: 0.98rem;
    font-weight: 900;
}

.request-meta,
.request-desc,
.activity-action,
.activity-time {
    color: var(--app-muted);
    font-size: 0.86rem;
}

.activity-user {
    color: #06172f;
}

/* Badges */
.badge,
.status-badge,
.count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.badge-admin {
    color: #dbeafe;
    background: rgba(11, 92, 255, 0.18);
    border: 1px solid rgba(147, 197, 253, 0.26);
}

.badge-senior {
    color: #dcfce7;
    background: rgba(16, 185, 129, 0.16);
    border: 1px solid rgba(134, 239, 172, 0.24);
}

.badge-junior {
    color: #ffedd5;
    background: rgba(249, 115, 22, 0.16);
    border: 1px solid rgba(253, 186, 116, 0.24);
}

.status-pending,
.status-open {
    color: #92400e;
    background: #fef3c7;
}

.status-in_progress {
    color: #1d4ed8;
    background: #dbeafe;
}

.status-resolved {
    color: #166534;
    background: #dcfce7;
}

.count-badge {
    color: #0b5cff;
    background: #eaf1ff;
}

/* Forms */
body.app-page .form-group {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

body.app-page .form-group label {
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 900;
}

body.app-page .form-group input,
body.app-page .form-group select,
body.app-page .form-group textarea,
body.app-page input[type="text"],
body.app-page input[type="email"],
body.app-page input[type="password"],
body.app-page input[type="file"],
body.app-page select,
body.app-page textarea {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
}

body.app-page textarea {
    min-height: 120px;
    padding-top: 14px;
}

body.app-page input:focus,
body.app-page select:focus,
body.app-page textarea:focus {
    border-color: #0b5cff;
    background: white;
    box-shadow: 0 0 0 4px rgba(11, 92, 255, 0.12);
}

/* Alerts */
body.app-page .alert,
body.app-page .auth-alert,
body.app-page .auth-success {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 800;
}

body.app-page .alert-error {
    color: #991b1b;
    background: #fee2e2;
    border: 1px solid #fecaca;
}

body.app-page .alert-success {
    color: #166534;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
}

/* Tables */
.table-wrap {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.data-table th {
    color: #334155;
    background: #f8fafc;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.data-table td {
    font-size: 0.92rem;
}

/* Filters */
.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filter-tab {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    color: #475569;
    background: white;
    border: 1px solid #cbd5e1;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.9rem;
}

.filter-tab.active,
.filter-tab:hover {
    color: white;
    background: #0b5cff;
    border-color: #0b5cff;
}

/* Detail pages */
.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f7;
}

.detail-label {
    color: #64748b;
    font-size: 0.86rem;
    font-weight: 900;
}

.description-box,
.kb-issue,
.kb-resolution {
    padding: 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
}

.kb-issue {
    margin-bottom: 12px;
}

.kb-resolution {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

/* Empty state */
.empty-state {
    padding: 34px 24px;
    text-align: center;
    color: #64748b;
    font-weight: 700;
}

/* Availability toggle */
.availability-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 18px rgba(15,23,42,0.06);
    font-weight: 900;
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 28px;
    display: inline-block;
}

.toggle-switch input {
    display: none;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    border-radius: 999px;
    background: #cbd5e1;
    transition: 0.2s;
}

.toggle-slider::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: white;
    transition: 0.2s;
    box-shadow: 0 4px 10px rgba(15,23,42,0.22);
}

.toggle-switch input:checked + .toggle-slider {
    background: #10b981;
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(20px);
}

/* Chat */
.chat-messages {
    min-height: 280px;
    max-height: 420px;
    overflow-y: auto;
    padding: 18px;
    background: #f8fafc;
}

.chat-msg {
    display: flex;
    margin-bottom: 12px;
}

.chat-msg-user {
    justify-content: flex-end;
}

.chat-msg-ai {
    justify-content: flex-start;
}

.chat-bubble {
    max-width: 82%;
    padding: 12px 14px;
    border-radius: 18px;
    font-size: 0.92rem;
    line-height: 1.5;
}

.chat-msg-user .chat-bubble {
    color: white;
    background: #0b5cff;
    border-bottom-right-radius: 6px;
}

.chat-msg-ai .chat-bubble {
    color: #0f172a;
    background: white;
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 6px;
}

.chat-input-area {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
}

/* Footer */
.app-footer {
    margin-top: auto;
    padding: 22px 28px;
    background: rgba(255,255,255,0.82);
    border-top: 1px solid #e2e8f0;
}

.app-footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 700;
}

.app-footer p {
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .stats-grid,
    .stats-grid-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    body.app-page .nav-inner {
        min-height: 68px;
        padding: 0 18px;
        flex-wrap: wrap;
        gap: 12px;
    }

    body.app-page .nav-toggle {
        display: block;
        margin-left: auto;
    }

    body.app-page .nav-menu {
        order: 4;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0 0 14px;
    }

    body.app-page .nav-menu.show {
        display: flex;
    }

    body.app-page .nav-link {
        width: 100%;
        border-radius: 14px;
    }

    body.app-page .nav-user {
        display: none;
    }

    .main-content {
        padding: 26px 18px 46px;
    }

    .page-header {
        align-items: flex-start;
    }

    .stats-grid,
    .stats-grid-5 {
        grid-template-columns: 1fr;
    }

    .request-item,
    .activity-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .chat-input-area {
        flex-direction: column;
    }

    .app-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
/* =========================================================
   FINAL APP DASHBOARD SAFETY PATCH
   Keep this at the VERY BOTTOM of style.css
   ========================================================= */

body.app-page .main-content {
    display: block;
}

/* Fix older cards that still have direct h2/form content */
body.app-page .card > form,
body.app-page .card > .form-group,
body.app-page .card > h2 {
    margin: 24px;
}

body.app-page .card > h2:first-child {
    margin-bottom: 12px;
}

body.app-page .card form {
    max-width: 100%;
}

/* Request action layout */
body.app-page .request-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Fix old inline Manage buttons visually */
body.app-page .request-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px !important;
    border-radius: 999px !important;
    background: #0b5cff !important;
    color: white !important;
    text-decoration: none !important;
    font-size: 0.8rem !important;
    font-weight: 900 !important;
}

/* Fix card inner divs that were written with inline padding */
body.app-page .card > div:not(.card-header):not(.request-list):not(.activity-list):not(.table-wrap):not(.chat-messages):not(.chat-input-area) {
    border-radius: inherit;
}

/* Better table behavior on admin manage users */
body.app-page .data-table select {
    min-height: 36px;
    border-radius: 10px;
}

/* Keep table action forms clean */
body.app-page .data-table form {
    margin: 0;
}

/* Better video display */
body.app-page video {
    background: #020617;
    border: 1px solid #e2e8f0;
}

/* Prevent browser default blue/purple links from showing in app */
body.app-page a {
    transition: all 0.2s ease;
}

/* Fix file input height so upload controls look cleaner */
body.app-page input[type="file"] {
    padding-top: 10px;
}

/* Make direct card content readable */
body.app-page .card > p,
body.app-page .card > span {
    margin: 20px 24px;
}

/* Better small inline muted text */
body.app-page [style*="var(--muted)"] {
    color: var(--app-muted) !important;
}

/* Support older CSS variable names used in existing pages */
body.app-page {
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --radius: 16px;
    --danger: #ef4444;
    --success: #10b981;
}

/* Better dashboard spacing after footer/header update */
body.app-page .page-header + .card,
body.app-page .page-header + .stats-grid,
body.app-page .page-header + .filter-tabs,
body.app-page .page-header + .alert {
    margin-top: 0;
}

/* Improve knowledge base cards */
body.app-page .kb-card {
    overflow: hidden;
}

body.app-page .kb-card h3 {
    color: #06172f;
    font-weight: 900;
}

/* Make old inline search forms look better */
body.app-page form[method="GET"] input[type="text"] {
    min-height: 46px;
}

/* Mobile polish */
@media (max-width: 640px) {
    body.app-page .card > form,
    body.app-page .card > .form-group,
    body.app-page .card > h2 {
        margin: 18px;
    }

    body.app-page .data-table th,
    body.app-page .data-table td {
        padding: 12px;
        font-size: 0.84rem;
    }

    body.app-page .request-actions {
        width: 100%;
    }

    body.app-page .request-actions a,
    body.app-page .request-actions .status-badge {
        width: 100%;
    }
}
/* =========================================================
   FINAL ROLE BADGE ICON + CONTRAST FIX
   Add at the VERY BOTTOM of style.css
   ========================================================= */

/* Make table/user role badges clearer */
body.app-page .badge {
    gap: 6px;
    font-weight: 900;
}

/* Admin badge */
body.app-page .badge-admin {
    color: #1d4ed8;
    background: #dbeafe;
    border: 1px solid #bfdbfe;
}

body.app-page .badge-admin::before {
    content: "🛡️";
}

/* Lead Tech badge */
body.app-page .badge-senior {
    color: #047857;
    background: #d1fae5;
    border: 1px solid #a7f3d0;
}

body.app-page .badge-senior::before {
    content: "🛠️";
}

/* Field Tech badge */
body.app-page .badge-junior {
    color: #c2410c;
    background: #ffedd5;
    border: 1px solid #fed7aa;
}

body.app-page .badge-junior::before {
    content: "🧰";
}

/* Keep navbar user badge readable on dark background */
body.app-page .nav-user .badge-admin {
    color: #dbeafe;
    background: rgba(11, 92, 255, 0.24);
    border: 1px solid rgba(147, 197, 253, 0.35);
}

body.app-page .nav-user .badge-senior {
    color: #dcfce7;
    background: rgba(16, 185, 129, 0.20);
    border: 1px solid rgba(134, 239, 172, 0.30);
}

body.app-page .nav-user .badge-junior {
    color: #ffedd5;
    background: rgba(249, 115, 22, 0.20);
    border: 1px solid rgba(253, 186, 116, 0.30);
}