/* ═══════════════════════════════════════════════════════
   ISEN Design System — Dark Modern Theme
   ═══════════════════════════════════════════════════════ */

/* Fonts loaded via <link> in header.php for better performance */

/* ── CSS Variables ── */
:root {
    /* Dark theme (default) - red-tinted like installer */
    --bg:           #050505;
    --surface:      #0d0d0f;
    --surface-2:    #141416;
    --surface-3:    #1a1a1d;
    --border:       rgba(255,255,255,0.07);
    --border-hover: rgba(255,255,255,0.14);
    --text:         #e8eaf0;
    --text-muted:   #7a7f8e;
    --text-dim:     #3d4252;

    /* Brand — Cherry Red (matches installer theme) */
    --blue:         #d90429;
    --blue-dim:     rgba(217,4,41,0.12);
    --blue-glow:    rgba(217,4,41,0.25);
    --violet:       #8b0000;
    --violet-dim:   rgba(139,0,0,0.12);
    --cyan:         #f87171;
    --cyan-dim:     rgba(248,113,113,0.10);
    /* Keep accent for secondary actions */
    --accent:       #4f8ef7;
    --accent-dim:   rgba(79,142,247,0.12);

    /* Status */
    --success:      #10b981;
    --success-dim:  rgba(16,185,129,0.12);
    --danger:       #f43f5e;
    --danger-dim:   rgba(244,63,94,0.12);
    --warning:      #f59e0b;
    --warning-dim:  rgba(245,158,11,0.12);
    --info:         var(--blue);
    --info-dim:     var(--blue-dim);

    /* Typography */
    --font-display: 'Syne', 'Tajawal', sans-serif;
    --font-body:    'Tajawal', 'Syne', sans-serif;
    --font-mono:    'DM Mono', 'Courier New', monospace;

    /* Layout */
    --radius:       8px;
    --radius-lg:    12px;
    --radius-xl:    16px;
    --shadow:       0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg:    0 8px 48px rgba(0,0,0,0.6);

    --navbar-h:     64px;
}

/* Light theme */
body.light {
    --bg:           #f0f2f7;
    --surface:      #ffffff;
    --surface-2:    #f8f9fc;
    --surface-3:    #eef0f5;
    --border:       rgba(0,0,0,0.07);
    --border-hover: rgba(0,0,0,0.14);
    --text:         #0f1117;
    --text-muted:   #60657a;
    --text-dim:     #b0b5c4;
    --blue-dim:     rgba(217,4,41,0.08);
    --blue-glow:    rgba(217,4,41,0.15);
    --shadow:       0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg:    0 8px 32px rgba(0,0,0,0.12);
}

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    background-image: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(100,0,0,0.15) 0%, transparent 60%);
    color: var(--text);
    line-height: 1.65;
    font-size: 15px;
    transition: background 0.3s, color 0.3s;
    min-height: 100vh;
}

/* Subtle grid background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(79,142,247,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,142,247,0.015) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}
body.light::before { opacity: 0.5; }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 600; line-height: 1.3; margin-bottom: 0.75rem; }
h1 { font-size: 2.25rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

a { color: var(--blue); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }

p { margin-bottom: 0.5rem; }
code, pre { font-family: var(--font-mono); }

/* ── Layout ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.text-center { text-align: center; }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--blue); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.font-mono { font-family: var(--font-mono); }
.d-flex { display: flex; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }

/* ── Navbar ── */
.navbar {
    height: var(--navbar-h);
    background: rgba(10,12,16,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
body.light .navbar {
    background: rgba(240,242,247,0.88);
}
.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}
.navbar-brand .accent { color: var(--blue); text-shadow: 0 0 20px var(--blue-glow); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}
.nav-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); opacity: 1; }
.nav-links .active { color: var(--blue); }

/* Language & theme toggles */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.nav-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.65rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.nav-toggle-btn:hover { border-color: var(--border-hover); color: var(--text); background: var(--surface-3); opacity: 1; }
.nav-toggle-btn svg { width: 13px; height: 13px; }

