/* Botivertailu — editorial, light, trustworthy */
:root {
  --ink: #1c2333;
  --muted: #5b6472;
  --accent: #2f6f5e;
  --accent-dark: #24584b;
  --bg: #ffffff;
  --bg-soft: #f6f8f7;
  --line: #e3e8e6;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}
.wrap { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header { border-bottom: 1px solid var(--line); background: var(--bg); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }
.logo { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--ink); text-decoration: none; letter-spacing: -0.3px; }
.logo span { color: var(--accent); }
.site-header nav a { margin-left: 22px; color: var(--muted); text-decoration: none; font-size: 15px; }
.site-header nav a:hover { color: var(--accent-dark); }

/* Hero */
.hero { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 48px 0 40px; }
.kicker { font-size: 13px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); margin-bottom: 12px; }
.hero h1 { font-family: var(--serif); font-size: 42px; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 18px; }
.lead { font-size: 19px; color: var(--muted); max-width: 640px; }
.hero-notes { margin-top: 22px; display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; color: var(--accent-dark); font-weight: 600; }

/* Content */
main .wrap > .intro { margin-top: 36px; margin-bottom: 18px; color: #333c4a; }
main .wrap > p { margin-bottom: 18px; }
main h2 { font-family: var(--serif); font-size: 30px; margin: 48px 0 16px; letter-spacing: -0.3px; }
main h2:first-of-type { margin-top: 36px; }
.bot-card h3 { font-family: var(--serif); font-size: 23px; margin: 0 0 10px; }

/* Summary table */
.summary-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 15px; }
.summary-table th { text-align: left; background: var(--bg-soft); padding: 10px 12px; border-bottom: 2px solid var(--line); font-size: 14px; }
.summary-table td { padding: 9px 12px; border-bottom: 1px solid var(--line); }
.summary-table tr:hover td { background: #fafcfb; }

/* Bot cards */
.bot-card { background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 24px 26px; margin: 20px 0; }
.bot-card p { margin-bottom: 10px; }
.bot-card p:last-child { margin-bottom: 0; }
.bot-card strong { color: var(--ink); }

.disclaimer { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; font-size: 14px; color: var(--muted); margin: 36px 0 10px; }

/* Utility pages */
.prose { max-width: 760px; margin: 40px auto 60px; }
.prose h1 { font-family: var(--serif); font-size: 36px; margin-bottom: 20px; }
.prose h2 { font-family: var(--serif); font-size: 26px; margin: 34px 0 14px; }
.prose p, .prose li { margin-bottom: 14px; }
.prose ul, .prose ol { padding-left: 26px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 28px 0; margin-top: 60px; }
.site-footer p { font-size: 14px; color: var(--muted); }
.site-footer a { color: var(--muted); margin-right: 14px; text-decoration: none; }
.site-footer a:hover { color: var(--accent-dark); }

@media (max-width: 640px) {
  .hero h1 { font-size: 32px; }
  .site-header nav a { margin-left: 14px; }
  .bot-card { padding: 18px; }
}
