/* ==========================================================================
   Editorial Design System — antolinjm main site
   See design.md section 11 for full specification.
   ========================================================================== */

/* Design Variables */
:root {
    /* Backgrounds & surfaces */
    --bg:             #fafafa;
    --surface:        #f3f3f1;
    --surface-lower:  #eeeeed;
    --card:           #ffffff;

    /* Text */
    --ink:            #1b1b1b;
    --muted:          #636870;
    --branding:       #b0b0b0;

    /* Accent */
    --accent:         #3066ff;
    --accent-dark:    #004be1;

    /* Borders */
    --border:         rgba(0, 0, 0, 0.06);
    --border-strong:  rgba(0, 0, 0, 0.12);

    /* Shadows */
    --shadow-card:     0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-featured: 0 2px 8px rgba(0, 75, 225, 0.06), 0 8px 24px rgba(0, 0, 0, 0.05);
    --shadow-nav:      0 1px 2px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
}

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

[hidden] { display: none !important; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
}

p {
    margin-bottom: 16px;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-dark);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Layout */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }

/* ==========================================================================
   Navigation — Glassmorphism sticky
   ========================================================================== */

.nav-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-nav);
    transition: box-shadow var(--transition-base);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
}

.site-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.site-title:hover {
    opacity: 0.7;
    color: var(--ink);
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

nav a:hover {
    color: var(--accent);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    padding: 3px 5px;
    border-radius: 3px;
    transition: color 0.15s;
}

.lang-btn.active {
    color: var(--ink);
    font-weight: 500;
}

.lang-btn:hover:not(.active) {
    color: var(--ink);
}

.lang-sep {
    color: var(--border-deep);
    font-size: 0.7rem;
    pointer-events: none;
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 22px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    white-space: nowrap;
}

.header-cta-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(48, 102, 255, 0.25);
}

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

.hero {
    padding: 72px 0 80px;
    background: var(--bg);
}

.hero-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--muted);
}

.hero-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero-headline em {
    font-style: normal;
    color: var(--accent);
}

.hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 8px;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-cta-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(48, 102, 255, 0.3);
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
}

.avail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

/* ==========================================================================
   Sections — Tonal layering
   ========================================================================== */

.section-bg {
    background: var(--bg);
    padding: 80px 0;
}

.section-surface {
    background: var(--surface);
    padding: 80px 0;
}

.section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--muted);
}

/* ==========================================================================
   Experience
   ========================================================================== */

.exp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exp-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0 40px;
    padding: 28px 32px;
    border-radius: 12px;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.exp-item:hover {
    background: var(--card);
    box-shadow: var(--shadow-card);
}

.exp-item.featured {
    background: var(--card);
    box-shadow: var(--shadow-featured);
}

.exp-company {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.exp-company a {
    color: inherit;
    text-decoration: none;
}

.exp-company a:hover {
    color: var(--accent);
}

.exp-period {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.04em;
}

.exp-role {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    margin-top: 3px;
}

.exp-headline {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.exp-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.exp-bullets li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
    padding-left: 14px;
    position: relative;
}

.exp-bullets li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--muted);
}

.exp-bullets strong {
    color: var(--ink);
    font-weight: 600;
}

/* ==========================================================================
   Consulting
   ========================================================================== */

.consulting-block {
    background: var(--card);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.consulting-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.consulting-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 32px;
}

.consulting-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.consulting-area {
    background: var(--surface);
    border-radius: 10px;
    padding: 18px 20px;
}

.consulting-area-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--ink);
}

.consulting-area-desc {
    font-family: 'Inter', sans-serif;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.consulting-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.consulting-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--muted);
}

.consulting-email-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 6px;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.consulting-email-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(48, 102, 255, 0.25);
}

/* ==========================================================================
   Stack
   ========================================================================== */

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

.stack-category-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.stack-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stack-chip {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--card);
    border: 1px solid var(--border-strong);
    color: var(--ink);
    transition: border-color var(--transition-fast), background var(--transition-fast);
    cursor: default;
}

.stack-chip:hover {
    border-color: var(--accent);
    background: rgba(48, 102, 255, 0.06);
}

/* ==========================================================================
   Tools
   ========================================================================== */

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.tool-card {
    display: block;
    background: var(--card);
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: var(--shadow-card);
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-featured);
}

