/*
Theme Name: VibeCam Pro
Theme URI: https://vibecam.site
Author: Lloyd Media Lab
Author URI: https://lloydmedialab.co.za
Description: A fast, SEO-optimised WordPress theme for VibeCam — Your guide to better random video chat.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Tags: affiliate, seo, review, blog, custom-menu, featured-images, schema
Text Domain: vibecam-pro
*/

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --white:       #FFFFFF;
  --off-white:   #F8F9FB;
  --border:      #E2E8F0;
  --border-light:#F1F5F9;
  --navy:        #0D1B2A;
  --navy-mid:    #1E3A5F;
  --text-primary:#0D1B2A;
  --text-muted:  #64748B;
  --text-hint:   #94A3B8;
  --violet:      #7C3AED;
  --violet-dark: #6D28D9;
  --violet-bg:   #F5F3FF;
  --violet-border:#DDD6FE;
  --violet-mid:  #EDE9FE;
  --green:       #16A34A;
  --green-bg:    #F0FDF4;
  --green-border:#BBF7D0;
  --red:         #DC2626;
  --red-bg:      #FEF2F2;
  --red-border:  #FECACA;
  --amber:       #B45309;
  --amber-bg:    #FFFBEB;
  --amber-border:#FDE68A;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 6px;
  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow:    0 4px 12px rgba(0,0,0,.07);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.09);
  --shadow-card: 0 1px 6px rgba(0,0,0,.05);

  --transition: 0.18s ease;
  --container: 1080px;
  --container-narrow: 720px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; }
ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 2.85rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.25rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1.25em; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }
strong { color: var(--navy); font-weight: 600; }

/* =============================================
   LAYOUT
   ============================================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section       { padding: 72px 0; }
.section--sm   { padding: 48px 0; }
.section--lg   { padding: 96px 0; }
.section--alt  { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--violet { background: var(--violet-bg); border-top: 1px solid var(--violet-border); border-bottom: 1px solid var(--violet-border); }

/* =============================================
   HEADER & NAV
   ============================================= */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: 64px;
}

.site-branding { display: flex; align-items: center; flex-shrink: 0; }
.site-title a {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700; color: var(--navy);
  letter-spacing: -0.03em;
  display: flex; align-items: center; gap: 6px;
}
.logo-bar {
  display: inline-block; width: 3px; height: 18px;
  background: var(--violet); border-radius: 2px; flex-shrink: 0;
}

.header-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--green);
  background: var(--green-bg); border: 1px solid var(--green-border);
  border-radius: 100px; padding: 4px 10px;
  font-weight: 600;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: blink 1.8s infinite;
}
.live-count { color: var(--green); font-weight: 700; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.main-navigation { display: flex; align-items: center; }
.main-navigation ul { display: flex; align-items: center; gap: 2px; }
.main-navigation a {
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  padding: 6px 13px; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: var(--navy); background: var(--off-white);
}

.header-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--violet); color: var(--white);
  font-size: 13px; font-weight: 700;
  padding: 10px 18px; border-radius: var(--radius);
  transition: background var(--transition);
  white-space: nowrap; flex-shrink: 0;
}
.header-cta:hover { background: var(--violet-dark); }

.menu-toggle {
  display: none; background: none; padding: 8px;
  color: var(--navy); font-size: 1.25rem; border-radius: var(--radius-sm);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  border-radius: var(--radius); padding: 12px 22px;
  transition: all var(--transition); cursor: pointer; border: none;
  text-decoration: none; letter-spacing: -0.01em;
}
.btn--primary { background: var(--violet); color: var(--white); }
.btn--primary:hover { background: var(--violet-dark); }
.btn--ghost {
  background: var(--white); color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--violet); color: var(--violet); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-mid); }

/* =============================================
   SECTION LABELS
   ============================================= */
.section-eyebrow {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 8px;
}
.section-header { margin-bottom: 40px; }
.section-header p { font-size: 15px; max-width: 520px; margin-top: 10px; }
.section-header--center { text-align: center; }
.section-header--center p { margin-left: auto; margin-right: auto; }

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 80px 0 64px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--violet); background: var(--violet-bg);
  border: 1px solid var(--violet-border); border-radius: 100px;
  padding: 4px 12px; margin-bottom: 18px;
}
.hero-headline { margin-bottom: 18px; }
.hero-headline .accent { color: var(--violet); }
.hero-sub {
  font-size: 15px; color: var(--text-muted);
  margin-bottom: 32px; line-height: 1.65; max-width: 460px;
}
.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 0; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; padding: 0 28px 0 0; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat + .hero-stat {
  padding-left: 28px;
  border-left: 1px solid var(--border);
}
.hero-stat__value {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 700; color: var(--navy); line-height: 1; letter-spacing: -.02em;
}
.hero-stat__label {
  font-size: 10px; color: var(--text-hint);
  letter-spacing: .05em; text-transform: uppercase;
}

