.main-title {
    margin: 2rem 1rem;
    margin-bottom: 4rem;
    margin-right: 0;
    text-align: left;
}

.hero-content {
    /* Set a specific height for the hero section */
    display: flex;
    flex-direction: column;
    gap: 20px;

    background-image:
        linear-gradient(to right, var(--border) 1px, transparent 1px), /* Vertical lines */
        linear-gradient(to bottom, var(--border) 1px, transparent 1px); /* Horizontal lines */
    background-size: 40px 50px; 
    
    z-index: 1;
    
    mask-image: linear-gradient(
        to bottom, 
        transparent 0%,    /* Start fully transparent at the very top */
        black 15%,         /* Become fully opaque at 15% down */
        black 85%,         /* Stay opaque until 85% down */
        transparent 100%   /* Become fully transparent at the very bottom */
    );
    /* Include webkit prefix for better compatibility */
    -webkit-mask-image: linear-gradient(
        to bottom, 
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%
    );

}

.hero-content .hero-img {
    margin-left: 2vw;
    border-radius: 8px;
}

.descriptor {
    margin: 0.5rem;
    text-align: left;
    color: var(--text-muted);
    font-weight: normal;
    font-size: clamp(0.5rem, 2vw + 0.5rem, 1.5rem);
    background-color: transparent;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;

    text-decoration: none;
    padding: 0.5rem 2rem;
    font-weight: bold;
    font-size: clamp(0.5rem, 2vw + 0.5rem, 2rem);
    
    border-radius: 100vw; /* inf round */
    transition: var(--transition);
}

.get-started {
    background-color: var(--success-bg);
    color: var(--success-text);
    border: none;
}

.get-started:hover {
    background-color: var(--success-border);
}

.signin {
    border: 1px solid var(--theme);
    color: var(--text);
}

.signin:hover {
    background-color: var(--theme);
}

.hero-img {
    display: none;
    justify-content: center;
    margin: auto 32px;
    padding: 16px;
    background-color: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--border) 0px 0px 50px;
}

@media (min-width: 768px) {

    .hero {
        display: flex;
        align-items: center;
        height: 95vh;
    }

    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;

        width: 100%;

        height: 65vh; 
        max-height: 600px;
    }

    .main-title {
        margin: 4rem 0 0 2rem;
    }

    .get-started {
        padding: 1rem 4rem;
    }
}

@media (min-width: 1300px) {
    .hero-img { 
        display: flex;
        width: 40%;
    }
}

.intro-header {
    text-align: left;
    font-weight: bold;
    font-size: 4rem;
    background-color: transparent;
}

.introduction {
    margin-left: 2vw;
    font-size: 2rem;
    font-weight: bold;
}

.intro-grid {
    display: grid;
    margin: 2rem 1rem;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.intro-grid-item {
    position: relative;
    text-align: center;

    box-shadow: var(--shadow);

    border: var(--border-card);
    border-top: 1px solid var(--highlight);
    border-radius: var(--radius);

    padding: 16px;
    
    background: var(--gradient);
    box-sizing: border-box;
}

.intro-grid-item h3 {
    background-color: transparent;
    font-weight: bold;
    font-size: clamp(0.5rem, 1vw + 1rem, 2rem);
    margin: 0.5rem auto;
}

.intro-grid-item p {
    background-color: transparent;
    font-weight: bold;
    font-size: clamp(0.5rem, 1vw + 0.5rem, 1rem);
}

@media (min-width: 768px) {
    .intro-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mission {
    text-align: right;
    margin: 4rem 2rem;
    font-weight: bold;
    font-size: clamp(1rem, 4vw + 1rem, 4rem);
    background-color: transparent;
}
