/* ============================================================
   Trackara Pro — Shared Design System
   Visual identity aligned with Trackara EDU portal
   - Inter Tight for headings (tight letter-spacing)
   - Flat, minimal cards (no heavy glows)
   - Generous whitespace (120px section padding)
   - Teal used sparingly as true accent
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
    /* Primary */
    --primary:         #17afa5;
    --primary-color:   #17afa5;    /* legacy */
    --primary-dark:    #0d8b82;
    --primary-light:   #1fc4b8;
    --primary-glow:    rgba(23, 175, 165, 0.3);
    --primary-subtle:  rgba(23, 175, 165, 0.06);
    --primary-border:  rgba(23, 175, 165, 0.2);

    /* Backgrounds */
    --bg:            #0a0a0a;
    --bg-black:      #0a0a0a;      /* legacy */
    --bg-2:          #0f0f0f;
    --bg-3:          #141414;
    --bg-card:       #161616;
    --bg-raised:     #1c1c1c;
    --bg-dark:       #121212;      /* legacy */
    --bg-card-hover: #1c1c1c;

    /* Borders */
    --border:       #1f1f1f;
    --border-2:     #2a2a2a;
    --border-dark:  #2a2a2a;       /* legacy */
    --border-light: #333333;       /* legacy */

    /* Text */
    --text-1:         #f0f0f0;
    --text-2:         #909090;
    --text-3:         #555555;
    --text-primary:   #f0f0f0;     /* legacy */
    --text-secondary: #909090;     /* legacy */
    --text-muted:     #555555;     /* legacy */

    /* Accents */
    --green:         #10b981;
    --orange:        #f59e0b;
    --red:           #ef4444;
    --blue:          #3b82f6;
    --purple:        #8b5cf6;
    --accent-green:  #10b981;      /* legacy */
    --accent-orange: #f59e0b;      /* legacy */
    --accent-red:    #ef4444;      /* legacy */
    --accent-blue:   #3b82f6;      /* legacy */
    --accent-purple: #8b5cf6;      /* legacy */

    /* Status */
    --status-pending:     #f59e0b;
    --status-confirmed:   #3b82f6;
    --status-in-progress: #8b5cf6;
    --status-completed:   #10b981;
    --status-cancelled:   #ef4444;

    /* Radius */
    --radius-sm:  8px;
    --radius:     14px;
    --radius-lg:  20px;
    --radius-btn: 10px;

    /* Layout */
    --section-pad: 120px;
    --container:   1240px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--text-1);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* --- Typography --- */
h1, h2, h3 {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--text-1);
}
h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-1);
}
.heading-xl {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.0;
}
.heading-lg {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
}
.heading-md {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.heading-sm {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.body-lg  { font-size: 18px; line-height: 1.7; color: var(--text-2); }
.body-md  { font-size: 16px; line-height: 1.7; color: var(--text-2); }
.body-sm  { font-size: 14px; line-height: 1.65; color: var(--text-2); }
.caption  { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-3); }
.accent   { color: var(--primary); }

/* Gradient text (legacy alias) */
.gradient-text-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Layout --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}
.section    { padding: var(--section-pad) 0; }
.section-sm { padding: 80px 0; }
.section-lg { padding: 160px 0; }

/* --- Header --- */
.pro-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 68px;
    background: rgba(10, 10, 10, 0.9);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.pro-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    border-color: var(--border-2);
}
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-text {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-1);
}
.logo-accent { color: var(--primary); }

/* Header badge */
.pro-badge,
.edu-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-subtle);
    border: 1px solid var(--primary-border);
    padding: 3px 8px;
    border-radius: 5px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--primary);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 11px 24px;
    border-radius: var(--radius-btn);
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
    touch-action: manipulation;
}
.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: transparent;
    color: var(--text-2);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 11px 24px;
    border-radius: var(--radius-btn);
    border: 1px solid var(--border-2);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    touch-action: manipulation;
}
.btn-secondary:hover {
    border-color: var(--text-3);
    color: var(--text-1);
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
    touch-action: manipulation;
}
.btn-ghost:hover { gap: 10px; }

