/* Homepage composition */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    padding: calc(var(--nav-h) + 32px) var(--space-page) 48px;
    text-align: center;
}

.hero-shot {
    width: min(880px, 100%);
    height: min(46svh, 420px);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-panel);
    background: var(--surface);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.hero-shot-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 14px;
    border-bottom: 1px solid var(--border);
    background: color-mix(in srgb, var(--cream-050) 80%, var(--white));
}

.hero-shot-chrome span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sand-200);
}

.hero-shot-body {
    height: calc(100% - 36px);
    overflow: hidden;
    background: var(--cream-050);
}

.hero-shot-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero h1 {
    max-width: 26ch;
    margin-top: 32px;
    font-family: var(--font-serif);
    font-size: clamp(40px, 7vw, 56px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.hero-accent {
    color: var(--primary);
}

.hero-lede {
    max-width: 42ch;
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.55;
}

.scroll-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: 32px;
    color: var(--text);
    text-decoration: none;
    transition: color 160ms ease, transform 160ms ease;
}

.scroll-hint:hover {
    color: var(--primary);
    transform: translateY(3px);
}

.scroll-hint svg {
    animation: hint-bob 1.8s ease-in-out infinite;
}

@keyframes hint-bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

.section {
    width: min(880px, calc(100% - 2 * var(--space-page)));
    margin: 0 auto;
    padding: 80px 0;
    scroll-margin-top: calc(var(--nav-h) + 16px);
}

.section + .section {
    border-top: 1px solid var(--border);
}

.eyebrow {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section h2 {
    max-width: 20ch;
    margin-top: 12px;
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.section-copy {
    max-width: 62ch;
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.65;
}

.value-grid {
    display: grid;
    gap: 16px;
    margin-top: 40px;
}

@media (min-width: 720px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 960px) {
    .value-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--surface);
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.value-card p {
    margin-top: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.steps {
    display: grid;
    gap: 0;
    margin-top: 40px;
    counter-reset: step;
}

.step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.step:last-child {
    border-bottom: 1px solid var(--border);
}

.step-num {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.step h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.step p {
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.stripe-note {
    margin-top: 40px;
    padding: 24px 28px;
    border-radius: var(--radius-card);
    background: var(--green-100);
}

.stripe-note h3 {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 600;
}

.stripe-note p {
    margin-top: 8px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.65;
}

.cta-band {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: min(880px, calc(100% - 2 * var(--space-page)));
    margin: 0 auto 80px;
    padding: 40px;
    border-radius: var(--radius-panel);
    background: var(--green-600);
    color: var(--white);
}

.cta-band h2 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    line-height: 1.15;
}

.cta-band p {
    max-width: 46ch;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
}

.cta-band .btn-primary {
    color: var(--green-700);
    background: var(--white);
}

.cta-band .btn-primary:hover {
    color: var(--green-700);
    background: var(--green-100);
}

@media (min-width: 640px) {
    .cta-band {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