/* ── Cards ── */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: border-color 0.2s;
    position: relative;
}
.card:hover { border-color: var(--border-hover); }
.card-accent-blue  { border-top: 2px solid var(--blue); }
.card-accent-green { border-top: 2px solid var(--success); }
.card-accent-red   { border-top: 2px solid var(--danger); }
.card-accent-violet{ border-top: 2px solid var(--violet); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1.2rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    font-family: var(--font-body);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-primary {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}
.btn-primary:hover { background: #b5021f; border-color: #b5021f; transform: translateY(-1px); box-shadow: 0 4px 14px var(--blue-glow); opacity: 1; }

.btn-outline {
    background: transparent;
    border-color: var(--border-hover);
    color: var(--text-muted);
}
.btn-outline:hover { background: var(--surface-2); color: var(--text); border-color: var(--border-hover); opacity: 1; }

.btn-danger  { background: var(--danger);  color: #fff; border-color: var(--danger); }
.btn-danger:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn-success { background: var(--success); color: #fff; border-color: var(--success); }
.btn-success:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-warning { background: var(--warning); color: #fff; border-color: var(--warning); }
.btn-sm { padding: 0.3rem 0.7rem; font-size: 0.8rem; }
.btn-xs { padding: 0.2rem 0.5rem; font-size: 0.75rem; }

/* ── Forms ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}
.form-control {
    width: 100%;
    padding: 0.65rem 1rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-control::placeholder { color: var(--text-dim); }
.form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-dim);
}
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 90px; }

/* ── Alerts ── */
.alert {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border: 1px solid;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.alert-success { background: var(--success-dim); color: var(--success); border-color: rgba(16,185,129,0.3); }
.alert-danger  { background: var(--danger-dim);  color: var(--danger);  border-color: rgba(244,63,94,0.3); }
.alert-warning { background: var(--warning-dim); color: var(--warning); border-color: rgba(245,158,11,0.3); }
.alert-info    { background: var(--blue-dim);    color: var(--blue);    border-color: rgba(79,142,247,0.3); }

/* ── Badges ── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.badge-blue    { background: var(--blue-dim);    color: var(--blue); }
.badge-green   { background: var(--success-dim); color: var(--success); }
.badge-red     { background: var(--danger-dim);  color: var(--danger); }
.badge-amber   { background: var(--warning-dim); color: var(--warning); }
.badge-violet  { background: var(--violet-dim);  color: var(--violet); }
.badge-muted   { background: var(--surface-3);   color: var(--text-muted); }

/* ── Tables ── */
.table-wrap { overflow-x: auto; }
table.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}
table.data-table th {
    padding: 0.75rem 1rem;
    text-align: right;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
[dir=ltr] table.data-table th,
[dir=ltr] table.data-table td { text-align: left; }
table.data-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    color: var(--text);
}
table.data-table tr:last-child td { border-bottom: none; }
table.data-table tr:hover td { background: var(--surface-2); }
table.data-table.def-table th { width: 35%; font-size: 0.82rem; padding: 0.65rem 0.75rem; }
table.data-table.def-table td { padding: 0.65rem 0.75rem; }

/* ── Hero ── */
.hero {
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(217,4,41,0.10) 0%, transparent 70%);
    pointer-events: none;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(79,142,247,0.3);
    background: var(--blue-dim);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #e8eaf0 20%, #4f8ef7 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
body.light .hero h1 {
    background: linear-gradient(135deg, #111 20%, var(--blue) 80%);
    -webkit-background-clip: text;
    background-clip: text;
}
.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Verify box */
.verify-box {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 0.4rem;
}
.verify-box .form-control {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
    box-shadow: none;
    padding: 0.6rem 1rem;
}
.verify-box .form-control:focus { box-shadow: none; border: none; }
.verify-box .btn { border-radius: 10px; padding: 0.6rem 1.5rem; }

/* ── Feature cards grid ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    transition: border-color 0.25s, transform 0.25s;
}
.feature-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.feature-icon {
    width: 44px; height: 44px;
    background: var(--blue-dim);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    color: var(--blue);
}

/* ── Stats row ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
}
.stat-number { font-size: 2.25rem; font-weight: 700; font-family: var(--font-display); line-height: 1; }
.stat-label  { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }

/* ── Auth cards ── */
.auth-wrap {
    min-height: calc(100vh - var(--navbar-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}
.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    position: relative;
}
.auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    border-radius: 999px;
}
.auth-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.auth-sub   { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 2rem; }
.auth-link  { font-size: 0.85rem; color: var(--text-muted); margin-top: 1.5rem; text-align: center; }
.auth-link a { color: var(--blue); font-weight: 500; }

/* ── ISEN number display ── */
.isen-code {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--blue);
    background: var(--blue-dim);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    display: inline-block;
}
.isen-code-lg {
    font-size: 1.6rem;
    padding: 0.75rem 1.5rem;
}

/* ── Registry card ── */
.registry-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s, transform 0.2s;
}
.registry-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.registry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

/* ── Verify result ── */
.verify-result {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-top: 1.5rem;
}
.verify-success-icon {
    width: 56px; height: 56px;
    background: var(--success-dim);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--success);
}
.verify-error-icon {
    width: 56px; height: 56px;
    background: var(--danger-dim);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    color: var(--danger);
}

/* ── Sidebar layout (admin/entity) ── */
.page-layout {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 0;
}
.sidebar {
    width: 240px;
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--navbar-h) + 1.5rem);
}
.sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}
.sidebar-nav a:hover  { color: var(--text); background: var(--surface-2); opacity: 1; }
.sidebar-nav a.active { color: var(--blue); background: var(--blue-dim); }
.sidebar-nav .icon { width: 16px; height: 16px; flex-shrink: 0; }
.main-content { flex: 1; min-width: 0; }

