/* handcrafted styles - not your typical template */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #1a1a2e;
    --paper: #f9f7f4;
    --blue-ink: #0f4c81;
    --accent: #ff6b6b;
    --soft-blue: #4ecdc4;
    --warm-gray: #95a5a6;
    --light-hover: #e8e4df;
}

/* advanced keyframe animations */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-3deg);
    }
    75% {
        transform: rotate(3deg);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(78, 205, 196, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(78, 205, 196, 0.8), 0 0 30px rgba(78, 205, 196, 0.4);
    }
}

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

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(-10deg) scale(0.9);
        opacity: 0;
    }
    to {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes backgroundShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes textShine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
}

/* slight paper texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, #000 2px, #000 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, #000 2px, #000 3px);
    pointer-events: none;
    z-index: 9999;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* navigation with personality */
.navbar {
    background: rgba(249, 247, 244, 0.98);
    border-bottom: 3px solid var(--ink);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    animation: slideInFromBottom 0.6s ease-out;
}

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

.logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--blue-ink);
    position: relative;
    letter-spacing: -1px;
    transform: rotate(-1deg);
    transition: transform 0.2s ease;
    animation: rotateIn 0.8s ease-out;
}

.logo:hover {
    transform: rotate(0deg) scale(1.05);
    animation: pulse 1s ease-in-out infinite;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--ink);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s;
}

.nav-links li {
    animation: fadeInUp 0.6s ease-out backwards;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* hero with character */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(165deg, #4ecdc4 0%, #0f4c81 100%);
    position: relative;
    overflow: hidden;
}

/* organic blob shapes in background */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    top: -200px;
    right: -150px;
    animation: float 20s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 48% 52% 68% 32% / 42% 28% 72% 58%;
    bottom: -100px;
    left: -100px;
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 21px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn:nth-child(1) {
    animation: scaleIn 0.6s ease-out 0.6s backwards;
}

.hero-buttons .btn:nth-child(2) {
    animation: scaleIn 0.6s ease-out 0.8s backwards;
}

/* buttons with quirky hover */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    position: relative;
    transition: all 0.2s;
    font-size: 16px;
}

.btn-primary {
    background: white;
    color: var(--blue-ink);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* features with subtle animations */
.features {
    padding: 90px 0;
    background: var(--paper);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--ink);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    animation: wiggle 2s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 35px 28px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--soft-blue);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px) rotate(1deg);
}

.feature-card:hover::before {
    opacity: 0.3;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 18px;
    display: inline-block;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--ink);
    font-weight: 700;
}

.feature-card p {
    color: var(--warm-gray);
    line-height: 1.7;
    font-size: 15px;
}

/* call to action with flair */
.cta {
    padding: 80px 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    border-radius: 50%;
    top: -150px;
    right: 10%;
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 18px;
    font-weight: 700;
}

.cta p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

/* footer that's not boring */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
    border-top: 4px solid var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--soft-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* page headers */
.page-header {
    background: linear-gradient(135deg, var(--blue-ink) 0%, var(--soft-blue) 100%);
    padding: 70px 0;
    text-align: center;
    border-bottom: 5px solid var(--ink);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* content pages */
.content-page {
    padding: 70px 0;
    background: var(--paper);
}

.content-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    padding: 50px 45px;
    border: 3px solid var(--ink);
    border-radius: 8px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.08);
}

.content-section {
    margin-bottom: 45px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 28px;
    color: var(--ink);
    margin-bottom: 18px;
    font-weight: 700;
    position: relative;
    padding-left: 18px;
}

.content-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background: var(--accent);
    border-radius: 3px;
}

.content-section p {
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 18px;
}

.content-section li {
    color: var(--warm-gray);
    line-height: 1.9;
    margin-bottom: 10px;
}

.content-section a {
    color: var(--blue-ink);
    text-decoration: underline;
    transition: color 0.2s;
}

.content-section a:hover {
    color: var(--accent);
}

/* contact page personality */
.contact-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: var(--ink);
    font-weight: 700;
}

.contact-form {
    background: white;
    padding: 38px;
    border: 3px solid var(--ink);
    border-radius: 8px;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--ink);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--ink);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: white;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--soft-blue);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
}

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

