/* ============================================
   CHOX INVESTMENTS · Minimal Blue Theme
   ============================================ */

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

:root {
    /* Blue-only palette */
    --navy-900: #0f2342;
    --navy-800: #162e53;
    --navy-700: #1a365d;
    --blue-600: #2563eb;
    --blue-500: #3182ce;
    --blue-400: #4299e1;
    --blue-100: #dbeafe;
    --blue-50:  #eff6ff;

    --primary:   #1a365d;
    --accent:    #3182ce;
    --accent-2:  #2563eb;

    --text:      #1a202c;
    --muted:     #64748b;
    --muted-2:   #94a3b8;
    --border:    #e5e9f0;
    --bg:        #ffffff;
    --bg-soft:   #f7f9fc;

    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    --shadow-xs: 0 1px 2px rgba(15, 35, 66, 0.05);
    --shadow-sm: 0 2px 6px rgba(15, 35, 66, 0.06);
    --shadow-md: 0 6px 20px rgba(15, 35, 66, 0.08);
    --shadow-lg: 0 12px 32px rgba(15, 35, 66, 0.1);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-pill: 999px;
}

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

body {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "cv02", "cv11";
}

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

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

/* ============================================
   Typography — small, modern, clean
   ============================================ */

h1, h2, h3, h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--primary);
}

h1 { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: 1.875rem; letter-spacing: -0.025em; }
h3 { font-size: 1.125rem; }
h4 { font-size: 0.9rem; font-weight: 600; }

p {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.7;
}

.eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--blue-50);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-large {
    padding: 13px 28px;
    font-size: 0.9rem;
}

.btn-block { width: 100%; }

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.2s ease;
}

.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 7px;
    color: white;
    font-size: 0.95rem;
}

.logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.logo-sub {
    font-size: 0.6rem;
    color: var(--muted-2);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 3px;
}

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

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

.nav-link:not(.nav-cta):hover,
.nav-link.active { color: var(--accent); }

.nav-cta {
    padding: 9px 18px;
    background: var(--accent);
    color: white !important;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.nav-cta:hover { background: var(--primary); }

.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    color: var(--primary);
    cursor: pointer;
}

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

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 0 90px;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.55);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 35, 66, 0.92) 0%, rgba(26, 54, 93, 0.82) 60%, rgba(49, 130, 206, 0.6) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-400);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.25);
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 0.975rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    margin-bottom: 1.75rem;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 580px;
}

.stat {
    flex: 1;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:last-child {
    padding-right: 0;
    border-right: none;
}

.stat:not(:first-child) {
    padding-left: 1.5rem;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    line-height: 1;
    opacity: 1;            /* always visible — JS no longer touches opacity */
    white-space: nowrap;
}

.stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

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

section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* ============================================
   About
   ============================================ */

.about { background: var(--bg); }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.about-text p { margin-bottom: 0.85rem; }

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.75rem;
}

.feature {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.feature:hover {
    border-color: var(--accent);
    background: white;
}

.feature-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.feature h4 {
    font-size: 0.875rem;
    margin-bottom: 2px;
    color: var(--primary);
}

.feature p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

.about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Products
   ============================================ */

.products { background: var(--bg-soft); }

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

.product-card {
    background: white;
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.product-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-card > p {
    font-size: 0.825rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.product-specs {
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
}

.spec {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.78rem;
}

.spec > span:first-child { color: var(--muted); }
.spec > span:last-child { color: var(--primary); font-weight: 600; }

/* ============================================
   Sizes
   ============================================ */

.sizes { background: var(--bg); }

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

.size-card {
    background: var(--bg-soft);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.size-card:hover {
    border-color: var(--accent);
    background: white;
    transform: translateY(-3px);
}

.size-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.size-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.size-card p {
    font-size: 0.825rem;
    line-height: 1.55;
    margin-bottom: 0.85rem;
}

.size-meta {
    display: inline-block;
    padding: 3px 10px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
}

/* ============================================
   Services
   ============================================ */

.services { background: var(--bg-soft); }

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

.service-card {
    background: white;
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.service-card p {
    font-size: 0.825rem;
    line-height: 1.55;
    margin: 0;
}

/* ============================================
   Industries
   ============================================ */

.industries { background: var(--bg); }

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

.industry-card {
    background: white;
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.industry-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.industry-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.industry-card p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

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

.cta {
    position: relative;
    color: white;
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
    isolation: isolate;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.45);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 35, 66, 0.9) 0%, rgba(26, 54, 93, 0.8) 100%);
}

.cta-content {
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    color: white;
    margin-bottom: 0.85rem;
}

.cta-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.75rem;
}

.cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Contact
   ============================================ */

.contact { background: var(--bg-soft); }

.contact-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.contact-intro {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    transition: border-color 0.2s ease;
}

.contact-item:hover { border-color: var(--accent); }

.contact-item-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 2px;
    color: var(--primary);
    font-size: 0.8rem;
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
}

.contact-item a:hover { text-decoration: underline; }

.contact-item p {
    font-size: 0.825rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* Form */
.contact-form {
    background: white;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    background: white;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

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

.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo-text { color: white; }
.footer-brand .logo-sub { color: rgba(255, 255, 255, 0.5); }
.footer-brand .logo-mark { background: var(--accent); }

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 8px; }

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover { color: white; }

.footer-contact li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-contact li i {
    color: var(--blue-400);
    font-size: 0.9rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.55);
    margin: 1rem 0 1.25rem;
    font-size: 0.82rem;
    line-height: 1.65;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.social-links a:hover { background: var(--accent); }

.footer-bottom {
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
}

.footer-bottom a {
    color: var(--blue-400);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

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

@media (max-width: 1024px) {
    .about-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    section { padding: 70px 0; }

    .nav-links {
        position: fixed;
        top: 64px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
        background: white;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        gap: 0.85rem;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

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

    .mobile-toggle { display: inline-flex; }

    .hero { min-height: auto; padding: 110px 0 60px; }

    .hero-stats {
        flex-wrap: wrap;
        gap: 0;
    }

    .stat {
        flex: 0 0 50%;
        padding: 0 0 1.25rem 0;
        border-right: none;
    }

    .stat:not(:first-child) {
        padding-left: 0;
    }

    .about-visual { aspect-ratio: 16 / 10; }

    .form-row { grid-template-columns: 1fr; }

    .footer-content { grid-template-columns: 1fr; gap: 2rem; }

    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }

    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }

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

    .cta-buttons .btn { width: 100%; }
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

::selection {
    background: var(--accent);
    color: white;
}
