/* VELIO marketing — minimal, readable, works without build step */
:root {
  --bg: #0c0d10;
  --surface: #14161c;
  --text: #e8eaef;
  --muted: #8b919c;
  --accent: #3d8bfd;
  --border: #2a2e38;
  --radius: 12px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
}

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

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(12, 13, 16, 0.92);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

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

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

/* Hero */
.hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(1.08);
  text-decoration: none;
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--muted);
  text-decoration: none;
}

/* Screenshots */
.section {
  padding: 3rem 0;
}

.section h2 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin: 0 0 2rem;
  font-size: 0.95rem;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.shot {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 9 / 19.5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
  padding: 1rem;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

/* Legal pages */
.legal {
  padding: 2.5rem 0 4rem;
  max-width: 720px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 1.75rem;
  margin-top: 0;
}

.legal h2 {
  font-size: 1.1rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal ul {
  padding-left: 1.25rem;
}

.back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 2rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

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

/* VELIO wordmark — matches app (V + bar E + LIO, 24px black; tagline 10pt / 70% white) */
.velio-brand-link {
  display: block;
  text-decoration: none;
  color: inherit;
  line-height: 1.2;
}

.velio-brand-link:hover {
  text-decoration: none;
  opacity: 0.94;
}

.velio-logo-row {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.velio-letter {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1;
  letter-spacing: -0.02em;
}

.velio-e-glyph {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 12px;
  height: 24px;
  flex-shrink: 0;
  gap: 2px;
}

.velio-e-glyph span {
  display: block;
  height: 2px;
  width: 12px;
  background: #fff;
  border-radius: 0.5px;
}

.velio-logo-plus {
  font-size: 24px;
  font-weight: 900;
  color: #a3e635;
  line-height: 1;
  margin-left: 1px;
}

.velio-tagline {
  margin: 6px 0 0;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
  max-width: 22rem;
}