/* Live panel */
.live-panel {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 22px; box-shadow: var(--shadow-card);
}
.live-panel__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green); background: var(--green-bg);
  border: 1px solid var(--green-border); border-radius: 100px; padding: 3px 10px;
}
.live-badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); animation: blink 1.8s infinite; flex-shrink: 0;
}
.live-panel__count { font-size: 11px; color: var(--text-hint); }
.live-panel__count strong { color: var(--navy); font-weight: 700; }

.chat-feed { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.chat-bubble { display: flex; align-items: flex-start; gap: 8px; }
.chat-bubble--right { flex-direction: row-reverse; }
.chat-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--border); border: 1.5px solid #D1D5DB;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--text-muted); flex-shrink: 0;
}
.chat-msg {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px 10px 10px 3px;
  padding: 7px 11px; font-size: 12px; color: var(--navy);
  max-width: 190px; line-height: 1.45; box-shadow: var(--shadow-sm);
}
.chat-bubble--right .chat-msg {
  background: var(--violet); border-color: var(--violet);
  border-radius: 10px 10px 3px 10px; color: var(--white);
}
.chat-meta { font-size: 10px; color: var(--text-hint); margin-top: 3px; }
.panel-cta {
  width: 100%; background: var(--navy); color: var(--white);
  font-size: 12px; font-weight: 700; padding: 12px;
  border-radius: var(--radius); border: none; font-family: var(--font-display);
  letter-spacing: -0.01em; transition: background var(--transition);
}
.panel-cta:hover { background: var(--navy-mid); }

/* =============================================
   COMPARISON TABLE
   ============================================= */
.table-wrap {
  overflow-x: auto; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--white);
  box-shadow: var(--shadow-card); margin-top: 32px;
}
.comparison-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.comparison-table thead { background: var(--off-white); border-bottom: 1px solid var(--border); }
.comparison-table th {
  font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--text-hint); padding: 12px 16px; text-align: left; white-space: nowrap;
}
.comparison-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--border-light);
  color: var(--text-muted); vertical-align: middle;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: #FAFBFF; }
.platform-name { font-weight: 700; color: var(--navy); font-size: 13px; }
.platform-sub  { font-size: 10px; color: var(--text-hint); margin-top: 2px; }
.stars { color: #F59E0B; font-size: 12px; letter-spacing: -1px; }
.rating-num { color: var(--navy); font-weight: 700; font-size: 10px; margin-left: 3px; }
.badge {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 100px;
}
.badge--yes     { background: var(--green-bg);  color: #15803D; border: 1px solid var(--green-border); }
.badge--no      { background: var(--red-bg);    color: var(--red); border: 1px solid var(--red-border); }
.badge--moderate{ background: var(--amber-bg);  color: var(--amber); border: 1px solid var(--amber-border); }
.badge--strong  { background: var(--green-bg);  color: #15803D; border: 1px solid var(--green-border); }
.badge--varies  { background: var(--off-white); color: var(--text-muted); border: 1px solid var(--border); }
.table-link {
  display: inline-flex; font-size: 10px; font-weight: 700;
  color: var(--violet); background: var(--violet-bg);
  border: 1px solid var(--violet-border);
  padding: 4px 10px; border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.table-link:hover { background: var(--violet-mid); }

/* =============================================
   FEATURES GRID
   ============================================= */
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 32px;
}
.feature-card { background: var(--white); padding: 28px 24px; transition: background var(--transition); }
.feature-card:hover { background: var(--off-white); }
.feature-icon {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: var(--violet-bg); border: 1px solid var(--violet-border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.feature-icon svg {
  width: 18px; height: 18px; stroke: var(--violet); stroke-width: 1.8;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.feature-card h3 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-card p  { font-size: 12px; color: var(--text-muted); line-height: 1.55; margin-bottom: 0; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; position: relative; margin-top: 32px; }
.steps-grid::before {
  content: ''; position: absolute; top: 22px;
  left: calc(16.67% + 22px); right: calc(16.67% + 22px);
  height: 1.5px; background: var(--violet-border);
}
.step-card { text-align: center; }
.step-number {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--violet);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--violet);
  margin: 0 auto 16px; position: relative; z-index: 1;
  box-shadow: 0 0 0 4px var(--violet-bg);
}
.step-card h3 { font-size: 14px; margin-bottom: 6px; }
.step-card p  { font-size: 12px; color: var(--text-muted); margin-bottom: 0; line-height: 1.55; }

/* =============================================
   POST CARDS
   ============================================= */
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.post-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.post-card:hover {
  border-color: var(--violet-border);
  box-shadow: 0 4px 16px rgba(124,58,237,.08);
  transform: translateY(-3px);
}
.post-card__thumb {
  height: 180px; overflow: hidden; background: var(--off-white);
}
.post-card__thumb a { display: block; height: 100%; }
.post-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .4s ease;
}
.post-card:hover .post-card__thumb img { transform: scale(1.04); }
.post-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.post-card__cat {
  font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 6px;
}
.post-card__title {
  font-size: 13px; font-weight: 700; color: var(--navy);
  line-height: 1.4; margin-bottom: 8px; flex: 1;
}
.post-card__title a { color: inherit; transition: color var(--transition); }
.post-card__title a:hover { color: var(--violet); }
.post-card__excerpt {
  font-size: 11px; color: var(--text-hint); line-height: 1.5; margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.post-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; color: var(--text-hint);
  padding-top: 10px; border-top: 1px solid var(--border-light);
}
.post-card__read { color: var(--violet); font-weight: 700; }

/* =============================================
   SINGLE POST
   ============================================= */
.single-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 48px;
  align-items: flex-start; padding: 56px 0 80px;
}
.post-header { margin-bottom: 28px; }
.post-header__cat { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--violet); margin-bottom: 10px; }
.post-header__title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
.post-header__meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-hint);
  padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 24px;
}
.post-header__meta span { display: flex; align-items: center; gap: 4px; }
.post-content { font-size: 15px; line-height: 1.8; color: var(--text-muted); }
.post-content h2 { font-size: 1.5rem; margin: 2em 0 .6em; color: var(--navy); }
.post-content h3 { font-size: 1.2rem; margin: 1.8em 0 .5em; color: var(--navy); }
.post-content p  { margin-bottom: 1.25em; }
.post-content strong { color: var(--navy); }
.post-content a { color: var(--violet); border-bottom: 1px solid var(--violet-border); transition: border-color var(--transition); }
.post-content a:hover { border-color: var(--violet); }
.post-content ul, .post-content ol { margin: 1em 0 1.25em 1.5em; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: .5em; color: var(--text-muted); }
.post-content blockquote {
  border-left: 3px solid var(--violet); padding: 4px 0 4px 20px;
  margin: 1.5em 0; font-size: 1.05rem; color: var(--text-muted);
}
.post-content img { border-radius: var(--radius-lg); margin: 1.5em 0; }
.post-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 13px; }
.post-content th, .post-content td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.post-content th { background: var(--off-white); color: var(--navy); font-weight: 700; }

