.home-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
}

.bg-grid {
    background-image:
        linear-gradient(to right, rgb(255 255 255 / 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgb(255 255 255 / 0.02) 1px, transparent 1px);
    background-size: 32px 32px;
}

.hero-glow {
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: rgb(var(--color-accent) / 0.1);
    filter: blur(100px);
    border-radius: 9999px;
    pointer-events: none;
}

.home-shell {
    max-width: 80rem;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.hero-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-icon-wrap {
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3);
}

.hero-icon {
    font-size: 3rem;
    color: rgb(var(--color-accent));
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: rgb(var(--color-text));
    margin: 0;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgb(var(--color-text-secondary));
    max-width: 42rem;
    font-weight: 300;
    margin: 0;
}

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

.nav-card {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 0.75rem;
    transition: border-color 0.3s, transform 0.2s;
}

.nav-card:hover {
    transform: translateY(-2px);
}

.card-watermark {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.5rem;
    opacity: 0.05;
    pointer-events: none;
}

.card-watermark i {
    font-size: 5rem;
}

.card-icon-shell {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.card-icon-shell i {
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgb(var(--color-text));
    margin: 0 0 0.5rem;
}

.card-line {
    height: 1px;
    width: 2rem;
    margin-bottom: 1rem;
    transition: width 0.3s;
}

.nav-card:hover .card-line {
    width: 4rem;
}

.card-text {
    font-size: 0.875rem;
    color: rgb(var(--color-text-secondary));
    line-height: 1.6;
    margin: 0;
}

.nav-card-accent:hover {
    border-color: rgb(var(--color-accent));
}

.nav-card-accent .card-watermark i,
.nav-card-accent .card-icon-shell i {
    color: rgb(var(--color-accent-soft));
}

.nav-card-accent .card-line {
    background: rgb(var(--color-accent) / 0.5);
}

.nav-card-emerald:hover {
    border-color: rgb(var(--color-success));
}

.nav-card-emerald .card-watermark i,
.nav-card-emerald .card-icon-shell i {
    color: rgb(var(--color-success));
}

.nav-card-emerald .card-line {
    background: rgb(var(--color-success) / 0.5);
}

.nav-card-violet:hover {
    border-color: rgb(139 92 246);
}

.nav-card-violet .card-watermark i,
.nav-card-violet .card-icon-shell i {
    color: rgb(167 139 250);
}

.nav-card-violet .card-line {
    background: rgb(139 92 246 / 0.5);
}

.feature-section {
    padding-top: 3rem;
    border-top: 1px solid rgb(var(--color-border));
}

.feature-heading {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgb(var(--color-text-muted));
    text-align: center;
    margin: 0 0 2rem;
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.25rem;
    color: rgb(var(--color-text));
}

.feature-title {
    font-weight: 500;
    color: rgb(var(--color-text));
}

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

.animate-slide-up {
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .home-shell {
        gap: 2.5rem;
    }

    .feature-section {
        padding-top: 2rem;
    }
}