* { box-sizing: border-box; }
html { margin: 0; padding: 0; background: #fff; }
body {
    margin: 0;
    padding: 0;
    color: var(--w-text);
    background: #fff;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, input { font: inherit; }
.w-shell {
    width: min(var(--w-site-max), calc(100% - 80px));
    margin-inline: auto;
}
.w-page {
    min-height: 100svh;
    display: grid;
    grid-template-rows: var(--w-header-h) minmax(0, 1fr) auto auto;
    overflow-x: clip;
}
.w-check {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--w-green);
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
}
