:root {
    --paper: #fffaf3;
    --ink: #25302f;
    --muted: #67716f;
    --line: rgba(37, 48, 47, 0.12);
    --peach: #f7d9c4;
    --blue: #dcebed;
    --sage: #dfe8d4;
    --sun: #f3c96b;
    --white: rgba(255, 255, 255, 0.68);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--paper);
    color: var(--ink);
    font-family: Aptos, "Segoe UI", Arial, sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 85% 10%, rgba(247, 217, 196, 0.42), transparent 28rem),
        var(--paper);
}

a {
    color: inherit;
}

.topbar,
main,
footer {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.topbar {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    font-weight: 720;
    letter-spacing: -0.035em;
    font-size: 1.55rem;
}

.brand-name span {
    font-weight: 520;
    color: #72807e;
}

.brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sun);
    box-shadow: inset -8px -8px 0 rgba(255,255,255,0.23);
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 0.9rem;
}

.language,
.mail-note {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.38);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 64px;
    align-items: center;
    padding: 84px 0 66px;
}

.eyebrow,
.card-label {
    margin: 0 0 14px;
    font-size: 0.78rem;
    font-weight: 760;
    letter-spacing: 0.105em;
    text-transform: uppercase;
    color: #667570;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.25rem, 7vw, 6.5rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.intro {
    max-width: 690px;
    margin-bottom: 0;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    line-height: 1.65;
    color: var(--muted);
}

.sun-scene {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border-radius: 44px;
    background: linear-gradient(180deg, #f6e3d2 0%, #ecf1e8 100%);
}

.sun {
    position: absolute;
    width: 136px;
    height: 136px;
    right: 18%;
    top: 18%;
    border-radius: 50%;
    background: var(--sun);
}

.horizon {
    position: absolute;
    left: -12%;
    width: 125%;
    height: 160px;
    border-radius: 50% 50% 0 0;
}

.horizon-one {
    bottom: -72px;
    background: #b8c8b2;
    transform: rotate(-3deg);
}

.horizon-two {
    bottom: -112px;
    left: 20%;
    background: #91aaa7;
    transform: rotate(5deg);
}

.morning-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.925fr 0.925fr;
    gap: 18px;
}

.feature-card,
.strip {
    border: 1px solid rgba(37,48,47,0.08);
    border-radius: 30px;
}

.feature-card {
    min-height: 310px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.feature-primary {
    background: var(--sage);
}

.pastel-peach {
    background: var(--peach);
}

.pastel-blue {
    background: var(--blue);
}

.feature-card h2,
.strip h2 {
    margin-bottom: 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.feature-card h2 {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.feature-card p:not(.card-label),
.strip p {
    color: #576462;
    line-height: 1.62;
}

.soft-link {
    margin-top: auto;
    padding-top: 24px;
    font-size: 0.92rem;
    font-weight: 680;
}

.strip {
    margin-top: 18px;
    padding: 30px 32px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
}

.strip h2 {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.strip p {
    margin-bottom: 0;
    max-width: 700px;
}

footer {
    display: flex;
    gap: 10px;
    padding: 42px 0 50px;
    color: #75817f;
    font-size: 0.88rem;
}

@media (max-width: 860px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 58px;
    }

    .sun-scene {
        min-height: 260px;
    }

    .morning-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .strip {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 560px) {
    .topbar,
    main,
    footer {
        width: min(100% - 28px, 1180px);
    }

    .topbar {
        min-height: 76px;
    }

    .mail-note {
        display: none;
    }

    .hero {
        padding: 42px 0 34px;
    }

    h1 {
        font-size: clamp(3rem, 16vw, 4.6rem);
    }

    .sun-scene {
        border-radius: 30px;
    }

    .feature-card,
    .strip {
        border-radius: 24px;
        padding: 25px;
    }

    footer {
        flex-wrap: wrap;
        padding-bottom: 34px;
    }
}
