.home-page {
    padding: 28px 24px 72px;
    background:
        radial-gradient(circle at top left, rgba(255, 196, 124, 0.24), transparent 22%),
        radial-gradient(circle at 88% 6%, rgba(125, 211, 252, 0.18), transparent 28%),
        linear-gradient(180deg, #f8f4ec 0%, #fbfaf7 34%, #f7fbff 100%);
    color: var(--text);
}

.home-hero,
.home-feature-grid,
.home-platform,
.home-workflow,
.home-cta {
    max-width: 1240px;
    margin: 0 auto;
}

.home-eyebrow,
.home-card__eyebrow {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9a5a24;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 28px;
    align-items: start;
    padding-top: 18px;
}

.home-hero__content h1 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(3rem, 6vw, 5.9rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
}

.home-hero__text {
    max-width: 65ch;
    margin: 20px 0 0;
    font-size: 1.06rem;
    line-height: 1.8;
    color: #4c5969;
}

.home-hero__actions,
.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-button--primary {
    background: linear-gradient(135deg, #1d4ed8, #2b6de5);
    color: #fff;
    box-shadow: 0 16px 28px rgba(29, 78, 216, 0.22);
}

.home-button--secondary {
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.home-button--full {
    width: 100%;
}

.home-button:hover,
.home-button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.home-hero__highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.home-highlight,
.home-feature-card,
.home-platform-card,
.home-pricing-card,
.home-snapshot-card,
.home-cta {
    border-radius: 26px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
}

.home-highlight {
    padding: 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.88);
}

.home-highlight strong,
.home-highlight span {
    display: block;
}

.home-highlight strong {
    margin-bottom: 4px;
    font-size: 1rem;
}

.home-highlight span {
    color: #566273;
    line-height: 1.55;
}

.home-hero__aside {
    display: grid;
    gap: 18px;
}

.home-pricing-card,
.home-snapshot-card {
    padding: 24px;
}

.home-pricing-card {
    background: linear-gradient(160deg, #10233f 0%, #173664 100%);
    color: #f8fafc;
}

.home-pricing-card h2 {
    margin: 0;
    font-size: 1.6rem;
}

.home-pricing-card__price {
    margin: 14px 0 8px;
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1;
}

.home-pricing-card__trial {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.65;
}

.home-pricing-card__trial--active {
    color: #bfdbfe;
}

.home-pricing-list {
    margin: 18px 0 22px;
    padding-left: 18px;
    line-height: 1.85;
    color: #e2e8f0;
}

.home-snapshot-card {
    background: linear-gradient(160deg, #fff8f0 0%, #f5f9ff 100%);
}

.home-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-snapshot-grid div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.88);
}

.home-snapshot-grid strong,
.home-snapshot-grid span {
    display: block;
}

.home-snapshot-grid strong {
    margin-bottom: 6px;
}

.home-snapshot-grid span {
    color: #536172;
    line-height: 1.55;
}

.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}

.home-feature-card {
    padding: 26px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.home-feature-card h2 {
    margin: 0 0 12px;
    font-size: 1.4rem;
    line-height: 1.2;
}

.home-feature-card p:last-child {
    margin: 0;
    color: #556272;
    line-height: 1.75;
}

.home-platform {
    margin-top: 34px;
    padding: 32px;
    border-radius: 30px;
    background: linear-gradient(135deg, #f0f9ff, #fff8ed);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.home-platform__intro h2,
.home-workflow__intro h2,
.home-cta h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.home-platform__sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.home-platform-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.84);
}

.home-platform-card h3 {
    margin: 0 0 12px;
    font-size: 1.3rem;
}

.home-platform-card ul {
    margin: 0;
    padding-left: 18px;
    line-height: 1.85;
    color: #4b5969;
}

.home-workflow {
    margin-top: 34px;
}

.home-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.home-step {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.home-step__number {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-weight: 800;
}

.home-step h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.home-step p {
    margin: 0;
    color: #596678;
    line-height: 1.7;
}

.home-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 34px;
    padding: 30px 32px;
    background: linear-gradient(135deg, #12223c, #21395d);
    color: #fff;
}

.home-cta__text {
    margin: 14px 0 0;
    color: #dbeafe;
    line-height: 1.7;
}

@media (max-width: 1120px) {
    .home-hero,
    .home-feature-grid,
    .home-platform__sections,
    .home-steps {
        grid-template-columns: 1fr;
    }

    .home-hero__content h1 {
        max-width: none;
    }

    .home-hero__highlights,
    .home-snapshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .home-page {
        padding: 20px 16px 56px;
    }

    .home-hero {
        gap: 20px;
    }

    .home-hero__content h1 {
        font-size: clamp(2.4rem, 15vw, 4rem);
    }

    .home-hero__highlights,
    .home-snapshot-grid {
        grid-template-columns: 1fr;
    }

    .home-platform {
        padding: 24px 20px;
    }

    .home-pricing-card,
    .home-snapshot-card,
    .home-feature-card,
    .home-platform-card,
    .home-step,
    .home-cta {
        padding: 22px 20px;
        border-radius: 22px;
    }

    .home-hero__actions,
    .home-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-button {
        width: 100%;
    }
}