.contact-info-card {
    background: white;
    padding: 28px;
    border: 2px solid var(--ink);
    border-radius: 6px;
    margin-bottom: 20px;
    transition: transform 0.2s;
}

.contact-info-card:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--ink);
}

.contact-info-card p {
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-info-card a {
    color: var(--blue-ink);
}

.contact-info-card a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.social-link {
    padding: 8px 18px;
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--ink);
    color: white;
    transform: translateY(-2px);
}

/* faq with style */
.faq-section {
    margin-top: 70px;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 45px;
    color: var(--ink);
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.faq-item {
    background: white;
    padding: 28px;
    border-left: 5px solid var(--accent);
    border-radius: 4px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--ink);
    font-weight: 600;
}

.faq-item p {
    color: var(--warm-gray);
    line-height: 1.7;
    font-size: 15px;
}

/* about page elements */
.about-intro {
    background: white;
    padding: 45px;
    border: 3px solid var(--ink);
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.06);
}

.about-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--ink);
    font-weight: 800;
}

.lead-text {
    font-size: 19px;
    color: var(--warm-gray);
    line-height: 1.8;
}

.about-story {
    background: white;
    padding: 45px;
    border: 3px solid var(--ink);
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.06);
}

.about-story h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--ink);
    font-weight: 700;
}

.story-content p {
    font-size: 17px;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 18px;
}

.values-section {
    margin-bottom: 60px;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--ink);
    font-weight: 800;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.value-card {
    background: white;
    padding: 32px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.value-card:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 52px;
    margin-bottom: 18px;
    display: inline-block;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--ink);
    font-weight: 700;
}

.value-card p {
    color: var(--warm-gray);
    line-height: 1.7;
    font-size: 15px;
}

.technology-section {
    background: white;
    padding: 45px;
    border: 3px solid var(--ink);
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.06);
}

.technology-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--ink);
    font-weight: 700;
}

.tech-content > p {
    font-size: 17px;
    color: var(--warm-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.tech-feature {
    background: var(--paper);
    padding: 28px;
    border-left: 4px solid var(--soft-blue);
    border-radius: 4px;
}

.tech-feature h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--ink);
    font-weight: 600;
}

.tech-feature p {
    color: var(--warm-gray);
    line-height: 1.7;
    font-size: 15px;
}

.stats-section {
    background: linear-gradient(135deg, var(--blue-ink) 0%, var(--soft-blue) 100%);
    padding: 60px 45px;
    border-radius: 8px;
    margin-bottom: 50px;
    border: 4px solid var(--ink);
}

.stats-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 45px;
    color: white;
    font-weight: 800;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.use-cases-section {
    margin-bottom: 60px;
}

.use-cases-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--ink);
    font-weight: 800;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.use-case-card {
    background: white;
    padding: 32px;
    border: 2px solid var(--ink);
    border-radius: 6px;
    border-left-width: 6px;
    border-left-color: var(--accent);
    transition: all 0.3s;
}

.use-case-card:hover {
    transform: translateX(8px);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.08);
}

.use-case-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: var(--ink);
    font-weight: 700;
}

.use-case-card p {
    color: var(--warm-gray);
    line-height: 1.7;
    font-size: 15px;
}

.team-section {
    background: white;
    padding: 45px;
    border: 3px solid var(--ink);
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.06);
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--ink);
    font-weight: 700;
}

.team-intro {
    font-size: 17px;
    color: var(--warm-gray);
    line-height: 1.8;
}

.cta-section {
    margin-bottom: 40px;
}

.cta-box {
    background: var(--ink);
    padding: 60px 45px;
    border-radius: 8px;
    text-align: center;
    border: 4px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent);
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
    opacity: 0.15;
}

.cta-box h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 16px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* scroll reveal animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* responsive tweaks */
@media (max-width: 968px) {
    .hero-title {
        font-size: 42px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero {
        padding: 60px 0 70px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid,
    .values-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .content-wrapper,
    .about-intro,
    .about-story,
    .technology-section,
    .team-section {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
