/* ============================================================
   Landing page
   ============================================================ */

/* --- Hero --- */
.landing-hero {
    background: linear-gradient(160deg, #f4faf5 0%, #e3efe5 100%);
    border-bottom: 1px solid var(--tt-border);
    padding: 72px 0 64px;
    text-align: center;
}

.landing-hero h1 {
    font-size: 2.7rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    color: var(--tt-ink);
    margin-bottom: 14px;
}

.landing-hero .hero-tagline {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--tt-muted);
    max-width: 620px;
    margin: 0 auto 28px;
}

.hero-actions .btn {
    margin: 0 10px 10px 0;
}

/* --- Section scaffolding --- */
.landing-section {
    padding: 60px 0;
}

.landing-section.tint {
    background: var(--tt-green-tint);
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--tt-green-dark);
    margin-bottom: 6px;
}

.section-head h2 {
    font-weight: 700;
    color: var(--tt-ink);
    margin-bottom: 10px;
}

.section-head p {
    color: var(--tt-muted);
    max-width: 620px;
}

/* --- Tool cards --- */
.tool-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 12px;
    padding: 26px 22px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.tool-card:hover {
    text-decoration: none;
    color: inherit;
    border-color: var(--tt-green);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.tool-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--tt-green-tint);
    color: var(--tt-green-dark);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.tool-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tool-card p {
    color: var(--tt-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    flex-grow: 1;
    margin-bottom: 14px;
}

.tool-card-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--tt-green-dark);
}

.tool-card-link i {
    transition: transform 0.2s ease;
}

.tool-card:hover .tool-card-link {
    color: var(--tt-green);
}

.tool-card:hover .tool-card-link i {
    transform: translateX(4px);
}

/* --- Intro video --- */
.landing-video {
    max-width: 820px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

/* --- About --- */
.about-text {
    color: var(--tt-muted);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 720px;
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 52px 0 46px;
    }

    .landing-hero h1 {
        font-size: 2rem;
    }
}
