:root {
    --tmf-black: #171719;
    --tmf-text: #29292d;
    --tmf-muted: #737379;
    --tmf-line: #e6e6e2;
    --tmf-soft: #f7f7f4;
    --tmf-green: #18794e;
    --tmf-green-soft: #edf8f2;
    --tmf-white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--tmf-soft);
}

body {
    margin: 0;
    color: var(--tmf-text);
    background: var(--tmf-soft);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.topbar-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex: 0 0 auto;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.brand-name {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.brand-tagline {
    margin-top: 2px;
    color: var(--tmf-muted);
    font-size: 10px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    font-size: 12px;
}

.nav a {
    text-decoration: none;
}

.nav-link {
    color: #55555b;
}

.language {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 4px;
}

.language a {
    padding: 6px 7px;
    border-radius: 7px;
    color: var(--tmf-muted);
    font-size: 10px;
    font-weight: 800;
}

.language a.active {
    background: #f0f0ec;
    color: var(--tmf-black);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--tmf-line);
    backdrop-filter: blur(12px);
}

.nav-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 9px;
    background: var(--tmf-black);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.kicker {
    color: var(--tmf-green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.section {
    padding: 92px 0;
}

.section-white {
    background: #fff;
}

.section-soft {
    background: var(--tmf-soft);
}

.footer-links a {
    text-decoration: none;
}
