/* ============================================================
   VELA — shared site stylesheet
   Design tokens pulled directly from the Vela app itself, so the
   website and the app feel like the same product.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #060608;
  --surface: rgba(255,255,255,0.03);
  --border: rgba(192,169,110,0.15);
  --border-strong: rgba(192,169,110,0.3);
  --gold: #C0A96E;
  --gold-bright: #E8D4A0;
  --text: #F0F0F0;
  --text-dim: #C8C8C8;
  --muted: #888;
  --muted-dim: #555;

  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }
a:focus-visible, button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

img, svg { display: block; max-width: 100%; }

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}

nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(6,6,8,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
nav.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img { width: 26px; height: 16px; }
.nav-brand span {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text);
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.nav-links a:hover { color: var(--gold); }

.hero {
  padding: 110px 0 90px;
  text-align: center;
}
.hero-mark {
  width: 130px;
  margin: 0 auto 36px;
  animation: rise 1.4s ease-out both, breathe 5s ease-in-out 1.4s infinite;
  filter: drop-shadow(0 0 18px rgba(192,169,110,0.25));
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes breathe {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(192,169,110,0.25)); }
  50% { filter: drop-shadow(0 0 30px rgba(192,169,110,0.45)); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mark { animation: none; }
}
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 84px);
  letter-spacing: 10px;
  color: var(--text);
  margin-bottom: 18px;
}
.hero .tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 3vw, 24px);
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 22px;
}
.hero p.lede {
  max-width: 480px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 14px;
}
section.block {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
section.block h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 18px;
}
section.block p {
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 300;
  max-width: 640px;
}
section.block p + p { margin-top: 14px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
@media (max-width: 560px) {
  .info-grid { grid-template-columns: 1fr; }
}
.info-grid .label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-dim);
  font-weight: 600;
  margin-bottom: 6px;
}
.info-grid .value {
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
}

footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 50px;
}
footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
footer .copyright {
  font-size: 12px;
  color: var(--muted-dim);
}
footer .foot-links {
  display: flex;
  gap: 22px;
}
footer .foot-links a {
  font-size: 12px;
  color: var(--muted);
}
footer .foot-links a:hover { color: var(--gold); }

.legal {
  padding: 70px 0 100px;
}
.legal h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 42px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.legal .updated {
  color: var(--muted-dim);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 44px;
}
.legal h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: var(--gold);
  margin: 40px 0 12px;
}
.legal p, .legal li {
  color: var(--text-dim);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.75;
}
.legal p + p { margin-top: 12px; }
.legal ul { margin: 12px 0 12px 22px; }
.legal li { margin-bottom: 8px; }
.legal a { text-decoration: underline; }