.tool-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tool-card-title::after {
    content: '→';
    font-size: 16px;
    color: var(--accent);
    transition: transform var(--transition-fast);
}

.tool-card:hover .tool-card-title::after {
    transform: translateX(4px);
}

.tool-card-desc {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

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

.section-contact {
    background: #111318;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-contact::before {
    content: '';
    position: absolute;
    top: -160px;
    left: -160px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(48, 102, 255, 0.09) 0%, transparent 70%);
    pointer-events: none;
}

.section-contact::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(48, 102, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-label {
    color: rgba(255, 255, 255, 0.35);
}

.contact-label::before {
    background: rgba(255, 255, 255, 0.35);
}

.contact-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.contact-headline em {
    font-style: normal;
    color: var(--accent);
}

.contact-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 36px;
    max-width: 380px;
}

.contact-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.contact-perks li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(48, 102, 255, 0.15);
    border: 1.5px solid rgba(48, 102, 255, 0.4);
    color: var(--accent);
    font-size: 11px;
    font-family: 'IBM Plex Mono', monospace;
    flex-shrink: 0;
    line-height: 1;
}

/* Form card */
.contact-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 4px 16px rgba(0, 0, 0, 0.2);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--ink);
    background: var(--surface);
    border: 1.5px solid var(--border-strong);
    border-radius: 8px;
    outline: none;
    transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
    resize: none;
}

.form-input::placeholder {
    color: var(--muted);
    opacity: 0.7;
}

.form-input:focus {
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(48, 102, 255, 0.1);
}

.form-input.input-error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.input-hint {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: #dc2626;
    margin-top: 5px;
    display: block;
}

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

.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    color: #ffffff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-top: 4px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.form-submit-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(48, 102, 255, 0.35);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-arrow {
    transition: transform var(--transition-fast);
    display: inline-block;
}

.form-submit-btn:hover:not(:disabled) .submit-arrow {
    transform: translateX(3px);
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 16px;
    text-align: center;
}

@keyframes successPop {
    0%   { transform: scale(0.7); opacity: 0; }
    60%  { transform: scale(1.1); }
    100% { transform: scale(1);   opacity: 1; }
}

.form-success-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffffff;
    font-family: 'IBM Plex Mono', monospace;
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3);
    animation: successPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.form-success-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.form-success-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.form-error {
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #dc2626;
    text-align: center;
}

.form-error a {
    color: var(--accent);
}

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

.footer {
    background: var(--surface-lower);
    text-align: center;
    padding: 48px 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--muted);
}

.social-links {
    margin-top: 12px;
    display: flex;
    gap: 24px;
    justify-content: center;
}

.social-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--muted);
    transition: color var(--transition-fast);
}

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

/* ==========================================================================
   Scroll to top
   ========================================================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--card);
    color: var(--ink);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-strong);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-featured);
}

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

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

    .nav-inner {
        padding: 16px 20px;
    }

    nav {
        gap: 16px;
    }

    nav a {
        font-size: 11px;
    }

    .header-cta-btn {
        display: none;
    }

    .hero {
        padding: 48px 0 56px;
    }

    .hero-headline {
        font-size: clamp(28px, 6vw, 36px);
    }

    .section-bg,
    .section-surface {
        padding: 56px 0;
    }

    .exp-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px 24px;
    }

    .consulting-block {
        padding: 28px 24px;
    }

    .consulting-areas {
        grid-template-columns: 1fr 1fr;
    }

    .stack-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-card {
        padding: 28px 24px;
    }

    .section-contact {
        padding: 72px 0;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 12px;
    }

    .modal {
        padding: 28px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .sort-controls {
        font-size: 12px;
    }

    .sort-btn {
        padding: 5px 12px;
        font-size: 11px;
    }

    .item-count {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .section-inner {
        padding: 0 16px;
    }

    .nav-inner {
        padding: 14px 16px;
    }

    .site-title {
        font-size: 16px;
    }

    nav {
        gap: 12px;
    }

    nav a {
        font-size: 10px;
    }

    .hero {
        padding: 36px 0 44px;
    }

    .section-bg,
    .section-surface {
        padding: 44px 0;
    }

    .consulting-areas {
        grid-template-columns: 1fr;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }

    .modal {
        padding: 20px;
        max-height: 90vh;
    }
}
