/* MyFin Landing Page v2
 * Aesthetic: Editorial Fintech — Dark, Sophisticated, Bold Typography
 * Fonts: Syne (display) + DM Sans (body)
 */

/* ============================================
   CSS Variables & Design Tokens
   ============================================ */
:root {
    /* Colors - Deep Dark with Electric Blue */
    --color-bg: #09090b;
    --color-bg-elevated: #131316;
    --color-bg-card: #1a1a1f;
    --color-bg-subtle: #0d0d10;

    --color-text: #fafafa;
    --color-text-secondary: #a1a1aa;
    --color-text-muted: #71717a;

    --color-accent: #3b82f6;
    --color-accent-bright: #60a5fa;
    --color-accent-glow: rgba(59, 130, 246, 0.4);

    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(255, 255, 255, 0.16);

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;

    /* Layout */
    --max-width: 1200px;
    --nav-height: 72px;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-glow: 0 0 60px var(--color-accent-glow);
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Grain Texture Overlay */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

/* ============================================
   Typography
   ============================================ */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-bright);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-text);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-md);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) var(--space-md);
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    height: calc(var(--nav-height) - 2rem);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: var(--space-xs) var(--space-sm);
    color: var(--color-text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.lang-toggle:hover {
    color: var(--color-text);
    background: var(--color-border);
}

.lang-current {
    font-size: 0.85rem;
    font-weight: 500;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

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

.btn-primary:hover {
    background: var(--color-accent-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-xl);
    min-height: 100vh;
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-bright);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: var(--space-md);
}

.hero-title span {
    display: block;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--color-accent-bright), #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 460px;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.store-badge {
    display: block;
    transition: all var(--transition-base);
}

.store-badge img {
    height: 52px;
    width: auto;
}

/* Google Play badge has internal padding, scale it up to match App Store visually */
.store-badge img[alt*="Google Play"] {
    height: 76px;
    margin: -12px 0;
}

.store-badge:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.phone-frame {
    position: relative;
    width: 280px;
    padding: 12px;
    background: linear-gradient(145deg, #2a2a30, #1a1a1f);
    border-radius: 40px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-screen {
    border-radius: 28px;
    width: 100%;
}

.hero-glow {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60%;
    background: radial-gradient(ellipse at center, var(--color-accent-glow), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: var(--space-3xl) var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.feature-card {
    padding: var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-slow);
}

.feature-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-accent-bright);
    margin-bottom: var(--space-md);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.feature-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   Screenshots Section
   ============================================ */
.screens {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-subtle);
    overflow: hidden;
}

.screens-carousel-wrapper {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Desktop: Static grid layout */
.carousel-btn {
    display: none;
}

.screens-carousel {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
}

.screen-item {
    position: relative;
    flex: 0 0 220px;
    cursor: pointer;
    transition: all var(--transition-slow);
}

/* Phone frame wrapper */
.screen-item::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: 18px; /* Account for label */
    background: linear-gradient(145deg, #2a2a30, #1a1a1f);
    border-radius: 24px;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    z-index: -1;
    transition: all var(--transition-slow);
}

.screen-item img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 18px;
    transition: all var(--transition-slow);
}

.screen-item:hover::before {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
        0 30px 50px -12px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.screen-item:hover img {
    transform: translateY(-8px) scale(1.05);
}

.screen-label {
    display: block;
    text-align: center;
    margin-top: var(--space-sm);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Desktop: Hide carousel dots */
.carousel-dots {
    display: none;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-dot:hover {
    background: var(--color-text-muted);
}

.carousel-dot.active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all var(--transition-base);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all var(--transition-base);
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-btn-prev {
    left: var(--space-md);
}

.lightbox-btn-next {
    right: var(--space-md);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    animation: lightboxFadeIn 0.3s ease-out;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-label {
    margin-top: var(--space-md);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.lightbox-counter {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    padding: var(--space-3xl) var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.step {
    text-align: center;
    padding: var(--space-lg);
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.step-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: var(--space-3xl) var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

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

.faq-item[open] {
    border-color: var(--color-accent);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    font-family: var(--font-display);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform var(--transition-base);
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   Download CTA Section
   ============================================ */
.download {
    position: relative;
    padding: var(--space-3xl) var(--space-md);
    text-align: center;
    overflow: hidden;
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
}

.download-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
}

.download-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.download-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.05;
}

.decoration-circle:nth-child(1) {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
}

.decoration-circle:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
}

.decoration-circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: var(--space-xl) var(--space-md);
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-weight: 700;
}

.footer-brand img {
    border-radius: var(--radius-sm);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-text);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations - elements start hidden */
.feature-card,
.screen-item,
.step,
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Staggered delays */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.screen-item:nth-child(1) { animation-delay: 0.1s; }
.screen-item:nth-child(2) { animation-delay: 0.15s; }
.screen-item:nth-child(3) { animation-delay: 0.2s; }
.screen-item:nth-child(4) { animation-delay: 0.25s; }
.screen-item:nth-child(5) { animation-delay: 0.3s; }

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: calc(var(--nav-height) + var(--space-lg));
        min-height: auto;
    }

    .hero-content {
        order: 1;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-phone {
        order: 2;
        margin-top: var(--space-lg);
    }

    .phone-frame {
        width: 220px;
    }

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

    .steps {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 640px) {
    :root {
        --space-md: 1rem;
        --space-lg: 1.5rem;
        --space-xl: 2.5rem;
        --space-2xl: 4rem;
        --space-3xl: 6rem;
    }

    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .hero {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 var(--space-xs);
    }

    .carousel-btn {
        display: none;
    }

    .screens-carousel-wrapper {
        padding: 0;
    }

    /* Mobile: Enable carousel */
    .screens-carousel {
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: var(--space-md) var(--space-md);
    }

    .screens-carousel::-webkit-scrollbar {
        display: none;
    }

    .screen-item {
        flex: 0 0 200px;
        scroll-snap-align: center;
    }

    .screen-item::before {
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: 20px;
        border-radius: 22px;
    }

    .screen-item img {
        border-radius: 16px;
    }

    /* Mobile: Show carousel dots */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: var(--space-md);
    }

    .carousel-dot.active {
        background: var(--color-accent);
        width: 24px;
        border-radius: 4px;
    }

    /* Mobile: Large lightbox */
    .lightbox-content {
        max-width: 95vw;
        max-height: 90vh;
        padding: 0;
    }

    .lightbox-content img {
        max-width: 90vw;
        max-height: 80vh;
        border-radius: var(--radius-md);
    }

    .lightbox-label {
        display: none;
    }

    .lightbox-close {
        top: var(--space-sm);
        right: var(--space-sm);
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.6);
    }

    .lightbox-counter {
        bottom: var(--space-xs);
        font-size: 0.8rem;
    }

    .lightbox-btn {
        width: 44px;
        height: 44px;
    }

    .lightbox-btn-prev {
        left: var(--space-xs);
    }

    .lightbox-btn-next {
        right: var(--space-xs);
    }

    .store-badge img {
        height: 44px;
    }

    .store-badge img[alt*="Google Play"] {
        height: 64px;
        margin: -10px 0;
    }

    .phone-frame {
        width: 260px;
    }

    .features {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
    }

    .how-it-works {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
    }

    .faq {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
    }

    .download {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
    }

    .download-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .step-number {
        font-size: 3rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm);
    }
}

/* ============================================
   Utilities
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