.btn-sm  { padding: 8px 16px !important; font-size: 13px !important; }
.btn-lg  { padding: 15px 32px !important; font-size: 16px !important; letter-spacing: -0.02em !important; }

/* --- Nav Links --- */
.nav-link-dark {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-3);
    text-decoration: none;
    transition: color 0.15s ease, background 0.15s ease;
    touch-action: manipulation;
    white-space: nowrap;
}
.nav-link-dark:hover {
    color: var(--text-1);
    background: rgba(255, 255, 255, 0.04);
}
.nav-link-dark.active { color: var(--text-1); }

/* --- Download Dropdown --- */
.download-dropdown { position: relative; }

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-btn);
    color: var(--text-2);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: manipulation;
}
.download-btn:hover {
    border-color: var(--text-3);
    color: var(--text-1);
}

.download-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}
.download-dropdown.active .download-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.download-menu-header {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    color: var(--text-3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.download-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--text-2);
    text-decoration: none;
    transition: all 0.15s ease;
    border-bottom: 1px solid var(--border);
}
.download-option:last-child { border-bottom: none; }
.download-option:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-1);
    padding-left: 20px;
}
.download-option i { font-size: 22px; width: 30px; text-align: center; color: var(--primary); }
.download-option-text small { display: block; font-size: 11px; color: var(--text-3); }
.download-option-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-1); }

/* --- Features Dropdown --- */
.features-dropdown { position: relative; }
.features-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
    max-width: calc(100vw - 32px);
}
.features-dropdown.active .features-menu,
.features-dropdown:hover .features-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- Hamburger --- */
.hamburger-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border-2);
    border-radius: var(--radius-sm);
    color: var(--text-2);
    cursor: pointer;
    font-size: 15px;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.hamburger-btn:hover { border-color: var(--text-3); color: var(--text-1); }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-3);
    border-left: 1px solid var(--border-2);
    z-index: 2000;
    padding: 80px 24px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: right 0.28s ease;
}
.mobile-menu.active { right: 0; }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 1999;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.28s ease;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.mobile-close-btn {
    position: absolute;
    top: 18px; right: 18px;
    background: none;
    border: 1px solid var(--border-2);
    border-radius: var(--radius-sm);
    width: 32px; height: 32px;
    color: var(--text-3);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}
.mobile-close-btn:hover { color: var(--text-1); border-color: var(--text-3); }

.mobile-logo {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-1);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 24px;
}
.mobile-nav .nav-link-dark {
    width: 100%;
    height: 44px;
}

.mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-ctas .btn-primary,
.mobile-ctas .btn-secondary {
    justify-content: center;
    width: 100%;
}

/* --- Cards --- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.card:hover {
    border-color: var(--border-2);
    background: var(--bg-raised);
}

.card-feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: border-color 0.25s ease;
}
.card-feature:hover { border-color: var(--primary-border); }

.card-accent {
    background: var(--bg-card);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius);
    padding: 32px;
}

/* --- Divider --- */
.divider { border: none; border-top: 1px solid var(--border); }

/* --- Tag / Badge --- */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Legacy badge alias */
.badge-dark {
    background: var(--primary-subtle);
    color: var(--primary);
    border: 1px solid var(--primary-border);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- Check List --- */
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.5;
}
.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 11px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* --- Step Number --- */
.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Inter Tight', 'Inter', sans-serif;
}

/* --- Gradient Callout (CTA block) --- */
.grad-callout {
    background: var(--bg-card);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-lg);
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.grad-callout::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

