/* Trenx site — палитра серверных страниц приложения (result-card.html) */
:root {
  --bg: #0E1116;
  --fg: #E6E9EF;
  --muted: #A7AEBC;
  --accent: #208AEF;
  --hairline: #232936;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

h1 { font-size: 28px; margin: 0 0 4px; }
h2 { font-size: 19px; margin: 32px 0 8px; }
p, li { color: var(--fg); }
.muted { color: var(--muted); }
.meta { color: var(--muted); font-size: 14px; margin-bottom: 28px; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

header.site {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 24px 0;
}
header.site .brand { font-weight: 800; font-size: 18px; color: var(--fg); }
header.site nav a { margin-left: 16px; font-size: 14px; color: var(--muted); }
header.site nav a:hover { color: var(--accent); }

footer.site {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 13px;
}
footer.site a { color: var(--muted); margin-right: 16px; }
footer.site a:hover { color: var(--accent); }

/* Плейсхолдер главной */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.hero h1 { font-size: 44px; letter-spacing: -0.5px; }
.hero p { font-size: 18px; color: var(--muted); max-width: 460px; margin: 8px auto 0; }
.hero .accent { color: var(--accent); }
