/* vnextcast marketing shell — shared reset, utilities, footer */
@import url('tokens.css');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: var(--fg); background: var(--bg); -webkit-font-smoothing: antialiased; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

/* Skip link */
.skip-link { position: absolute; left: -9999px; z-index: 200; }
.skip-link:focus { position: fixed; top: 0; left: 0; background: var(--accent); color: #fff; padding: 8px 16px; text-decoration: none; font-size: 14px; font-weight: 550; }

/* Nav (light theme — used by most marketing pages; index.html overrides inline for dark hero) */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 32px; height: 56px; display: flex; align-items: center; justify-content: space-between; background: oklch(98.5% .003 230/.82); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); }
.nav-logo { font-family: var(--font-display); font-size: 17px; font-weight: 650; color: var(--fg); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.nav-logo-mark { width: 28px; height: 28px; border-radius: 6px; background: var(--fg); color: var(--bg); display: grid; place-items: center; font-size: 13px; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 450; padding: 6px 14px; border-radius: 6px; transition: color .15s, background .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: oklch(96% .003 230); }
.nav-cta { background: var(--accent)!important; color: #fff!important; font-weight: 550!important; }

/* Utility */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.mono { font-family: var(--font-mono); }
.label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }

/* Footer */
.footer { padding: 48px 32px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { color: var(--muted); text-decoration: none; } .footer-links a:hover { color: var(--accent); }
