.hero {
    display: grid;
    min-height: 660px;
    padding: 74px 0 82px;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    align-items: center;
    gap: clamp(40px, 7vw, 96px);
}

.hero-copy h1 {
    max-width: 720px;
    margin-bottom: 22px;
}

.hero-copy h1 span {
    color: var(--jade-700);
}

.hero-copy > p {
    max-width: 600px;
    margin-bottom: 30px;
    color: var(--ink-600);
    font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-proof {
    display: flex;
    margin-top: 26px;
    flex-wrap: wrap;
    gap: 8px;
}

.proof-item {
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--ink-600);
    background: var(--paper-100);
    font-size: 12px;
    font-weight: 700;
}

.daily-preview {
    position: relative;
    padding: 28px;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: var(--radius-lg);
    color: var(--white);
    background: linear-gradient(150deg, #183f3a, #102a2e 65%, #162336);
    box-shadow: 0 28px 70px rgb(17 24 39 / 25%);
}

.daily-preview::after {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 64px;
    height: 64px;
    border: 1px solid rgb(255 255 255 / 18%);
    border-radius: 50%;
    content: "";
}

.preview-date {
    margin-bottom: 44px;
    color: rgb(255 255 255 / 64%);
    font-size: 13px;
    font-weight: 700;
}

.daily-preview h2 {
    max-width: 360px;
    margin-bottom: 26px;
    font-family: var(--font-serif);
    font-size: 29px;
    font-weight: 500;
    letter-spacing: -0.055em;
}

.preview-actions {
    display: grid;
    gap: 9px;
}

.preview-action {
    display: flex;
    padding: 14px 15px;
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 12px;
    justify-content: space-between;
    gap: 16px;
    background: rgb(255 255 255 / 7%);
    font-size: 14px;
}

.preview-action span:first-child {
    color: #b9d8ce;
    font-weight: 800;
}

.product-section {
    padding: 92px 0;
}

.product-section-soft {
    background: var(--paper-100);
}

.three-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    padding: 27px;
}

.feature-number {
    display: grid;
    width: 36px;
    height: 36px;
    margin-bottom: 24px;
    border-radius: 11px;
    color: var(--jade-700);
    background: var(--jade-100);
    font-size: 13px;
    font-weight: 900;
    place-items: center;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--ink-600);
    font-size: 15px;
}

.price-callout {
    display: grid;
    padding: clamp(28px, 5vw, 52px);
    border-radius: var(--radius-lg);
    color: var(--white);
    background: var(--ink-900);
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
}

.price-callout h2 {
    margin-bottom: 10px;
}

.price-callout p {
    margin-bottom: 0;
    color: rgb(255 255 255 / 66%);
}

@media (max-width: 860px) {
    .hero {
        min-height: auto;
        padding-top: 54px;
        grid-template-columns: 1fr;
    }

    .daily-preview {
        max-width: 520px;
    }

    .three-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .product-section {
        padding: 66px 0;
    }

    .price-callout {
        grid-template-columns: 1fr;
    }
}
