/* Shared styles for TeeeVEE subpages */
:root {
  --bg: #FAFAF7;
  --bg-alt: #F2F1EC;
  --ink: #0F1114;
  --ink-soft: #3A3D42;
  --ink-mute: #6B6F76;
  --line: #E5E3DC;
  --accent: #FF5C3A;
  --accent-soft: #FFE9E2;
  --gold: #E9B949;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-md: 0 8px 24px -12px rgba(15,17,20,.14), 0 2px 6px rgba(15,17,20,.04);
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg); color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px; line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; text-transform: uppercase; letter-spacing: .18em;
  color: var(--ink-mute); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content:''; width:6px; height:6px; border-radius:50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255,92,58,.15); }

.display {
  font-family: 'Instrument Serif', serif;
  font-weight: 400; font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02; letter-spacing: -0.02em; margin: 0;
}
.display em { font-style: italic; color: var(--accent); }
.lede { font-size: 17px; color: var(--ink-soft); max-width: 58ch; line-height: 1.55; }

.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 22px; border-radius:999px; font-weight:600; font-size:15px;
  transition: all .2s ease; white-space: nowrap; border:1px solid transparent; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { transform: translateY(-1px); box-shadow: 0 16px 30px -14px rgba(255,92,58,.6); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-sm { padding: 10px 16px; font-size: 13px; }

.nav { position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  background: rgba(250,250,247,.85);
  border-bottom: 1px solid var(--line); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; height:68px; }
.logo { display:inline-flex; align-items:center; gap:10px; font-weight:700; font-size:18px; letter-spacing:-.01em; }
.logo-mark { width:30px; height:30px; border-radius:8px; background: var(--ink); color:#fff;
  display:inline-flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.logo-mark::after { content:''; position:absolute; inset:auto 0 0 0; height:10px;
  background: linear-gradient(90deg, var(--accent), var(--gold)); }
.logo-mark svg { position:relative; z-index:1; }
.nav-links { display:flex; gap:28px; align-items:center; }
.nav-links a { font-size:14px; color:var(--ink-soft); font-weight:500; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active { border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.nav-cta { display:flex; gap:10px; align-items:center; }
@media (max-width: 860px) { .nav-links { display:none; } }

section { padding: 72px 0; }
.page-hero { padding: 64px 0 40px; border-bottom: 1px solid var(--line); background: var(--bg-alt); }

footer { padding: 56px 0 32px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-mute); }
.foot-row { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
