* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background: #0e1116;
    color: #e6e8eb;
    line-height: 1.6;
}

.container {
    max-width: 760px;
    padding: 80px 24px;
    margin: 0 auto;
}

section {
    margin-bottom: 96px;
}

h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 24px;
}

h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #9aa1aa;
}

.lead {
    font-size: 18px;
    color: #9aa1aa;
    margin-bottom: 32px;
}

.stats {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stats li {
    margin-bottom: 12px;
}

.link {
    color: #e6e8eb;
    text-decoration: none;
    border-bottom: 1px solid #2a2f36;
}

.link:hover {
    border-color: #e6e8eb;
}

input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #2a2f36;
    color: #e6e8eb;
    padding: 8px 0;
    width: 260px;
}

button {
    background: none;
    border: none;
    color: #e6e8eb;
    margin-left: 16px;
    cursor: pointer;
}

footer {
    font-size: 13px;
    color: #6b7280;
}

.header {
    margin-bottom: 120px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: auto;
    stroke: #e6e8eb;
    fill: none;
    stroke-width: 1.6;
}

.wordmark {
    font-weight: 500;
    letter-spacing: 0.12em;
    font-size: 14px;
    color: #e6e8eb;
}

.metrics {
    max-width: 720px;
    margin: 0 auto;
    font-family: Inter, system-ui, sans-serif;
    color: #e6e8eb;
}

.metric-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    margin-bottom: 48px;
}

.metric {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 12px;
    color: #9aa0a6;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.value {
    font-size: 20px;
    font-weight: 500;
}

hr {
    border: none;
    border-top: 1px solid #1f2227;
    margin: 48px 0;
}

.meta {
    font-size: 11px;
    color: #7d838a;
}

.metric.highlight .value {
    font-size: 28px;
    font-weight: 600;
}

svg.lucide {
    width: 16px;
    height: 16px;
    stroke-width: 2.5px; /* Upravte podle toho, jak moc jemné je chcete mít */
    vertical-align: -3px; /* Zarovnání na střed textu */
}