/* ── Pagination ── */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.2s;
    text-decoration: none;
}
.pagination a:hover { border-color: var(--border-hover); color: var(--text); background: var(--surface-2); opacity: 1; }
.pagination .current { background: var(--blue); color: #fff; border-color: var(--blue); }
.pagination .ellipsis { border: none; cursor: default; }

/* ── Version timeline ── */
.version-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.version-item {
    padding: 0.75rem 0 0.75rem 1.25rem;
    border-inline-start: 2px solid var(--border);
    position: relative;
}
[dir=rtl] .version-item { padding: 0.75rem 1.25rem 0.75rem 0; border-inline-start: 2px solid var(--border); }
.version-item::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--surface-3);
    border: 2px solid var(--border-hover);
    position: absolute;
    top: 1.1rem;
    inset-inline-start: -5px;
}
.version-item.approved::before { background: var(--success); border-color: var(--success); }

/* ── Modal overlay ── */
.modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    align-items: center; justify-content: center;
    z-index: 9000;
    padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    width: 100%;
    max-width: 460px;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.2s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(8px); } to { opacity: 1; transform: none; } }

/* ── Divider ── */
hr.divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

/* ── Diff highlight ── */
.diff-changed { color: var(--success); font-weight: 600; background: var(--success-dim); padding: 0 3px; border-radius: 3px; }

/* ── Search filter bar ── */
.filter-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    align-items: flex-end;
}
.filter-bar .form-control { flex: 1; min-width: 200px; }
.filter-bar .form-control-sm { padding: 0.5rem 0.85rem; font-size: 0.85rem; }

/* ── Status dots ── */
.status-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    margin-inline-end: 5px;
}
.dot-green  { background: var(--success); box-shadow: 0 0 6px var(--success); }
.dot-red    { background: var(--danger); }
.dot-amber  { background: var(--warning); }
.dot-gray   { background: var(--text-dim); }

/* ── Footer ── */
footer {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .page-layout { flex-direction: column; }
    .sidebar { width: 100%; position: static; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { padding: 3rem 0 2rem; }
    .hero h1 { font-size: 1.85rem; }
    .navbar-brand span:not(.accent) { display: none; }
    table.data-table th, table.data-table td { padding: 0.6rem 0.6rem; }
}

@media (max-width: 480px) {
    .auth-card { padding: 1.75rem 1.25rem; }
    .verify-box { flex-direction: column; border-radius: var(--radius-lg); }
    .verify-box .btn { border-radius: var(--radius); }
}

/* ── Animations ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }
.fade-up { animation: fadeUp 0.35s ease both; }
.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.10s; }
.delay-3 { animation-delay: 0.15s; }
