body.home-page {
    transition: background-color 240ms ease;
}

.hero {
    display: grid;
    gap: var(--size-6);
    padding: var(--size-8);
}

.hero-copy {
    align-self: center;
}

.hero h1 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    line-height: 0.95;
}

.lede {
    max-width: 62ch;
    margin: 0;
    color: var(--site-text-muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--size-3);
}

.hero-figure {
    display: grid;
    align-items: center;
}

.hero-art {
    width: min(100%, 360px);
    margin: 0;
}

.hero-art img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-4);
}

.feature-list {
    margin: 0;
    padding-left: var(--size-5);
    color: var(--site-text-muted);
    line-height: 1.8;
}

.feature-grid,
.tip-grid {
    display: grid;
    gap: var(--size-4);
    margin-top: var(--size-6);
}

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

.feature-card {
    padding: var(--size-5);
}

.feature-card:first-of-type {
    background: #111827;
    color: #f9fafb;
    border: 1px solid #1f2937;
}

.feature-card:first-of-type .eyebrow,
.feature-card:first-of-type p {
    color: #d1d5db;
}

.feature-card:first-of-type h2 {
    color: #ffffff;
}

.feature-card:first-of-type code {
    color: #f9fafb;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.35rem;
    padding: 0.12rem 0.35rem;
}

.feature-card-canvas {
    overflow: hidden;
}

.wolly-dot-canvas {
    min-height: 220px;
    width: 100%;
    border-radius: var(--radius-3);
    background: rgba(255, 255, 255, 0.04);
}

.wolly-dot-canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.feature-card h2,
.cta-panel h2 {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.2;
}

.feature-card p,
.cta-panel p {
    margin: 0;
    color: var(--site-text-muted);
    line-height: 1.75;
}

.cta-panel {
    margin-top: var(--size-6);
    padding: var(--size-7);
}

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

.tip-card {
    display: grid;
    gap: var(--size-2);
    padding: var(--size-4);
    border: 1px solid var(--site-border);
    border-radius: var(--radius-3);
    background: white;
    box-shadow: var(--shadow-2);
}

.tip-card span {
    color: var(--site-text-muted);
    line-height: 1.65;
}

@media (min-width: 860px) {
    .hero {
        grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
        align-items: center;
    }
}

@media (max-width: 860px) {
    .feature-grid,
    .tip-grid {
        grid-template-columns: 1fr;
    }
}