/* --- Forms --- */
.form-group { margin-bottom: 18px; }
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 7px;
    letter-spacing: -0.01em;
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-sm);
    color: var(--text-1);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.15s ease;
    appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--primary); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-3); }
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23555' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: var(--bg-card);
    padding-right: 36px;
}
.form-select option { background: var(--bg-3); }

/* --- Trust Bar --- */
.trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
    overflow: hidden;
}
.trust-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    height: 52px;
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.trust-bar-inner::-webkit-scrollbar { display: none; }
.trust-signal {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 24px;
    border-right: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: 0.01em;
}
.trust-signal:first-child { padding-left: 0; }
.trust-signal:last-child  { border-right: none; }
.trust-signal i           { font-size: 11px; color: var(--primary); }
.trust-signal strong      { color: var(--text-2); font-weight: 600; }

/* --- Device Frames --- */
.device-frame {
    background: var(--bg-raised);
    border: 1px solid var(--border-2);
    border-radius: 12px;
    overflow: hidden;
}
.device-frame-bar {
    height: 32px;
    background: var(--bg-3);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 6px;
    flex-shrink: 0;
}
.device-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border-2);
    flex-shrink: 0;
}
.device-url-bar {
    flex: 1;
    height: 18px;
    background: var(--bg-raised);
    border-radius: 4px;
    margin: 0 10px;
    border: 1px solid var(--border);
}
.device-frame img { width: 100%; height: auto; display: block; }

.device-frame-phone {
    background: var(--bg-raised);
    border: 1px solid var(--border-2);
    border-radius: 28px;
    overflow: hidden;
}
.device-frame-phone img { width: 100%; height: auto; display: block; }

/* --- Footer --- */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-logo {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-1);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}
.footer-tagline {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.65;
    max-width: 260px;
    margin-bottom: 16px;
}
.footer-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
    font-size: 14px;
    color: var(--text-3);
    text-decoration: none;
    transition: color 0.15s ease;
}
.footer-link:hover { color: var(--text-1); }
.footer-link-muted {
    font-size: 13px;
    color: var(--text-3);
    text-decoration: none;
    transition: color 0.15s ease;
}
.footer-link-muted:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p,
.footer-bottom a {
    font-size: 13px;
    color: var(--text-3);
    text-decoration: none;
}
.footer-bottom a:hover { color: var(--text-2); }

/* --- Animations --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease forwards; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    :root { --section-pad: 96px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root { --section-pad: 72px; --container: 100%; }
    .container { padding: 0 20px; }
    .header-inner { padding: 0 20px; }
    .desktop-nav { display: none; }
    .hamburger-btn { display: flex; }

    /* Failsafe: hide desktop dropdowns on mobile */
    .features-dropdown .features-menu { display: none !important; }
    .download-menu {
        min-width: 200px;
        right: -8px;
        max-width: calc(100vw - 32px);
    }
    .nav-link-dark {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .heading-xl { font-size: clamp(36px, 10vw, 48px); }
    .heading-lg { font-size: clamp(28px, 7vw, 40px); }
    .grad-callout { padding: 48px 24px; }
    .trust-bar-inner { padding: 0 20px; }
    .trust-signal   { padding: 0 16px; font-size: 11px; }
}

@media (max-width: 480px) {
    .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom  { flex-direction: column; text-align: center; }
    .btn-lg         { padding: 13px 24px !important; font-size: 15px !important; }
    .grad-callout   { padding: 40px 20px; }
}

/* --- Touch Targets (WCAG 2.5.5) --- */
.nav-link-dark,
.btn-primary,
.btn-secondary,
.btn-ghost,
.download-btn,
.download-option,
.mobile-menu a,
.mobile-menu button {
    touch-action: manipulation;
}

/* --- Mobile submenu spacing override --- */
.mobile-menu nav > div[style*="gap"] { gap: 8px !important; }
.mobile-menu nav > div[style*="gap"] .nav-link-dark {
    padding: 10px 12px !important;
    min-height: 44px;
    display: flex;
    align-items: center;
}
