@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Voluto Design */
:root {
  --bg: #0b0c10;
  --fg: #f5f5f5;
  --muted: #b3b3b3;
  --accent: #00a651; /* Voluto green */
  --max-width: min(960px, 70vw);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 32px;
}

.page {
  max-width: var(--max-width);
  width: 100%;
  text-align: center;
}

.logo {
  height: 72px;
  margin-bottom: 24px;
}

/* Hero Section */
.hero-line {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 48px; /* NEW: clean spacing before first section */
  color: var(--fg);
}

/* Content Blocks */
.block {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 28px;
}

.section {
  margin-bottom: 56px;
  text-align: left;
}

.section-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  color: var(--fg);
}

a.link {
  color: var(--fg);
  text-decoration: none;
  font-weight: 300;
}

a.link:hover {
  color: var(--accent);
}

.footer {
  margin-top: 48px;
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
}
