/* SpectraVid — spectavid.xyz */

:root {
  --bg:           #07060d;
  --bg-card:      #0e0c18;
  --bg-elevated:  #161325;
  --bg-overlay:   rgba(7,6,13,0.88);
  --text:         #f0ecf8;
  --text-muted:   #9590a8;
  --text-dim:     #4e4a60;
  --accent:       #7c3aed;
  --accent-light: #a78bfa;
  --accent-hover: #8b5cf6;
  --accent-dim:   rgba(124,58,237,0.14);
  --danger:       #e05252;
  --danger-bg:    rgba(224,82,82,0.10);
  --success:      #34d399;
  --success-bg:   rgba(52,211,153,0.10);
  --border:       rgba(255,255,255,0.07);
  --border-focus: rgba(124,58,237,0.55);
  --radius:       6px;
  --radius-lg:    12px;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:    0 16px 56px rgba(0,0,0,0.7);
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-w:        1160px;
  --nav-h:        64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle noise overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ─── Typography ─────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; letter-spacing: -0.025em; color: var(--text); }
h1 { font-size: clamp(2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.5rem,3vw,2.25rem); }
h3 { font-size: 1.375rem; }
p  { color: var(--text-muted); line-height: 1.75; }
a  { color: var(--accent-light); text-decoration: none; transition: color 0.15s; }
a:hover { color: #c4b5fd; }
img { display: block; max-width: 100%; height: auto; }

/* ─── Layout ─────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-light); margin-bottom: 12px;
}
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ─── Navigation ──────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: rgba(7,6,13,0.92); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border);
  z-index: 100; display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 800; font-size: 1.125rem;
  letter-spacing: -0.04em; text-decoration: none;
}
.nav-logo-mark {
  width: 32px; height: 32px; background: var(--accent); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: #fff; flex-shrink: 0;
  letter-spacing: -0.05em;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: block; padding: 6px 14px; font-size: 0.875rem; color: var(--text-muted);
  border-radius: var(--radius); transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-signin { font-size: 0.875rem; color: var(--text-muted); padding: 6px 14px; border-radius: var(--radius); transition: color 0.15s; }
.nav-signin:hover { color: var(--text); }

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; font-family: var(--font-sans); font-size: 0.875rem;
  font-weight: 600; border-radius: var(--radius); cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.1s, box-shadow 0.15s;
  text-decoration: none; border: none; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; box-shadow: 0 0 24px rgba(124,58,237,0.45); }
.btn-secondary { background: rgba(255,255,255,0.07); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: rgba(255,255,255,0.11); color: var(--text); }
.btn-ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 8px; }
.btn-full { width: 100%; }
.btn-sm { padding: 6px 14px; font-size: 0.8125rem; }

/* ─── Cards ──────────────────────────────────────── */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.card-body { padding: 24px; }

/* ─── Forms ──────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text-muted); margin-bottom: 8px; }
.input {
  width: 100%; background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 11px 14px; font-family: var(--font-sans);
  font-size: 0.9375rem; color: var(--text); outline: none;
  transition: border-color 0.15s, box-shadow 0.15s; appearance: none; -webkit-appearance: none;
}
.input::placeholder { color: var(--text-dim); }
.input:focus { border-color: var(--border-focus); box-shadow: 0 0 0 3px rgba(124,58,237,0.15); }

/* ─── Alert ──────────────────────────────────────── */
.alert {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
  border-radius: var(--radius); font-size: 0.875rem; line-height: 1.5; margin-bottom: 24px;
}
.alert-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.alert-error { background: var(--danger-bg); border: 1px solid rgba(224,82,82,0.25); color: #e88080; }
.alert-success { background: var(--success-bg); border: 1px solid rgba(52,211,153,0.25); color: #6ee7b7; }
.alert-info { background: var(--accent-dim); border: 1px solid rgba(124,58,237,0.25); color: var(--accent-light); }

/* ─── Hero ───────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-bg-fallback {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 80% at 60% 40%, rgba(50,15,90,0.7) 0%, var(--bg) 65%),
    linear-gradient(135deg, #07060d 0%, #150d2e 50%, #07060d 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(7,6,13,0.3) 0%, rgba(7,6,13,0.75) 60%, var(--bg) 100%),
    url("assets/01-hero.jpg") center/cover no-repeat;
}
.hero-content { position: relative; z-index: 1; max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-dim); border: 1px solid rgba(124,58,237,0.3);
  border-radius: 100px; padding: 5px 14px 5px 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--accent-light); margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--accent-light); border-radius: 50%; }
.hero h1 { font-size: clamp(2.5rem,6vw,4rem); margin-bottom: 20px; color: var(--text); }
.hero h1 em { font-style: italic; color: var(--accent-light); }
.hero-lead { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-note { font-size: 0.8125rem; color: var(--text-dim); margin-top: 20px; }

/* ─── Video Grid ─────────────────────────────────── */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.video-grid-lg { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.video-card { cursor: pointer; border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; position: relative; }
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-card-thumb { aspect-ratio: 16/9; background: var(--bg-elevated); position: relative; overflow: hidden; }
.video-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.video-card:hover .video-card-thumb img { transform: scale(1.05); }
.video-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,6,13,0.9) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.video-card:hover .video-card-overlay { opacity: 1; }
.video-card-play {
  width: 48px; height: 48px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(124,58,237,0.6);
}
.video-card-lock {
  position: absolute; top: 10px; right: 10px;
  background: rgba(7,6,13,0.8); backdrop-filter: blur(4px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 4px 8px; font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-dim);
  display: flex; align-items: center; gap: 4px;
}
.video-card-body { padding: 12px 4px 4px; }
.video-card-title { font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.video-card-artist { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.video-card-meta { font-size: 0.75rem; color: var(--text-dim); display: flex; gap: 8px; align-items: center; }
.video-card-duration { background: var(--bg-elevated); padding: 2px 6px; border-radius: 4px; }

/* ─── Thumb Placeholders ─────────────────────────── */
.thumb-1 { background: linear-gradient(135deg, #1a0a2e 0%, #0d0820 60%, #1a0d08 100%); }
.thumb-2 { background: linear-gradient(135deg, #0d1a2e 0%, #1a0a28 60%, #080d1a 100%); }
.thumb-3 { background: linear-gradient(135deg, #200a1e 0%, #0a1820 50%, #1a1208 100%); }
.thumb-4 { background: linear-gradient(135deg, #0a200a 0%, #1a0820 50%, #201808 100%); }
.thumb-5 { background: linear-gradient(135deg, #201408 0%, #0a0d20 60%, #180a20 100%); }
.thumb-6 { background: linear-gradient(135deg, #0a1420 0%, #200a10 50%, #0d1a0a 100%); }
.thumb-7 { background: linear-gradient(160deg, #18081e 0%, #08181e 60%, #1e1808 100%); }
.thumb-8 { background: linear-gradient(135deg, #0e0e1e 0%, #1e080e 50%, #0e1e08 100%); }

.thumb-label {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px; padding: 16px;
}
.thumb-icon { font-size: 1.75rem; opacity: 0.35; }
.thumb-title { font-size: 0.8125rem; font-weight: 700; color: rgba(240,236,248,0.55); text-align: center; line-height: 1.2; }
.thumb-artist { font-size: 0.6875rem; color: rgba(240,236,248,0.3); }

/* ─── Features ───────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(124,58,237,0.25); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 16px;
}
.feature-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feature-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ─── Stats ──────────────────────────────────────── */
.stats-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.stat-item { background: var(--bg-card); padding: 32px 24px; text-align: center; }
.stat-value { font-size: 2.25rem; font-weight: 800; color: var(--text); letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.8125rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── Quote ──────────────────────────────────────── */
.quote-block { border-left: 2px solid var(--accent); padding: 8px 0 8px 24px; margin: 32px 0; }
.quote-text { font-size: 1.25rem; font-style: italic; color: var(--text); line-height: 1.6; margin-bottom: 10px; }
.quote-author { font-size: 0.875rem; color: var(--text-dim); }

/* ─── Auth ───────────────────────────────────────── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: calc(var(--nav-h) + 40px) 24px 60px; }
.auth-wrap { width: 100%; max-width: 420px; }
.auth-logo { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 800; font-size: 1.125rem; text-decoration: none; margin-bottom: 40px; letter-spacing: -0.03em; }
.auth-heading { font-size: 1.625rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.auth-sub { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.55; }
.auth-footer-links { margin-top: 28px; font-size: 0.875rem; color: var(--text-dim); text-align: center; line-height: 1.7; }

/* ─── Page Header ────────────────────────────────── */
.page-header { padding: calc(var(--nav-h) + 60px) 0 60px; border-bottom: 1px solid var(--border); }
.page-header-inner { max-width: 640px; }
.page-title { font-size: clamp(1.75rem,4vw,2.75rem); margin-bottom: 16px; }
.page-desc { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Blog ───────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.post-list { display: flex; flex-direction: column; gap: 0; }
.post-item {
  padding: 32px 0; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 160px; gap: 24px; align-items: start;
  text-decoration: none; color: inherit; transition: opacity 0.15s;
}
.post-item:hover { opacity: 0.8; }
.post-item:first-child { padding-top: 0; }
.post-cat { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 8px; }
.post-title { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.post-excerpt { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.post-date { font-size: 0.8125rem; color: var(--text-dim); }
.post-thumb { aspect-ratio: 16/10; background: var(--bg-elevated); border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Post layout ────────────────────────────────── */
.post-layout { display: grid; grid-template-columns: 1fr 280px; gap: 64px; align-items: start; }
.post-content { max-width: 680px; }
.post-content h2 { font-size: 1.5rem; margin: 40px 0 16px; color: var(--text); }
.post-content h3 { font-size: 1.25rem; margin: 32px 0 12px; color: var(--text); }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; color: var(--text-muted); }
.post-content li { margin-bottom: 8px; line-height: 1.7; }
.post-content strong { color: var(--text); }
.post-content em { color: var(--text-muted); }

/* ─── Sidebar ────────────────────────────────────── */
.sidebar-widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.sidebar-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sidebar-links a { display: block; padding: 6px 10px; font-size: 0.875rem; color: var(--text-muted); border-radius: var(--radius); transition: background 0.15s, color 0.15s; text-decoration: none; }
.sidebar-links a:hover { background: var(--bg-elevated); color: var(--text); }

/* ─── FAQ ────────────────────────────────────────── */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 28px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-q { font-size: 1.0625rem; font-weight: 600; color: var(--text); margin-bottom: 12px; line-height: 1.4; }
.faq-a { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }
.faq-a a { color: var(--accent-light); }
.faq-a p { margin-bottom: 12px; }
.faq-a p:last-child { margin-bottom: 0; }

/* ─── Pricing ────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 900px; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: relative; }
.pricing-card.featured { border-color: var(--accent); background: linear-gradient(180deg, rgba(124,58,237,0.08) 0%, var(--bg-card) 100%); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; white-space: nowrap; }
.pricing-tier { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 12px; }
.pricing-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.pricing-currency { font-size: 1.25rem; font-weight: 600; color: var(--text); }
.pricing-price { font-size: 3rem; font-weight: 800; color: var(--text); letter-spacing: -0.04em; line-height: 1; }
.pricing-period { font-size: 0.875rem; color: var(--text-dim); }
.pricing-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
.pricing-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text-muted); }
.pricing-check { color: var(--success); flex-shrink: 0; margin-top: 2px; }

/* ─── Filter Bar ─────────────────────────────────── */
.filter-bar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 20px 0; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.filter-btn { padding: 6px 16px; border-radius: 100px; font-size: 0.8125rem; font-weight: 500; background: var(--bg-elevated); border: 1px solid var(--border); color: var(--text-muted); cursor: pointer; transition: all 0.15s; }
.filter-btn:hover, .filter-btn.active { background: var(--accent-dim); border-color: rgba(124,58,237,0.3); color: var(--accent-light); }

/* ─── CTA Banner ─────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(124,58,237,0.07) 100%);
  border: 1px solid rgba(124,58,237,0.2); border-radius: var(--radius-lg);
  padding: 56px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.cta-banner-content h2 { margin-bottom: 12px; }
.cta-banner-content p { font-size: 1rem; max-width: 480px; }
.cta-banner-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ─── Lock gate ──────────────────────────────────── */
.lock-banner { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px; text-align: center; max-width: 440px; margin: 60px auto; }
.lock-icon { font-size: 2.5rem; margin-bottom: 16px; }
.lock-banner h3 { font-size: 1.25rem; margin-bottom: 10px; }
.lock-banner p { font-size: 0.9375rem; margin-bottom: 24px; }

/* ─── Press ──────────────────────────────────────── */
.press-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; opacity: 0.3; filter: grayscale(1); padding: 16px 0; }
.press-logo { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text); font-style: italic; }

/* ─── Footer ─────────────────────────────────────── */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 60px 0 32px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.6; margin-top: 14px; max-width: 260px; }
.footer-col-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.15s; text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { padding-top: 28px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 0.8125rem; color: var(--text-dim); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8125rem; color: var(--text-dim); text-decoration: none; transition: color 0.15s; }
.footer-legal a:hover { color: var(--text-muted); }

/* ─── Utils ──────────────────────────────────────── */
.text-center { text-align: center; }
.text-accent { color: var(--accent-light) !important; }
.text-muted  { color: var(--text-muted) !important; }
.text-dim    { color: var(--text-dim) !important; }
.flex        { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mb-12  { margin-bottom: 12px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; }
.mb-48  { margin-bottom: 48px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }
.w-full { width: 100%; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .post-item { grid-template-columns: 1fr; }
  .post-thumb { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
