/* Vessel web — minimal static pages */

:root {
  --bg: #080C18;
  --surface: #111625;
  --text: #F2EEE6;
  --text-muted: #8A8FA0;
  --accent: #A8B4E8;
  --link: #A8B4E8;
  --border: rgba(255, 255, 255, 0.08);
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 96px;
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}

nav a.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
}

nav .links {
  display: flex;
  gap: 20px;
}

nav .links a {
  color: var(--text-muted);
  text-decoration: none;
}

nav .links a:hover {
  color: var(--text);
}

h1 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  line-height: 1.15;
}

h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 48px 0 12px;
  line-height: 1.25;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 8px;
}

p {
  margin: 12px 0;
}

a {
  color: var(--link);
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  padding-left: 24px;
}

li {
  margin: 6px 0;
}

strong {
  color: var(--text);
}

code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.92em;
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
}

.meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.callout {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 6px;
}

footer {
  border-top: 1px solid var(--border);
  margin-top: 96px;
  padding: 32px 0;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 12px;
}

footer a:hover {
  color: var(--text);
}

.hero {
  text-align: center;
  padding: 72px 0 48px;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 16px;
}

.hero p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 19px;
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 48px 0;
}

@media (max-width: 560px) {
  .card-row {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 34px;
  }
}

.card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  text-decoration: none;
}

.card h3 {
  margin: 0 0 6px;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}
