@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

:root {
  --bg: #ffffff;
  --fg: #121212;
  --muted: #666666;
  --accent: #2b6cb0;
  --border: #e6e6e6;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  text-decoration: underline;
}

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

h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 8px 0;
}

p.intro {
  margin: 0 0 24px 0;
  color: var(--muted);
  font-size: 1rem;
}

@media (max-width: 560px) {
  .container {
    padding: 16px;
  }
  h1 {
    font-size: 1.6rem;
  }
}
