* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #101418;
    background: #f5f1ea;
}
header {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    border-bottom: 1px solid rgba(16, 20, 24, 0.12);
    background: rgba(245, 241, 234, 0.92);
    position: sticky;
    top: 0;
    backdrop-filter: blur(16px);
    z-index: 5;
}
header img { width: 168px; height: auto; display: block; }
nav { display: flex; gap: 22px; align-items: center; }
a { color: inherit; text-decoration: none; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(16, 20, 24, 0.18);
    border-radius: 6px;
    font-weight: 700;
    background: #fffdf8;
}
.button.primary {
    background: #d95d24;
    color: white;
    border-color: #d95d24;
}
.hero {
    min-height: calc(100vh - 76px);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    align-items: center;
    gap: 52px;
    padding: 56px 5vw 82px;
}
h1 {
    font-size: clamp(54px, 8vw, 118px);
    line-height: 0.9;
    letter-spacing: 0;
    margin: 0 0 26px;
}
h2 { font-size: 40px; margin: 0 0 20px; letter-spacing: 0; }
h3 { margin: 0 0 8px; }
p { font-size: 18px; line-height: 1.6; color: #4d545c; max-width: 680px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.product-shot {
    min-height: 560px;
    border-radius: 8px;
    background: #11161c;
    color: white;
    padding: 24px;
    box-shadow: 0 30px 80px rgba(16, 20, 24, 0.24);
    overflow: hidden;
}
.toolbar { display: flex; gap: 8px; margin-bottom: 24px; }
.toolbar span { width: 12px; height: 12px; border-radius: 99px; background: #d95d24; }
.toolbar span:nth-child(2) { background: #f0ba48; }
.toolbar span:nth-child(3) { background: #63b88f; }
.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.grid div {
    min-height: 130px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 18px;
    background: rgba(255,255,255,0.06);
}
.grid strong, .grid small { display: block; }
.grid small { color: #bac2cc; margin-top: 10px; }
.chart {
    height: 180px;
    display: flex;
    gap: 18px;
    align-items: end;
    margin-top: 28px;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}
.chart i { flex: 1; background: #d95d24; border-radius: 4px 4px 0 0; }
.chart i:nth-child(1) { height: 36%; }
.chart i:nth-child(2) { height: 58%; background: #f0ba48; }
.chart i:nth-child(3) { height: 76%; background: #63b88f; }
.chart i:nth-child(4) { height: 52%; background: #5a8fd8; }
.chart i:nth-child(5) { height: 88%; }
.band, .pricing { padding: 80px 5vw; }
.features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
article {
    padding: 26px;
    background: #fffdf8;
    border: 1px solid rgba(16, 20, 24, 0.12);
    border-radius: 8px;
}
.pricing { background: #101418; color: white; }
.pricing p { color: #c8ced6; }
@media (max-width: 860px) {
    header { align-items: flex-start; height: auto; padding: 18px 20px; gap: 18px; }
    nav { flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
    .hero { grid-template-columns: 1fr; padding: 42px 20px 64px; }
    .product-shot { min-height: 420px; }
    .features { grid-template-columns: 1fr; }
}