/* Review score box */
.review-score {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; margin: 2em 0;
  display: flex; align-items: center; gap: 24px;
}
.review-score__num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--navy); line-height: 1; flex-shrink: 0; }
.review-score__stars { color: #F59E0B; font-size: 1.25rem; margin-bottom: 4px; }
.review-score__label { font-size: 12px; color: var(--text-hint); }

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
}
.sidebar-widget__title {
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--text-hint);
  margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.sidebar-post { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post:first-child { padding-top: 0; }
.sidebar-post__thumb {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  object-fit: cover; flex-shrink: 0; background: var(--border);
}
.sidebar-post__title { font-size: 12px; font-weight: 600; color: var(--navy); line-height: 1.35; transition: color var(--transition); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sidebar-post__title:hover { color: var(--violet); }
.sidebar-post__date { font-size: 10px; color: var(--text-hint); margin-top: 3px; }

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; max-width: 700px; margin: 28px auto 0;
  background: var(--white);
}
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; color: var(--navy); font-family: var(--font-display);
  font-size: 13px; font-weight: 600; text-align: left;
  padding: 18px 20px; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-icon {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 13px; color: var(--text-hint); flex-shrink: 0;
  transition: transform var(--transition), border-color var(--transition), color var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--violet); color: var(--violet); }
.faq-answer { display: none; padding: 0 20px 16px; font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: 11px; color: var(--text-hint);
  padding: 14px 0; border-bottom: 1px solid var(--border); margin-bottom: 28px;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--violet); }
.breadcrumb .sep { color: var(--border); }

/* =============================================
   PAGINATION
   ============================================= */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 40px 0; }
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  background: var(--off-white); border: 1px solid var(--border);
  transition: all var(--transition);
}
.page-numbers:hover, .page-numbers.current { background: var(--violet); border-color: var(--violet); color: var(--white); }
.page-numbers.dots { background: none; border-color: transparent; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--navy); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .site-title a { font-size: 1rem; color: var(--white); margin-bottom: 10px; display: inline-flex; }
.footer-brand p { font-size: 11px; color: #475569; line-height: 1.65; margin-top: 8px; max-width: 230px; }
.footer-col-title { font-family: var(--font-display); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #475569; margin-bottom: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 12px; color: #94A3B8; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-links a.highlight { color: #A78BFA; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07);
  font-size: 10px; color: #475569;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .live-panel { display: none; }
  .single-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .posts-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .header-live { display: none; }
  .main-navigation { display: none; }
  .main-navigation.is-open {
    display: flex; position: fixed; inset: 64px 0 0;
    background: var(--white); flex-direction: column;
    align-items: flex-start; padding: 20px 24px;
    border-top: 1px solid var(--border); z-index: 999;
  }
  .main-navigation.is-open ul { flex-direction: column; width: 100%; gap: 2px; }
  .main-navigation.is-open a { display: block; padding: 12px 14px; font-size: 15px; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .review-score { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero { padding: 52px 0 40px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* =============================================
   WORDPRESS CORE
   ============================================= */
.alignleft  { float: left; margin: .5em 1.5em 1em 0; }
.alignright { float: right; margin: .5em 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.wp-caption-text { font-size: 11px; color: var(--text-hint); text-align: center; margin-top: 6px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }