/* ============================================
   СИНДИКАТ — Light Theme
   Colors: bg #F7F9FC, accent #2563EB, text #0F172A
   ============================================ */

:root {
  --bg: #F7F9FC;
  --surface: #FFFFFF;
  --surface-alt: #F1F5F9;
  --border: #E2E8F0;
  --text: #0F172A;
  --text-muted: #64748B;
  --text-dim: #94A3B8;
  --accent: #2563EB;
  --accent-dark: #1D4ED8;
  --accent-light: #DBEAFE;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; display: block; }

.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}

/* --- Layout --- */
.content-area { padding: 0; }
.content-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.content-narrow { max-width: 720px; }

/* --- Header --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px;
}
.site-branding { display: flex; align-items: center; min-width: 0; }
.site-title {
  display: inline-flex; align-items: center; gap: 0;
  font-size: 1.25rem; font-weight: 700; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.site-title:hover { color: var(--accent); }
.site-title-mark { display: none; }
.site-title-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.site-title-text {
  display: block;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}
.site-title-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--text-muted);
}

/* --- Navigation --- */
.main-navigation { display: flex; align-items: center; }
.main-navigation ul { display: flex; list-style: none; gap: 8px; }
.main-navigation li { position: relative; }
.main-navigation a {
  display: block; padding: 8px 16px; color: var(--text-muted);
  font-size: 0.875rem; font-weight: 500; border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.main-navigation a:hover { color: var(--text); background: var(--surface-alt); }
.main-navigation .current-menu-item > a { color: var(--accent); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-bar { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: all 0.2s; border-radius: 1px; }

/* --- Header Actions --- */
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-btn {
  display: inline-flex; align-items: center; padding: 8px 20px;
  font-size: 0.875rem; font-weight: 500; border-radius: var(--radius-sm);
  transition: all 0.2s ease; cursor: pointer;
}
.header-btn-outline {
  background: transparent; border: 1px solid var(--border); color: var(--text-muted);
}
.header-btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.header-btn-primary {
  background: var(--accent); border: none; color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(37,99,235,0.2);
}
.header-btn-primary:hover { background: var(--accent-dark); color: #FFFFFF; }

.user-dropdown {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 12px 4px 4px; border: 1px solid var(--border);
  border-radius: 20px; cursor: pointer; transition: border-color 0.2s;
}
.user-dropdown:hover { border-color: var(--accent); }
.user-dropdown .avatar { border-radius: 50%; width: 28px; height: 28px; }
.user-name { font-size: 0.875rem; color: var(--text-muted); }

#bg {
  position: absolute;
  inset: -6% -4%;
  width: 108%;
  height: 112%;
  z-index: 0;
  pointer-events: none;
}

/* --- Hero --- */
.hero { position: relative; isolation: isolate; min-height: max(720px, calc(100vh - 64px)); padding: 112px 24px 96px; text-align: left; overflow: hidden; display: flex; align-items: center; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(58% 72% at 18% 50%, rgba(247,249,252,.88), rgba(247,249,252,.56) 45%, rgba(247,249,252,0) 74%),
    linear-gradient(135deg, rgba(37,99,235,0.03), rgba(37,99,235,0.00) 34%, rgba(37,99,235,0.04) 72%, rgba(37,99,235,0.00));
}
.hero::after {
  content: '';
  position: absolute;
  inset: 10% -10% 0 auto;
  width: 48vw;
  max-width: 760px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 42%, rgba(37,99,235,.08), rgba(37,99,235,.04) 34%, rgba(37,99,235,0) 70%);
  filter: blur(16px);
}
.hero > .wrap { position: relative; z-index: 1; }
.hero .wrap > * { max-width: 620px; }
.hero h1, .hero .sub, .cta-row, .meta { margin-left: 0; margin-right: auto; }
.hero .sub { max-width: 620px; }
.blog-hero { padding: 160px 24px 80px; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero-tagline {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px;
  margin-bottom: 24px; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); border: 1px solid var(--border); border-radius: 20px;
}
.hero-heading {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: var(--text);
  line-height: 1.15; margin-bottom: 8px;
}
.hero-neon-text, .accent {
  font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 700; color: #1D4ED8;
  margin-bottom: 20px; line-height: 1.2;
}
.hero h1.accent {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 720px;
}
.hero-description, .sub {
  font-size: 1.125rem; color: #334155;
  max-width: 560px; margin: 0 auto 32px; line-height: 1.7;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* --- CTA Buttons --- */
.cta-button, .btn {
  display: inline-flex; align-items: center; padding: 12px 28px;
  font-size: 0.9375rem; font-weight: 600; border-radius: var(--radius-sm);
  transition: all 0.25s ease; cursor: pointer; text-decoration: none;
}
.cta-primary, .btn-primary {
  background: var(--accent); color: #FFFFFF; border: none;
  box-shadow: 0 2px 8px rgba(37,99,235,0.2);
}
.cta-primary:hover, .btn-primary:hover {
  background: var(--accent-dark); transform: translateY(-1px); color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.cta-secondary, .btn-ghost {
  background: rgba(255,255,255,0.65); color: var(--text); border: 1px solid rgba(148,163,184,0.28);
}
.cta-secondary:hover, .btn-ghost:hover {
  border-color: rgba(37,99,235,0.32); background: rgba(255,255,255,0.92); color: var(--accent);
}
.cta-outline {
  background: transparent; color: var(--accent); border: 1px solid var(--accent);
}
.cta-outline:hover { background: var(--accent-light); color: var(--accent); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-arrow { margin-left: 6px; }

/* --- Eyebrow / Section heads --- */
.eyebrow, .label {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 8px;
}

.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--text); }
.section-head .desc { font-size: 1rem; color: var(--text-muted); margin-top: 8px; }

/* --- Meta badges (hero) --- */
.meta { display: flex; justify-content: center; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.875rem; color: var(--text-muted); }
.meta-item svg { width: 16px; height: 16px; color: var(--accent); }

/* --- Funnel steps --- */
.metacog-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
}
.metacog-media {
  display: flex;
  justify-content: center;
}
.metacog-phone {
  width: min(100%, 360px);
  background: linear-gradient(180deg, #0F172A 0%, #111827 100%);
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 28px 60px rgba(15,23,42,0.22);
}
.metacog-phone__topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 12px 12px;
}
.metacog-phone__camera {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}
.metacog-phone__camera--right { opacity: 0.55; }
.metacog-phone__speaker {
  width: 72px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}
.metacog-phone__screen {
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  aspect-ratio: 9 / 16;
}
.metacog-phone__home {
  width: 92px;
  height: 5px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}
.metacog-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
  object-fit: cover;
}
.metacog-copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 14px;
}
.metacog-copy p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.metacog-mode {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(37,99,235,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
}
.metacog-mode__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.metacog-mode__switch {
  position: relative;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
}
.metacog-mode__knob {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
  box-shadow: 0 4px 10px rgba(15,23,42,0.18);
}
.metacog-note {
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  background: rgba(219,234,254,0.34);
  border-radius: 12px;
}
.metacog-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.metacog-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(148,163,184,0.16);
  border-radius: 16px;
  color: var(--text-muted);
  line-height: 1.55;
}
.metacog-points strong {
  color: var(--accent);
  font-weight: 700;
}

/* --- About --- */
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: center; }
.about-photo img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-text h2 { font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.about-text .role { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 16px; }
.about-text .role strong { color: var(--accent); }
.about-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.creds { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.cred { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9375rem; color: var(--text); }
.cred svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 2px; }

/* --- Pricing --- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow); transition: all 0.3s;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.price-card--featured {
  border-color: var(--accent); border-width: 2px;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}
.plan-name { font-size: 1.125rem; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.price { margin-bottom: 20px; }
.price .amount { font-size: 2.5rem; font-weight: 700; color: var(--text); }
.price .period { font-size: 1rem; color: var(--text-muted); }
.price .desc { font-size: 0.875rem; color: var(--text-dim); margin-top: 4px; }
.features { list-style: none; margin-bottom: 24px; }
.features li {
  padding: 8px 0; font-size: 0.9375rem; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.features li:last-child { border-bottom: none; }
.features li::before { content: "✓ "; color: var(--success); font-weight: 700; }

/* --- FAQ --- */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--accent); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; font-weight: 600; color: var(--text); cursor: pointer;
}
.faq-chevron { width: 20px; height: 20px; color: var(--text-dim); transition: transform 0.2s; }
.faq-a { padding: 0 20px 16px; font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; }

/* --- Posts Grid --- */
.posts-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; padding: 40px 0 60px;
}
.post-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all 0.3s ease;
}
.post-card:hover {
  border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.post-card-thumb { display: block; overflow: hidden; }
.post-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s ease; }
.post-card:hover .post-card-img { transform: scale(1.05); }
.post-card-body { padding: 24px; }
.post-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.8125rem; color: var(--text-dim); }
.post-card-date { text-transform: uppercase; letter-spacing: 0.05em; }
.post-card-cats { display: flex; gap: 6px; flex-wrap: wrap; }
.post-card-cat {
  padding: 2px 10px; font-size: 0.75rem; font-weight: 500;
  color: var(--accent); background: var(--accent-light);
  border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em;
}
.post-card-cat:hover { background: rgba(37,99,235,0.15); }
.post-card-title { font-size: 1.25rem; font-weight: 600; line-height: 1.3; margin-bottom: 8px; }
.post-card-title a { color: var(--text); }
.post-card-title a:hover { color: var(--accent); }
.post-card-excerpt { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.post-card-link {
  font-size: 0.875rem; font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s;
}
.post-card-link:hover { gap: 8px; color: var(--accent-dark); }

/* --- Single Post --- */
.content-single { padding-top: 80px; }
.single-post { padding: 40px 0; }
.single-post-header { margin-bottom: 40px; }
.single-post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 0.875rem; color: var(--text-dim); }
.single-post-date { text-transform: uppercase; letter-spacing: 0.05em; }
.single-post-cat {
  padding: 2px 10px; font-size: 0.75rem; font-weight: 500;
  color: var(--accent); background: var(--accent-light);
  border-radius: 4px; text-transform: uppercase;
}
.single-post-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700;
  color: var(--text); line-height: 1.2; margin-bottom: 24px;
}
.single-post-thumb { margin-bottom: 32px; border-radius: var(--radius); overflow: hidden; }
.single-post-img { width: 100%; height: auto; border-radius: var(--radius); }

/* --- Entry Content --- */
.entry-content { font-size: 1.0625rem; line-height: 1.8; color: #334155; }
.entry-content h2, .entry-content h3, .entry-content h4 {
  font-weight: 700; color: var(--text); margin-top: 1.5em; margin-bottom: 0.5em;
}
.entry-content p { margin-bottom: 1.25em; }
.entry-content ul, .entry-content ol { margin-bottom: 1.25em; padding-left: 1.5em; }
.entry-content li { margin-bottom: 0.5em; }
.entry-content blockquote {
  border-left: 3px solid var(--accent); padding: 16px 20px;
  margin: 1.5em 0; font-style: italic; color: var(--text-muted);
  background: var(--surface-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.entry-content .wp-block-image { margin: 1.5em 0; }
.entry-content .wp-block-image img { border-radius: var(--radius-sm); }
.entry-content .wp-block-code {
  background: #1E293B; color: #E2E8F0; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px; font-size: 0.875rem; overflow-x: auto;
}
.entry-content a { color: var(--accent); text-decoration: underline; }

/* --- Sidebar --- */
.widget {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 24px;
}
.widget-title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.widget ul { list-style: none; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--text-muted); font-size: 0.9375rem; }
.widget ul li a:hover { color: var(--accent); }

/* --- Footer --- */
.site-footer {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.96));
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
  margin-top: 96px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; max-width: 320px; flex: 0 0 320px; }
.footer-logo { font-size: 1.125rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); }
.footer-tagline { color: var(--text-muted); max-width: 340px; font-size: 0.95rem; line-height: 1.55; }
.footer-widgets { display: flex; flex: 1; justify-content: flex-end; flex-wrap: wrap; gap: 32px; }
.footer-links { min-width: 170px; flex: 1 1 170px; }
.footer-heading { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; color: var(--text); }
.footer-link-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 18px; }
.footer-link-list li + li { margin-top: 0; }
.footer-link-list a { color: #475569; font-size: 0.95rem; font-weight: 500; }
.footer-link-list a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 16px 24px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: #64748B; font-size: 0.8125rem; }
.footer-copy { text-align: center; font-size: 0.875rem; color: var(--text-dim); margin-top: 24px; }

/* --- Pagination --- */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 32px 0; }
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; border-radius: var(--radius-sm);
  font-size: 0.9375rem; font-weight: 500; color: var(--text-muted);
  border: 1px solid var(--border); background: var(--surface);
  transition: all 0.2s; text-decoration: none;
}
.page-numbers:hover { border-color: var(--accent); color: var(--accent); }
.page-numbers.current { background: var(--accent); color: #FFFFFF; border-color: var(--accent); }

/* --- 404 --- */
.error404 .content-area { text-align: center; padding: 120px 24px; }
.error404 h1 { font-size: 3rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.error404 p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 32px; }

/* --- Forms --- */
input[type="text"], input[type="email"], input[type="password"], textarea {
  width: 100%; padding: 12px 16px; font-size: 1rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--text); transition: border-color 0.2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }

/* --- Comments --- */
.comments-area { margin-top: 48px; }
.comment { padding: 16px 0; border-bottom: 1px solid var(--border); }
.comment:last-child { border-bottom: none; }
.comment-author { font-weight: 600; color: var(--text); }
.comment-date { font-size: 0.8125rem; color: var(--text-dim); }
.comment-body { margin-top: 8px; font-size: 0.9375rem; color: var(--text-muted); }

/* --- Responsive --- */
@media (max-width: 768px) {
  .main-navigation ul { display: none; }
  .menu-toggle { display: block; }
  .header-actions .header-btn-outline { display: none; }
  .header-actions .header-btn { padding: 8px 14px; }
  .site-title-mark { display: none; }
  .site-title-text { font-size: 1.35rem; }
  .site-title-sub { font-size: 0.68rem; }
  .about-grid { grid-template-columns: 1fr; }
  .funnel-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-widgets { width: 100%; justify-content: flex-start; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .hero { padding: 96px 20px 72px; }
  .hero { min-height: auto; }
  .hero > .wrap { padding-top: 0; }
  .hero-tagline { margin-bottom: 18px; background: rgba(255,255,255,0.84); color: #64748B; }
  .hero-heading { margin-bottom: 12px; }
  .hero h1.accent { font-size: clamp(2.15rem, 11vw, 3.1rem); line-height: 1.06; }
  .hero-neon-text, .accent { color: #1E40AF; }
  .hero-description, .sub { font-size: 1rem; line-height: 1.8; color: #475569; margin-bottom: 28px; }
  .hero-actions { justify-content: flex-start; gap: 14px; }
  .cta-button, .btn { padding: 12px 22px; }
  .meta { justify-content: flex-start; gap: 14px 18px; margin-top: 28px; }
  .meta-item { font-size: 0.8125rem; }
  .blog-hero { padding: 116px 20px 60px; }
  .wrap { padding: 0 16px; }
  .header-inner { padding: 0 16px; }
  .hero::before {
    background:
      radial-gradient(62% 78% at 16% 48%, rgba(247,249,252,.96), rgba(247,249,252,.72) 46%, rgba(247,249,252,0) 74%),
      linear-gradient(135deg, rgba(37,99,235,0.015), rgba(37,99,235,0.00) 38%, rgba(37,99,235,0.02) 74%, rgba(37,99,235,0.00));
  }
  .hero::after {
    background: radial-gradient(circle at 50% 42%, rgba(37,99,235,.05), rgba(37,99,235,.025) 34%, rgba(37,99,235,0) 72%);
    filter: blur(22px);
    opacity: 0.72;
  }
  .metacog-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .metacog-media { padding: 10px; }
  .metacog-copy h3 { font-size: 1.45rem; }
}

@media (max-width: 480px) {
  .header-inner { height: 72px; }
  .site-title { gap: 0; }
  .site-title-stack { gap: 4px; }
  .site-title-text { font-size: 1.6rem; line-height: 0.95; }
  .site-title-sub { font-size: 0.74rem; line-height: 1; }
}
