:root {
  --background: oklch(16% 0.02 260);
  --surface: oklch(19% 0.025 260);
  --surface-elevated: oklch(23% 0.03 260);
  --foreground: oklch(97% 0.005 260);
  --muted: oklch(72% 0.02 260);
  --primary: oklch(68% 0.19 245);
  --primary-strong: oklch(55% 0.22 260);
  --profit: oklch(75% 0.19 148);
  --warning: oklch(78% 0.16 80);
  --danger: #f05f66;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(36, 163, 242, 0.3);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(36, 163, 242, 0.25), transparent 70%), radial-gradient(ellipse 60% 40% at 80% 20%, rgba(94, 219, 138, 0.1), transparent 70%);
  --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  --shadow-card: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 20px 40px -20px rgba(0, 0, 0, 0.6);
  --radius: 12px;
  --container: 1216px;
  --header-height: 52px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--foreground);
  font-family: "Space Grotesk", system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.25rem, 4.2vw, 3.75rem); }
h2 { font-size: clamp(1.5rem, 2.1vw, 1.875rem); line-height: 1.2; }
h3 { font-size: 1.125rem; }
ul, ol { margin: 0; }
::selection { background: rgba(36, 163, 242, 0.35); color: #fff; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 800px); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 7vw, 5rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 3.75rem); }
.section-heading { max-width: 680px; margin: 0 auto 2.5rem; text-align: center; }
.section-heading p { margin: 0.75rem 0 0; }
.section-topline { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.section-topline p { margin: 0.5rem 0 0; }
.text-primary, .brand-dot { color: var(--primary); }
.text-profit { color: var(--profit); }
.text-gradient {
  background: linear-gradient(135deg, #43b8ff, #1689df);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(36, 163, 242, 0.3);
  border-radius: 999px;
  background: rgba(36, 163, 242, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
}
.glass-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);

}
.icon { width: 1.25rem; height: 1.25rem; flex: 0 0 auto; }
.icon-box {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(36, 163, 242, 0.3);
  border-radius: 8px;
  background: rgba(36, 163, 242, 0.14);
  color: var(--primary);
}
.icon-box.profit { border-color: rgba(94, 219, 138, 0.3); background: rgba(94, 219, 138, 0.12); color: var(--profit); }
.button,
.wp-block-button__link,
button[type="submit"] {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.68rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #07111e;
  box-shadow: 0 14px 34px -16px rgba(36, 163, 242, 0.8);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.button:hover, .wp-block-button__link:hover, button[type="submit"]:hover { background: #4bb8f8; color: #07111e; transform: translateY(-1px); }
.button-secondary,
.is-style-outline .wp-block-button__link {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--foreground);
  box-shadow: none;
}
.button-secondary:hover, .is-style-outline .wp-block-button__link:hover { border-color: var(--border-strong); background: rgba(36, 163, 242, 0.1); color: var(--foreground); }
.button-ghost { min-height: auto; padding: 0.5rem; background: transparent; color: var(--muted); box-shadow: none; }
.button-ghost:hover { background: transparent; color: var(--foreground); }
.button-small { min-height: 36px; padding: 0.55rem 1rem; }
.button .icon { width: 1rem; height: 1rem; }
.skip-link { position: fixed; z-index: 9999; top: 0.75rem; left: 0.75rem; padding: 0.7rem 1rem; background: #fff; color: #000; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid #26374d;
  background: rgba(2, 13, 29, 0.96);
  backdrop-filter: blur(16px);
  transition: background 160ms ease, box-shadow 160ms ease;
}
.site-header.is-scrolled { background: rgba(2, 13, 29, 0.985); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24); }
.admin-bar .site-header { top: 32px; }
.header-inner { display: flex; width: min(calc(100% - 2rem), 1300px); height: 100%; align-items: center; justify-content: space-between; gap: 1rem; }
.site-brand, .custom-logo-link { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 0.48rem; font-family: "Space Grotesk", system-ui, sans-serif; font-size: 1.28rem; font-weight: 700; line-height: 1; letter-spacing: -0.035em; }
.custom-logo { width: auto; max-width: 220px; height: 36px; object-fit: contain; }
.brand-mark { display: grid; width: 2.15rem; height: 1.72rem; flex: 0 0 auto; place-items: center; color: #159cf5; }
.brand-logo-mark { display: block; width: 100%; height: 100%; overflow: visible; }
.brand-name { display: inline-flex; align-items: baseline; }
.brand-sfx { color: #f3f6fb; }
.brand-lab { color: #159cf5; }
.primary-nav { margin-left: auto; }
.primary-nav .menu, .site-footer .menu { display: flex; padding: 0; list-style: none; }
.primary-nav .menu { align-items: center; gap: 0.35rem; }
.primary-nav a { display: block; padding: 0.55rem 0.62rem; border-radius: 5px; color: #f3f6fb; font-size: 0.78rem; font-weight: 500; white-space: nowrap; }
.primary-nav a:hover, .primary-nav .current-menu-item > a, .primary-nav .current_page_item > a { color: #159cf5; }
.primary-nav .current-menu-item > a, .primary-nav .current_page_item > a { font-weight: 600; }
.header-cta { min-height: 32px; margin-left: 1.35rem; padding: 0.42rem 0.9rem; flex: 0 0 auto; border-color: #168ff0; border-radius: 5px; background: transparent; color: #f6f8fc; font-size: 0.75rem; white-space: nowrap; }
.header-cta:hover { border-color: #31adff; background: rgba(21, 156, 245, 0.1); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; place-items: center; border: 1px solid var(--border); border-radius: 8px; background: rgba(255, 255, 255, 0.04); color: var(--foreground); }
.menu-icon-close { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 8vw, 7rem) clamp(3.5rem, 6vw, 5rem);
}
.hero::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px); background-size: 48px 48px; content: ""; mask-image: radial-gradient(70% 60% at 50% 0%, #000, transparent 80%); }
.hero::after { position: absolute; inset: 0; background: var(--gradient-hero); content: ""; }
.hero .container { position: relative; z-index: 1; }
.hero-copy { max-width: 896px; margin-inline: auto; text-align: center; }
.hero h1 { max-width: 980px; margin: 1.25rem auto 0; font-size: clamp(2.25rem, 4.17vw, 3.75rem); line-height: 1; }
.hero-copy > p { max-width: 672px; margin: 1.25rem auto 0; font-size: clamp(1rem, 2vw, 1.125rem); line-height: 1.5556; }
@media (max-width: 720px) { .hero-copy > p { font-size: 1.125rem; line-height: 1.5556; } }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.hero .hero-copy .button, .page-hero-service .button { height: 40px; min-height: 40px; padding: 0 2rem; line-height: 1.25rem; }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-top: 4rem; }
.trust-card { padding: 1.25rem; }
.trust-card h3 { margin-top: 0.75rem; font-size: 1rem; line-height: 1.5rem; }
.trust-card p { margin: 0.25rem 0 0; font-size: 0.875rem; line-height: 1.25rem; }

.intro-card { padding: clamp(1.75rem, 5vw, 2.5rem); }
.intro-card p { margin-top: 1rem; }
.intro-card .hero-actions { justify-content: flex-start; margin-top: 1.5rem; }
.offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.offer-card { display: block; min-height: 190px; padding: 1.25rem; transition: transform 160ms ease, border-color 160ms ease; }
.offer-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.offer-card h3 { margin-top: 1rem; }
.offer-card p { margin: 0.5rem 0 0; font-size: 0.875rem; }
.offer-card .learn-more { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; color: var(--primary); font-size: 0.82rem; font-weight: 600; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.product-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; transition: transform 160ms ease, border-color 160ms ease; }
.product-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.card-media { position: relative; display: grid; aspect-ratio: 16 / 9; place-items: center; overflow: hidden; border-bottom: 1px solid var(--border); background: radial-gradient(circle at 70% 15%, rgba(36, 163, 242, 0.22), transparent 38%), linear-gradient(145deg, #101b2d, #0b101c); }
.card-media::after { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px); background-size: 28px 28px; content: ""; }
.card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-media .icon { position: relative; z-index: 1; width: 3rem; height: 3rem; color: var(--primary); filter: drop-shadow(0 0 20px rgba(36, 163, 242, 0.5)); }
.card-content { display: flex; flex: 1; flex-direction: column; padding: 1rem; }
.card-labels { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 0.8rem; }
.badge { display: inline-flex; align-items: center; padding: 0.25rem 0.55rem; border: 1px solid var(--border); border-radius: 999px; background: rgba(255, 255, 255, 0.035); color: var(--muted); font-family: "JetBrains Mono", monospace; font-size: 0.68rem; line-height: 1.2; }
.badge-primary { border-color: rgba(36, 163, 242, 0.28); background: rgba(36, 163, 242, 0.1); color: #75c9fb; }
.badge-profit { border-color: rgba(94, 219, 138, 0.28); background: rgba(94, 219, 138, 0.1); color: var(--profit); }
.badge-warning { border-color: rgba(240, 189, 84, 0.3); background: rgba(240, 189, 84, 0.1); color: var(--warning); }
.card-content h3 { font-size: 1.1rem; }
.card-content h3 a:hover { color: var(--primary); }
.card-content p { margin: 0.6rem 0 1.25rem; font-size: 0.875rem; }
.card-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: auto; }
.card-actions .button { flex: 1; padding-inline: 0.8rem; }
.tool-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.product-grid-ea { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card-compact .card-content { min-height: 190px; }
.product-card-compact .card-content p { margin-bottom: 1rem; }
.product-card-compact .card-actions .button { min-height: 36px; font-size: 0.78rem; }
.tool-card { padding: 1.25rem; }
.tool-card h3 { margin-top: 0.9rem; font-size: 1rem; }
.tool-card p { margin: 0.5rem 0 1.25rem; font-size: 0.82rem; }
.tool-card .button { width: 100%; }

.performance-section { max-width: 1120px; margin-inline: auto; text-align: center; }
.performance-section > p { max-width: 760px; margin: 0.75rem auto 0; }
.performance-section > .icon-box { margin-bottom: 1rem; }
.performance-section > .button { margin-top: 1.5rem; }
.performance-stats { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.75rem; margin-top: 1.75rem; }
.performance-card { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 2rem; padding: clamp(1.75rem, 5vw, 3rem); }
.performance-card p { margin-top: 0.75rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; }
.stat { padding: 1rem; border: 1px solid var(--border); border-radius: 9px; background: rgba(255, 255, 255, 0.025); text-align: center; }
.stat strong { display: block; color: var(--primary); font-family: "Space Grotesk", sans-serif; font-size: 1.4rem; }
.stat span { color: var(--muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; }
.service-grid, .why-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.service-card, .why-card { padding: 1.25rem; }
.service-card h3, .why-card h3 { margin-top: 0.8rem; font-size: 1rem; }
.service-card p, .why-card p { margin: 0.4rem 0 0; font-size: 0.82rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.post-card { overflow: hidden; }
.post-card .card-content { min-height: 260px; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.65rem; color: var(--muted); font-size: 0.75rem; }
.post-meta .icon { width: 0.9rem; height: 0.9rem; }
.post-card h3 { margin-top: 0.8rem; font-size: 1.25rem; }
.read-more { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: auto; color: var(--primary); font-size: 0.82rem; font-weight: 600; }

.faq-list { overflow: hidden; padding: 0.5rem 1.5rem; }
.faq-item + .faq-item { border-top: 1px solid var(--border); }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; border: 0; background: none; color: var(--foreground); cursor: pointer; text-align: left; font-weight: 600; }
.faq-question::after { color: var(--muted); content: "+"; font-size: 1.25rem; line-height: 1; transition: transform 160ms ease; }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer { padding: 0 2rem 1.2rem 0; color: var(--muted); font-size: 0.9rem; }
.cta-card { position: relative; overflow: hidden; padding: clamp(2rem, 6vw, 3.5rem); text-align: center; }
.cta-card::before { position: absolute; inset: 0; background: radial-gradient(ellipse at top, rgba(36, 163, 242, 0.18), transparent 62%); content: ""; }
.cta-card > * { position: relative; }
.cta-card p { max-width: 680px; margin: 0.8rem auto 0; }
.cta-card .hero-actions { margin-top: 1.5rem; }

.archive-hero, .page-hero { position: relative; overflow: hidden; padding-block: clamp(4rem, 8vw, 6rem); border-bottom: 1px solid var(--border); text-align: center; }
.archive-hero::before, .page-hero::before { position: absolute; inset: 0; background: var(--gradient-hero); content: ""; opacity: 0.75; }
.archive-hero > *, .page-hero > * { position: relative; }
.archive-hero h1, .page-hero h1 { font-size: clamp(2.25rem, 3.333vw, 3rem); line-height: 1; }
.archive-hero p, .page-hero p { max-width: 720px; margin: 1rem auto 0; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 2rem; }
.filter-button { min-height: 36px; padding: 0.5rem 0.85rem; border: 1px solid var(--border); border-radius: 8px; background: rgba(255, 255, 255, 0.03); color: var(--muted); cursor: pointer; font-size: 0.78rem; font-weight: 600; }
.filter-button:hover, .filter-button.is-active { border-color: rgba(36, 163, 242, 0.35); background: rgba(36, 163, 242, 0.12); color: var(--primary); }
[hidden] { display: none !important; }
.pagination, .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; }
.page-numbers { display: grid; min-width: 40px; height: 40px; place-items: center; padding-inline: 0.6rem; border: 1px solid var(--border); border-radius: 8px; color: var(--muted); }
.page-numbers.current, .page-numbers:hover { border-color: var(--border-strong); background: rgba(36, 163, 242, 0.1); color: var(--foreground); }

.single-layout { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr); gap: 2rem; padding-block: clamp(3rem, 7vw, 5rem); }
.single-main, .single-sidebar { min-width: 0; }
.single-featured { overflow: hidden; margin-bottom: 2rem; }
.single-featured img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.entry-content { color: var(--muted); }
.entry-content > * + * { margin-top: 1.25rem; }
.entry-content h2, .entry-content h3, .entry-content h4 { margin-top: 2.5rem; }
.entry-content ul, .entry-content ol { padding-left: 1.4rem; }
.entry-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 0.18em; }
.entry-content img { border-radius: var(--radius); }
.entry-content iframe { width: 100%; max-width: 100%; border: 0; border-radius: var(--radius); }
.details-card { padding: 1.5rem; }
.details-card + .details-card { margin-top: 1rem; }
.details-card h2 { margin-bottom: 1rem; font-size: 1.15rem; }
.detail-list { padding: 0; list-style: none; }
.detail-list li { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding-block: 0.75rem; border-bottom: 1px solid var(--border); font-size: 0.84rem; }
.detail-list li:last-child { border-bottom: 0; }
.detail-list span { color: var(--muted); }
.detail-list strong { max-width: 60%; text-align: right; }
.sidebar-actions { display: grid; gap: 0.75rem; }
.sidebar-actions .button { width: 100%; }
.content-section { margin-top: 2rem; padding: clamp(1.5rem, 4vw, 2rem); }
.content-section h2 { margin-bottom: 1rem; font-size: 1.45rem; }
.notice { padding: 1rem 1.2rem; border: 1px solid rgba(240, 189, 84, 0.25); border-radius: 9px; background: rgba(240, 189, 84, 0.07); color: #d8c79e; font-size: 0.84rem; }
.notice strong { color: var(--warning); }

.process-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; counter-reset: process; }
.process-step { position: relative; padding: 1.25rem; counter-increment: process; }
.process-step::before { display: grid; width: 2rem; height: 2rem; place-items: center; border-radius: 999px; background: rgba(36, 163, 242, 0.14); color: var(--primary); content: counter(process); font-family: "JetBrains Mono", monospace; font-size: 0.75rem; }
.process-step h3 { margin-top: 1rem; font-size: 1rem; }
.process-step p { margin: 0.5rem 0 0; font-size: 0.8rem; }
.results-stack { display: grid; gap: 1.5rem; }
.result-card { padding: clamp(1.5rem, 4vw, 2rem); }
.result-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.result-stats { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.65rem; margin-top: 1.5rem; }
.embed-placeholder { display: grid; min-height: 220px; margin-top: 1.5rem; place-items: center; padding: 2rem; border: 1px dashed rgba(255, 255, 255, 0.16); border-radius: 9px; background: rgba(0, 0, 0, 0.12); color: var(--muted); text-align: center; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); gap: 1.5rem; }
.form-card, .contact-card { padding: clamp(1.5rem, 5vw, 2rem); }
.contact-title { margin: 0 0 1.5rem; font-size: 1.125rem; font-weight: 600; line-height: 1.2; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-field { display: grid; gap: 0.45rem; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { color: var(--foreground); font-size: 0.8rem; font-weight: 600; }
input[type="text"], input[type="email"], input[type="search"], input[type="url"], select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--foreground);
}
textarea { min-height: 150px; resize: vertical; }
select { color-scheme: dark; }
input::placeholder, textarea::placeholder { color: #697487; }
.contact-list { display: grid; gap: 1rem; padding: 0; list-style: none; }
.contact-list li { display: flex; align-items: flex-start; gap: 0.8rem; }
.contact-list .icon { margin-top: 0.15rem; color: var(--primary); }
.contact-list strong { display: block; font-size: 0.85rem; }
.contact-list span, .contact-list a { color: var(--muted); font-size: 0.84rem; }

.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 2rem; }
.widget { padding: 1.25rem; }
.widget + .widget { margin-top: 1rem; }
.widget-title { margin-bottom: 1rem; font-size: 1rem; }
.widget ul { padding-left: 1.1rem; color: var(--muted); }
.widget a:hover { color: var(--primary); }
.search-form { display: flex; gap: 0.5rem; }
.search-form label { flex: 1; }
.search-submit { min-width: 46px; padding-inline: 0.8rem; }
.empty-state { padding: 3rem; text-align: center; }
.empty-state p { margin-top: 0.8rem; }

.prefooter-cta { padding-bottom: 0; }
.prefooter-card { position: relative; overflow: hidden; padding: clamp(2.25rem, 6vw, 4rem); text-align: center; }
.prefooter-card::before { position: absolute; inset: 0; background: radial-gradient(ellipse 65% 70% at 50% 0%, rgba(36, 163, 242, 0.46), transparent 72%); content: ""; }
.prefooter-card > * { position: relative; }
.prefooter-card h2 { font-size: clamp(1.8rem, 3vw, 2.35rem); }
.prefooter-card p { max-width: 650px; margin: 0.75rem auto 0; }
.site-footer { margin-top: clamp(4rem, 8vw, 6rem); border-top: 0; border-radius: 0 0 9px 9px; background: #020e20; }
.site-footer .footer-inner { width: min(calc(100% - 5rem), 1300px); padding-block: 1.5rem 1rem; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1.2fr 1.45fr .85fr; gap: clamp(1.5rem, 3vw, 3.2rem); align-items: start; }
.footer-brand-column p { max-width: 275px; margin: 0.8rem 0 0; color: #a6b0c0; font-size: 0.77rem; line-height: 1.55; }
.footer-socials { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.9rem; }
.footer-socials a { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid #3b4a60; border-radius: 50%; background: rgba(255,255,255,.035); color: #d8dee8; transition: border-color 160ms ease, color 160ms ease, background 160ms ease; }
.footer-socials a:hover { border-color: #159cf5; background: rgba(21,156,245,.1); color: #159cf5; }
.footer-socials .icon { width: 14px; height: 14px; stroke-width: 1.8; }
.footer-title { margin: 0 0 0.5rem; font-family: Inter, sans-serif; color: #f3f6fb; font-size: 0.78rem; font-weight: 600; letter-spacing: 0; }
.footer-link-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.65rem; }
.site-footer .menu { margin: 0; flex-direction: column; gap: 0.28rem; }
.site-footer .menu a { color: #a6b0c0; font-size: 0.75rem; line-height: 1.4; }
.site-footer .menu a:hover { color: #159cf5; }
.site-footer .copyright { margin: 1rem 0 0; color: #a6b0c0; text-align: center; font-size: 0.72rem; }

.wp-site-blocks > * { margin-block-start: 0; }
.home .entry-content > .alignwide, .home .entry-content > .alignfull { max-width: none; }
.wp-block-group.sfx-section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.wp-block-group.glass-card { padding: clamp(1.5rem, 5vw, 2.5rem); }
.wp-block-columns { gap: 1.5rem; }
.wp-block-column > .glass-card { height: 100%; }
.wp-block-separator { border-color: var(--border); }

@media (max-width: 1120px) {
  .primary-nav a { padding-inline: 0.42rem; font-size: 0.72rem; }
  .header-cta { margin-left: 0.55rem; padding-inline: 0.75rem; font-size: 0.7rem; }
  .product-grid, .product-grid-ea, .tool-grid, .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid, .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .result-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 950px) and (min-width: 821px) {
  .site-brand, .custom-logo-link { gap: 0.4rem; font-size: 1.2rem; }
  .brand-mark { width: 2rem; height: 1.58rem; }
  .primary-nav .menu { gap: 0.1rem; }
  .primary-nav a { padding-inline: 0.38rem; font-size: 0.68rem; }
  .header-cta { min-height: 30px; margin-left: 0.3rem; padding: 0.36rem 0.65rem; font-size: 0.64rem; }
}

@media (max-width: 1040px) {
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-grid, .product-grid, .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .performance-card { grid-template-columns: 1fr; }
  .performance-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .single-layout, .blog-layout { grid-template-columns: 1fr; }
  .single-sidebar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .details-card + .details-card { margin-top: 0; }
}

@media (max-width: 820px) {
  .site-header .header-cta { display: none; }
  .primary-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; width: 100%; height: calc(100dvh - var(--header-height)); overflow-y: auto; padding: 1rem; border-bottom: 1px solid #26374d; background: rgba(2, 13, 29, 0.99); }
  .menu-open .primary-nav { display: block; }
  .primary-nav .menu { align-items: stretch; flex-direction: column; gap: 0.25rem; }
  .primary-nav a { padding: 0.85rem 1rem; font-size: 0.95rem; }
  .menu-toggle { display: grid; margin-left: auto; }
  .menu-open .menu-icon-open { display: none; }
  .menu-open .menu-icon-close { display: inline-flex; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem 3rem; }
  .site-footer .copyright { text-align: left; }
}

@media (max-width: 720px) {
  :root { --header-height: 52px; }
  .container, .narrow { width: min(calc(100% - 2rem), var(--container)); }
  .section-topline { align-items: flex-start; flex-direction: column; }
  .hero { padding-block: calc(6rem - 1px) 6rem; }
  .hero h1 { font-size: 2.25rem; line-height: 1.111; }
  .hero-actions { align-items: initial; flex-direction: row; }
  .hero-actions .button { width: auto; min-height: 40px; }
  .trust-grid, .offer-grid, .product-grid, .blog-grid, .service-grid, .why-grid, .tool-grid { grid-template-columns: 1fr; }
  .trust-card { display: block; }
  .trust-card h3 { margin-top: 0.75rem; }
  .trust-card p { grid-column: auto; }
  .offer-card { min-height: auto; }
  .stats-grid, .performance-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-list { grid-template-columns: 1fr; }
  .result-head { flex-direction: column; }
  .result-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .single-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand-column p { max-width: none; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 480px) {
  .site-header .header-inner, .site-footer .footer-inner { width: min(calc(100% - 2rem), 1300px); }
  .site-brand, .custom-logo-link { font-size: 1.16rem; }
  .brand-mark { width: 1.95rem; height: 1.55rem; }
  .site-footer .footer-inner { padding-block: 2rem 1.25rem; }
  .footer-link-columns { gap: 1rem; }
}

@media (max-width: 420px) {
  .card-actions { flex-direction: column; }
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 0.4rem; }
  .filter-button { flex: 0 0 auto; }
  .stats-grid, .result-stats { grid-template-columns: 1fr 1fr; }
  .faq-list { padding-inline: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}


/* Reference archive labels, grouped filters, and MQL checklist. */
.archive-kicker { display: inline-block; margin-bottom: 0.85rem; color: var(--primary); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.filter-groups { display: grid; gap: 1.15rem; margin-bottom: 2rem; }
.filter-group { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem 1.2rem; }
.filter-group .filter-bar { margin: 0; }
.filter-label { min-width: 4.4rem; color: var(--muted); font-family: "JetBrains Mono", monospace; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; }
.blog-filter-bar { justify-content: center; }
.process-number { display: inline-grid; width: 1.6rem; height: 1.6rem; place-items: center; margin-bottom: 0.65rem; border-radius: 999px; background: rgba(36, 163, 242, 0.14); color: var(--primary); font-family: "JetBrains Mono", monospace; font-size: 0.75rem; }
.get-list { display: grid; gap: 0; padding: 0.55rem 1.25rem; list-style: none; }
.get-list li { display: flex; align-items: center; gap: 0.7rem; padding: 0.8rem 0; border-bottom: 1px solid var(--border); color: var(--foreground); font-size: 0.9rem; }
.get-list li:last-child { border-bottom: 0; }
.get-list .icon { width: 1rem; color: var(--profit); }
@media (max-width: 640px) { .filter-group { display: block; min-width: 0; width: 100%; } .filter-group .filter-bar { width: 100%; min-width: 0; } .filter-label { display: block; margin-bottom: 0.55rem; } .filter-bar { gap: 0.4rem; } .filter-button { min-height: 34px; padding: 0.45rem 0.7rem; font-size: 0.72rem; } }
/* Lovable hero and Contact fidelity pass. */
.archive-hero, .page-hero { border-bottom: 0; }
@media (min-width: 721px) {
  .hero { padding-block: calc(8rem - 1px) 8rem; }
}
.archive-hero,
.page-hero-wide { padding-block: 4rem; text-align: left; }
.page-hero-service { padding-block: calc(5rem - 1px) 5rem; }
.archive-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0;
  padding: 4px 12px;
  border: 1px solid rgba(36, 163, 242, 0.3);
  border-radius: 999px;
  background: rgba(36, 163, 242, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  text-transform: none;
}
.archive-hero h1,
.page-hero-wide h1 { margin-top: 1rem; }
.archive-hero p,
.page-hero-wide p { max-width: 42rem; margin: 0.75rem 0 0; }
.page-hero-wide .eyebrow { min-height: 26px; padding: 4px 12px; font-weight: 400; line-height: 16px; }
.page-hero-wide .eyebrow .icon { width: 1rem; height: 1rem; }
.page-hero-wide .eyebrow + h1 { margin-top: 15px; }
.page-hero-service h1 { max-width: 56rem; }
.page-hero-service p { font-size: 1.125rem; line-height: 1.5556; }
.page-hero-wide .hero-actions { justify-content: flex-start; }
.page-hero-service .hero-actions { margin-top: 1.5rem; }
.page-hero-service .button { min-height: 40px; }

.about-page {
  width: min(100%, 768px);
  margin-inline: auto;
  padding: 4rem 2rem;
}
.about-page h1 { margin-top: 1rem; font-size: 3rem; line-height: 1; }
.about-copy { margin-top: 2rem; }
.about-copy > * + * { margin-top: 1.25rem; }
.about-copy p { margin-bottom: 0; font-size: 1rem; line-height: 1.5; }
.about-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.about-stats div { min-height: 90px; padding: 1.25rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--gradient-card); text-align: center; }
.about-stats span { display: block; color: var(--muted); font-family: "JetBrains Mono", monospace; font-size: 12px; line-height: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
.about-stats strong { display: block; margin-top: 0.25rem; font-size: 1.125rem; line-height: 1.75rem; }
.about-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem; }
.about-actions .button { height: 36px; min-height: 36px; padding: 0 16px; line-height: 20px; }

.legal-page { width: min(100%, 768px); margin-inline: auto; padding: 4rem 2rem; }
.legal-page h1 { font-size: 2.25rem; line-height: 2.5rem; }
.legal-intro { margin: 0.75rem 0 0; font-size: 0.875rem; line-height: 1.25rem; }
.legal-content { margin-top: 2rem; }
.legal-intro + .legal-content { margin-top: 2rem; }

.contact-section { padding-block: 0 4rem; }
.contact-grid { grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr); gap: 2rem; }
.form-card { padding: 2rem; }
.contact-card { align-self: start; padding: 1.5rem; }
.form-grid { grid-template-columns: 1fr; gap: 1rem; }
.form-field-full { grid-column: auto; }
.form-field { gap: 0.5rem; }
.form-card input[type="text"],
.form-card input[type="email"] { min-height: 36px; height: 36px; padding: 4px 12px; border-radius: 10px; background: transparent; font-size: 0.875rem; line-height: 1.25rem; }
.form-card select { min-height: 40px; height: 40px; padding: 8px 12px; border-radius: 10px; background: transparent; font-size: 0.875rem; }
.form-card textarea { min-height: 138px; height: 138px; padding: 8px 12px; border-radius: 10px; background: transparent; font-size: 0.875rem; line-height: 1.25rem; }
.form-card button[type="submit"] { width: 100%; min-height: 40px; height: 40px; padding: 0 2rem; line-height: 20px; }

@media (max-width: 720px) {
  .archive-hero,
  .page-hero-wide { padding-block: 4rem; }
  .page-hero-service { padding-block: calc(5rem - 1px) 5rem; }
  .archive-hero h1,
  .page-hero-wide h1 { font-size: 2.25rem; line-height: 2.5rem; }
  .page-hero-service p { font-size: 1.125rem; line-height: 1.5556; }
  .about-page,
  .legal-page { padding: 4rem 1rem; }
  .about-page h1 { font-size: 2.25rem; line-height: 2.5rem; }
  .about-stats { grid-template-columns: 1fr; }
  .about-actions { flex-direction: row; }
  .about-actions .button { width: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
  .form-card input[type="text"],
  .form-card input[type="email"] { font-size: 1rem; line-height: 1.5rem; }
  .form-card textarea { min-height: 162px; height: 162px; font-size: 1rem; line-height: 1.5rem; }
}
/* Lovable Contact sidebar cards. */
.form-field label { font-size: 0.875rem; line-height: 0.875rem; }
.form-grid > .form-field:last-child { margin-top: 0.5rem; }
.contact-sidebar { display: grid; align-self: start; gap: 1.5rem; }
.contact-sidebar .contact-card,
.response-card { padding: 1.5rem; }
.contact-sidebar .contact-title,
.response-card h3 { margin: 0; font-size: 1.125rem; font-weight: 600; line-height: 1.75rem; }
.contact-methods { display: grid; gap: 0.75rem; margin-top: 1rem; }
.contact-method { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 0.5rem; font-size: 0.875rem; line-height: 1.25rem; }
a.contact-method:hover { border-color: var(--border-strong); }
.contact-method-icon { display: grid; width: 2.25rem; height: 2.25rem; flex: 0 0 auto; place-items: center; border-radius: 0.375rem; background: rgba(36, 163, 242, 0.15); color: var(--primary); box-shadow: inset 0 0 0 1px rgba(36, 163, 242, 0.3); }
.contact-method-icon.is-telegram { background: rgba(94, 219, 138, 0.15); color: var(--profit); box-shadow: inset 0 0 0 1px rgba(94, 219, 138, 0.3); }
.contact-method-icon .icon { width: 1rem; height: 1rem; }
.contact-method-copy { display: flex; min-width: 0; flex-direction: column; }
.contact-method-copy small { color: var(--muted); font-size: 0.75rem; line-height: 1rem; }
.contact-method-copy > span { overflow-wrap: anywhere; }
.response-card p { margin: 0.5rem 0 0; font-size: 0.875rem; line-height: 1.25rem; }

/* Indicator search and themed native form controls. */
.indicator-filter-panel { margin-bottom: 2rem; padding: 1.25rem; }
.indicator-search { display: flex; align-items: center; gap: 0.75rem; height: 46px; padding: 0 0.875rem; border: 1px solid var(--border); border-radius: 10px; background: rgba(5, 10, 20, 0.28); color: var(--muted); transition: border-color 160ms ease, box-shadow 160ms ease; }
.indicator-search:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(36, 163, 242, 0.12); }
.indicator-search .icon { width: 1.125rem; height: 1.125rem; }
.indicator-search input { width: 100%; min-width: 0; height: 100%; padding: 0; border: 0; outline: 0; background: transparent; color: var(--foreground); font-size: 1rem; }
.indicator-search input::placeholder { color: var(--muted); opacity: 1; }
.indicator-search input::-webkit-search-cancel-button { filter: invert(1); opacity: 0.65; }
.indicator-filter-panel .filter-groups { margin: 1.25rem 0 0; }
.indicator-filter-empty { margin: 1.25rem 0 0; padding: 1rem; border: 1px dashed var(--border); border-radius: 10px; text-align: center; }
.form-card select { color-scheme: dark; color: var(--foreground); }
.form-card select option { background: #151c29; color: #f5f7fb; }
.form-card select option:disabled { color: #9aa6b8; }
.form-card input::placeholder, .form-card textarea::placeholder { color: var(--muted); opacity: 0.78; }
.form-card button[type="submit"] { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.form-card button[type="submit"] .icon { width: 1rem; height: 1rem; }

@media (max-width: 720px) {
  .indicator-filter-panel { padding: 1rem; }
  .indicator-search input { font-size: 1rem; }
}

/* Reference-matched front page. Every selector is scoped so inner pages stay unchanged. */
.home {
  --home-bg: #020b1a;
  --home-panel: rgba(4, 16, 34, 0.72);
  --home-border: rgba(112, 139, 173, 0.46);
  --home-blue: #1098f7;
  --home-green: #21c65b;
  --home-muted: #aeb8c8;
  background: var(--home-bg);
}
.home .site-main { overflow: hidden; }
.home .sfx-home .container { width: min(calc(100% - 3rem), 1300px); }

.sfx-home { position: relative; color: #f7f9fc; font-size: 16px; }
.sfx-home::before {
  position: absolute;
  z-index: -1;
  top: -80px;
  right: 0;
  left: 0;
  height: 560px;
  background: radial-gradient(circle at 31% 36%, rgba(0, 82, 235, 0.34), transparent 34%), radial-gradient(circle at 67% 38%, rgba(0, 184, 137, 0.22), transparent 28%);
  content: "";
  pointer-events: none;
}
.sfx-home h1,
.sfx-home h2,
.sfx-home h3 { font-family: Inter, system-ui, sans-serif; letter-spacing: -0.03em; }
.sfx-home p { color: var(--home-muted); }
.home-ref-hero { padding: 66px 0 24px; }
.home-ref-hero-copy { text-align: center; }
.home-ref-hero h1 { font-size: clamp(34px, 3vw, 42px); font-weight: 700; line-height: 1.16; }
.home-ref-hero h1 span { color: var(--home-blue); }
.home-ref-hero-copy > p { max-width: 900px; margin: 18px auto 0; font-size: 16px; line-height: 1.6; }
.home-ref-actions { display: flex; justify-content: center; gap: 18px; margin-top: 23px; }
.home-ref-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--home-blue);
  border-radius: 4px;
  background: rgba(3, 17, 36, 0.55);
  color: #f7f9fc;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 160ms ease, transform 160ms ease;
}
.home-ref-button:hover { background: rgba(16, 152, 247, 0.14); transform: translateY(-1px); }
.home-ref-button.is-profit { border-color: var(--home-green); }
.home-ref-button.is-profit:hover { background: rgba(33, 198, 91, 0.12); }
.home-ref-button .icon { width: 17px; height: 17px; color: var(--home-blue); }
.home-ref-button.is-profit .icon { color: var(--home-green); }
.home-ref-trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 46px; }
.home-ref-trust-card { display: flex; min-height: 124px; align-items: center; gap: 16px; padding: 20px; border: 1px solid var(--home-border); border-radius: 7px; background: var(--home-panel); }
.home-ref-trust-card .home-ref-icon { flex: 0 0 auto; color: var(--home-blue); }
.home-ref-trust-card.is-profit .home-ref-icon { color: var(--home-green); }
.home-ref-trust-card .icon { width: 30px; height: 30px; }
.home-ref-trust-card h2 { font-size: 18px; line-height: 1.3; }
.home-ref-trust-card p { margin: 8px 0 0; font-size: 16px; line-height: 1.5; }
.home-ref-intro { padding-top: 24px; text-align: center; }
.home-ref-intro h2 { font-size: 20px; }
.home-ref-intro p { max-width: 1080px; margin: 12px auto 0; font-size: 16px; line-height: 1.6; }
.home-ref-section { padding-top: 32px; }
.home-ref-heading { margin-bottom: 18px; font-size: 20px; text-align: center; }
.home-ref-offer-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.home-ref-offer-card { min-height: 190px; padding: 24px 14px 18px; border: 1px solid var(--home-border); border-radius: 5px; background: var(--home-panel); text-align: center; }
.home-ref-offer-card .home-ref-icon { display: block; color: var(--home-blue); }
.home-ref-offer-card .icon { width: 32px; height: 32px; }
.home-ref-offer-card h3 { margin-top: 14px; font-size: 18px; line-height: 1.3; }
.home-ref-offer-card p { margin: 9px 0 0; font-size: 16px; line-height: 1.45; }
.home-ref-featured { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 37px; }
.home-ref-feature-column h2,
.home-ref-bottom-grid h2 { margin: 0 0 12px 6px; font-size: 20px; }
.home-ref-list { overflow: hidden; border: 1px solid var(--home-border); border-radius: 5px; background: rgba(3, 16, 32, 0.48); }
.home-ref-list > a { display: flex; min-height: 52px; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 16px; border-bottom: 1px solid var(--home-border); font-size: 15px; }
.home-ref-list > a:last-child { border-bottom: 0; }
.home-ref-list > a > span { display: flex; min-width: 0; align-items: center; gap: 12px; }
.home-ref-list > a .icon { width: 13px; height: 13px; color: var(--home-blue); }
.home-ref-list > a > .icon { color: var(--home-muted); }
.home-ref-view-all { display: inline-block; margin: 12px 0 0 7px; color: var(--home-blue); font-size: 14px; }
.home-ref-performance { display: grid; min-height: 220px; grid-template-columns: 40% 60%; align-items: center; overflow: hidden; padding: 24px 32px; border: 1px solid var(--home-border); border-radius: 7px; background: var(--home-panel); }
.home-ref-performance-copy h2 { font-size: 20px; }
.home-ref-performance-copy p { max-width: 470px; margin: 10px 0 18px; font-size: 16px; line-height: 1.55; }
.home-ref-performance-copy .home-ref-button { min-height: 42px; height: 42px; padding-inline: 16px; font-size: 14px; }
.home-ref-chart { align-self: stretch; min-width: 0; }
.home-ref-chart svg { width: 100%; height: 100%; overflow: visible; }
.home-ref-chart .chart-grid { fill: none; stroke: rgba(100, 126, 156, 0.13); stroke-width: 1; }
.home-ref-chart .chart-area { fill: url(#home-chart-fill); }
.home-ref-chart .chart-line { fill: none; stroke: #29cf5d; stroke-linejoin: round; stroke-width: 1.6; }
.home-ref-service-strip { display: grid; min-height: 150px; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 24px 28px; border: 1px solid var(--home-border); border-radius: 7px; background: var(--home-panel); }
.home-ref-service-icon { display: grid; width: 56px; height: 56px; place-items: center; border: 1px solid var(--home-blue); border-radius: 50%; color: var(--home-blue); }
.home-ref-service-icon .icon { width: 29px; height: 29px; }
.home-ref-service-strip h2 { font-size: 20px; }
.home-ref-service-strip p { margin: 9px 0 0; font-size: 16px; line-height: 1.55; }
.home-ref-service-strip .home-ref-button { min-height: 44px; height: 44px; padding-inline: 18px; font-size: 14px; }
.home-ref-why-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; gap: 18px; }
.home-ref-why-card {display: flex;height: 100%;align-items: center;gap: 14px;padding: 24px 20px;border: 1px solid var(--home-border);border-radius: 5px;background: var(--home-panel);}
.home-ref-why-card > div { display: grid; min-width: 0; align-content: start; }
.home-ref-why-card .home-ref-icon {color: var(--home-blue);align: center;}
.home-ref-why-card .icon { width: 25px; height: 25px; }
.home-ref-why-card h3 { margin: 0; font-size: 18px; line-height: 1.3; }
.home-ref-why-card p { margin: 8px 0 0; font-size: 16px; line-height: 1.5; }
.home-ref-bottom-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.home-ref-bottom-grid.is-single { grid-template-columns: 1fr; }
.home-ref-blog-list > a { min-height: 50px; font-size: 15px; }
.home-ref-faq-item { border-bottom: 1px solid var(--home-border); }
.home-ref-faq-item:last-child { border-bottom: 0; }
.home-ref-faq-list .faq-question { min-height: 50px; padding: 10px 16px; font-size: 16px; }
.home-ref-faq-list .faq-question::after { content: "+"; }
.home-ref-faq-list .faq-question[aria-expanded="true"]::after { content: "âˆ’"; }
.home-ref-faq-list .faq-answer { padding: 0 16px 16px; font-size: 15px; line-height: 1.55; }
.home-ref-final-cta { display: grid; min-height: 132px; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; padding: 20px 24px; border: 1px solid var(--home-border); border-radius: 7px; background: var(--home-panel); }
.home-ref-final-cta .home-ref-service-icon { width: 48px; height: 48px; }
.home-ref-final-cta h2 { font-size: 20px; }
.home-ref-final-cta p { margin: 8px 0 0; font-size: 16px; line-height: 1.5; }
.home-ref-final-actions { display: flex; gap: 7px; }
.home-ref-final-actions .home-ref-button { min-height: 42px; height: 42px; padding: 0 12px; font-size: 13px; }
.home-ref-final-actions .home-ref-button .icon { width: 12px; height: 12px; }
.home .home-ref-footer { margin-top: 24px; border-top: 0; background: transparent; }
.home .home-ref-footer .footer-inner { padding: 0 0 12px; }
.home-ref-footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 34px; padding: 0 6px; }
.home-ref-footer-brand .site-brand { font-size: 1.25rem; }
.home-ref-footer-brand p { max-width: 180px; margin: 10px 0 0; font-size: 7.5px; line-height: 1.5; }
.home-ref-footer .footer-title { margin-bottom: 10px; font-size: 8px; }
.home-ref-footer .menu { gap: 6px; }
.home-ref-footer .menu a { font-size: 7.5px; }
.home-ref-socials { display: flex; gap: 8px; margin-top: 10px; }
.home-ref-socials a,
.home-ref-socials span { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid var(--home-border); border-radius: 50%; color: var(--home-muted); }
.home-ref-socials .icon { width: 11px; height: 11px; }
.home-ref-footer .copyright { margin-top: 15px; font-size: 7.5px; }

/* Nine-post batches are progressively appended; native pagination remains the fallback. */
.blog-infinite.is-enhanced .navigation.pagination { display: none; }
.infinite-scroll-sentinel { width: 100%; height: 1px; }
.infinite-scroll-status { min-height: 28px; margin-top: 1.25rem; color: var(--muted); font-size: 0.78rem; text-align: center; }
.infinite-scroll-status.is-loading::before { display: inline-block; width: 12px; height: 12px; margin-right: 8px; border: 2px solid rgba(36, 163, 242, 0.3); border-top-color: var(--primary); border-radius: 50%; content: ""; vertical-align: -2px; animation: sfxlab-spin .7s linear infinite; }
@keyframes sfxlab-spin { to { transform: rotate(360deg); } }

@media (max-width: 760px) {
  .home .sfx-home .container { width: min(calc(100% - 2rem), 640px); }
  .desktop-break { display: none; }
  .home-ref-hero { padding-top: 48px; }
  .home-ref-hero h1 { font-size: clamp(25px, 8vw, 34px); }
  .home-ref-hero-copy > p { font-size: 16px; }
  .home-ref-actions { flex-direction: column; gap: 10px; }
  .home-ref-actions .home-ref-button { width: 100%; }
  .home-ref-trust-grid,
  .home-ref-offer-grid,
  .home-ref-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-ref-featured,
  .home-ref-bottom-grid { grid-template-columns: 1fr; gap: 24px; }
  .home-ref-performance { grid-template-columns: 1fr; gap: 16px; }
  .home-ref-chart { height: 145px; }
  .home-ref-service-strip,
  .home-ref-final-cta { grid-template-columns: auto 1fr; }
  .home-ref-service-strip > .home-ref-button,
  .home-ref-final-actions { grid-column: 1 / -1; }
  .home-ref-final-actions { display: grid; grid-template-columns: 1fr; }
  .home-ref-final-actions .home-ref-button { min-height: 44px; height: 44px; font-size: 14px; }
  .home-ref-footer-grid { grid-template-columns: repeat(3, 1fr); }
  .home-ref-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  .home-ref-trust-grid,
  .home-ref-offer-grid,
  .home-ref-why-grid { grid-template-columns: 1fr; }
  .home-ref-offer-card { min-height: 170px; }
  .home-ref-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Scoped Lovable fidelity: Indicators, Analytic Tools, EA, Live Results, and MQL. */
.indicators-archive-content,
.scoped-archive-section,
.live-results-section { padding-bottom: 4rem; }

.indicators-archive-content .indicator-filter-panel { margin: 0 0 1.5rem; padding: 1.25rem; }
.indicator-filter-top { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 1rem; }
.indicators-archive-content .indicator-search { height: 36px; padding-inline: 0.75rem; }
.indicators-archive-content .indicator-search input { font-size: 0.875rem; }
.indicator-platform { display: flex; align-items: center; gap: 0.5rem; color: var(--muted); font-size: 0.875rem; }
.indicator-platform .icon { width: 1rem; height: 1rem; }
.indicator-platform strong { padding: 0.25rem 0.625rem; border-radius: 0.375rem; background: rgba(255,255,255,0.08); color: var(--foreground); font-size: 0.75rem; line-height: 1rem; }
.indicators-archive-content .filter-groups { gap: 1rem; margin: 1rem 0 0; }
.indicators-archive-content .filter-group { gap: 0.5rem; }
.indicators-archive-content .filter-label { min-width: 58px; margin-right: 0; font-family: Inter, sans-serif; font-size: 0.75rem; line-height: 1rem; letter-spacing: 0.05em; }
.indicators-archive-content .filter-bar { gap: 0.5rem; }
.indicators-archive-content .filter-button { min-height: 32px; height: 32px; padding: 0 0.75rem; border: 0; border-radius: 0.375rem; background: rgba(255,255,255,0.08); color: var(--foreground); font-size: 0.75rem; line-height: 1rem; }
.indicators-archive-content .filter-button:hover,
.indicators-archive-content .filter-button.is-active { background: linear-gradient(135deg, #0aa7ff, #087eea); color: #06111d; }
.indicators-archive-content .product-grid { gap: 1.5rem; }
.indicator-archive-card { display: flex; min-width: 0; height: 450px; flex-direction: column; overflow: hidden; transition: transform 160ms ease, border-color 160ms ease; }
.indicator-archive-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.indicator-archive-card .card-media { flex: 0 0 auto; }
.indicator-archive-card .media-price { position: absolute; z-index: 2; top: 0.75rem; right: 0.75rem; padding: 0.25rem 0.625rem; }
.indicator-archive-card .card-content { padding: 1.25rem; }
.indicator-archive-card .card-content h3 { font-size: 1.125rem; line-height: 1.75rem; }
.indicator-archive-card .card-content p { display: -webkit-box; overflow: hidden; margin: 0.25rem 0 0; font-size: 0.875rem; line-height: 1.25rem; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.indicator-archive-card .card-labels { gap: 0.375rem; margin: 1rem 0 0; }
.indicator-archive-card .card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; padding-top: 1.25rem; }
.indicator-archive-card .card-actions .button { min-height: 32px; height: 32px; padding: 0 0.75rem; font-size: 0.75rem; line-height: 1rem; }
.indicator-archive-card .card-actions .icon { width: 0.875rem; height: 0.875rem; }

.analytic-archive-content .tool-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.analytic-archive-content .tool-card { display: flex; min-height: 226px; flex-direction: column; padding: 1.25rem; }
.tool-card-head { display: flex; align-items: center; justify-content: space-between; }
.analytic-archive-content .tool-card h3 { margin-top: 1rem; font-size: 1.125rem; line-height: 1.75rem; }
.analytic-archive-content .tool-card p { margin: 0.25rem 0 0; font-size: 0.875rem; line-height: 1.25rem; }
.analytic-archive-content .tool-card .button { min-height: 36px; height: 36px; margin-top: auto; padding: 0 1rem; font-size: 0.875rem; line-height: 1.25rem; }
.analytic-archive-content .notice,
.ea-archive-content .notice { min-height: 110px; margin-top: 2.5rem !important; padding: 1.25rem; font-size: 0.875rem; line-height: 1.25rem; }

.ea-archive-content .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.ea-archive-card { display: flex; min-height: 220px; flex-direction: column; padding: 1.5rem; }
.ea-archive-card .card-labels { gap: 0.5rem; margin: 0; }
.ea-card-intro { display: flex; align-items: flex-start; gap: 0.75rem; margin-top: 1rem; }
.ea-card-intro .icon-box { flex: 0 0 auto; }
.ea-card-intro h2 { font-size: 1.25rem; line-height: 1.75rem; }
.ea-card-intro p { margin: 0.25rem 0 0; font-size: 0.875rem; line-height: 1.25rem; }
.ea-archive-card .card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: auto; }
.ea-archive-card .card-actions .button { min-height: 36px; height: 36px; padding: 0 1rem; font-size: 0.875rem; line-height: 1.25rem; }

.live-summary-section { padding-bottom: 2rem; }
.live-summary-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.live-summary-card { min-height: 94px; padding: 1.25rem; text-align: center; }
.live-summary-card strong, .live-summary-card span { display: block; }
.live-summary-card strong { color: var(--primary); font-family: "Space Grotesk", sans-serif; font-size: 1.5rem; line-height: 2rem; }
.live-summary-card span { margin-top: 0.25rem; color: var(--muted); font-size: 0.75rem; line-height: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.live-results-section .results-stack { gap: 1.5rem; }
.live-results-section .result-card { padding: 1.5rem; }
.result-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.live-results-section .result-head h2 { margin-top: 0.75rem; font-size: 1.25rem; line-height: 1.75rem; }
.live-results-section .result-head .button { min-height: 36px; height: 36px; padding: 0 1rem; font-size: 0.875rem; line-height: 1.25rem; }
.live-results-section .result-stats { gap: 1rem; margin-top: 1.5rem; }
.live-results-section .stat { min-height: 70px; padding: 0.375rem 0.75rem; }
.live-results-section .embed-placeholder { min-height: 160px; padding: 1.5rem; }
.live-disclaimer { padding: 0.5rem 0; color: var(--muted); font-size: 0.875rem; text-align: center; }
.live-disclaimer strong { color: var(--foreground); }
.live-results-section .risk-notice { min-height: 110px; margin-top: 0; padding: 1.25rem; font-size: 0.875rem; }
.live-results-section .risk-notice p { margin: 0.5rem 0 0; font-size: 0.875rem; line-height: 1.25rem; }
.live-contact-action { text-align: center; }
.live-contact-action .button { min-height: 36px; height: 36px; padding: 0 1rem; font-size: 0.875rem; line-height: 1.25rem; }

.mql-services-section, .mql-get-section, .mql-faq-section { padding-block: 4rem; }
.mql-process-section { padding-block: 2rem; }
.mql-services-section .section-heading, .mql-process-section .section-heading { margin: 0 0 2rem; text-align: left; }
.mql-services-section .service-grid { gap: 1.5rem; }
.mql-services-section .service-card { padding: 1.5rem; }
.mql-services-section .service-card h3 { margin-top: 1rem; font-size: 1.125rem; line-height: 1.75rem; }
.mql-services-section .service-card p { margin-top: 0.25rem; font-size: 0.875rem; line-height: 1.25rem; }
.mql-process-section .process-list { gap: 1rem; }
.mql-process-section .process-step { min-height: 162px; padding: 1.25rem; }
.mql-process-section .process-step::before { display: none; }
.process-step-head { display: flex; align-items: center; gap: 0.75rem; }
.process-step-head span { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border-radius: 999px; background: rgba(36,163,242,0.14); color: var(--primary); font-family: "Space Grotesk", sans-serif; font-size: 0.875rem; box-shadow: inset 0 0 0 1px rgba(36,163,242,0.3); }
.mql-process-section .process-step h3 { margin: 0; font-size: 1rem; line-height: 1.5rem; }
.mql-process-section .process-step p { margin: 0.75rem 0 0; font-size: 0.875rem; line-height: 1.25rem; }
.mql-get-card { padding: 2rem; }
.mql-get-card h2 { font-size: 1.5rem; line-height: 2rem; }
.mql-get-card .get-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; margin-top: 1rem; padding: 0; }
.mql-get-card .get-list li { align-items: flex-start; padding: 0; border: 0; color: var(--muted); font-size: 0.875rem; line-height: 1.25rem; }
.mql-faq-section .narrow { max-width: 768px; }
.mql-faq-section .section-heading { margin-bottom: 2rem; }
.mql-faq-section .faq-list { padding: 0.5rem; }
.mql-faq-section .faq-question { min-height: 56px; padding: 1rem; font-size: 1rem; line-height: 1.5rem; }
.mql-cta-section { padding-bottom: 9.625rem; }
.mql-cta-wrap { width: min(calc(100% - 2rem), 960px); margin-inline: auto; }
.mql-cta-section .cta-card { padding: 2.5rem; }
.mql-cta-section .cta-card h2 { font-size: 1.875rem; line-height: 2.25rem; }
.mql-cta-section .cta-card p { margin-top: 0.75rem; }
.mql-cta-section .cta-card .hero-actions { margin-top: 1.5rem; }
.mql-cta-section .button { min-height: 40px; height: 40px; padding: 0 2rem; font-size: 0.875rem; line-height: 1.25rem; }

@media (max-width: 720px) {
  .indicator-filter-top { grid-template-columns: 1fr; }
  .indicators-archive-content .indicator-filter-panel { padding: 1rem; }
  .indicators-archive-content .filter-group { display: flex; }
  .indicators-archive-content .filter-label { display: inline-flex; min-width: 0; width: 100%; margin-bottom: 0; }
  .indicators-archive-content .filter-bar { flex-wrap: wrap; overflow: visible; padding-bottom: 0; }
  .indicators-archive-content .product-grid,
  .analytic-archive-content .tool-grid,
  .ea-archive-content .product-grid { grid-template-columns: 1fr; }
  .indicator-archive-card { height: 450px; }
  .scoped-archive-section, .indicators-archive-content, .live-results-section { padding-bottom: 4rem; }
  .live-summary-grid { grid-template-columns: 1fr; }
  .live-results-section .result-stats { grid-template-columns: 1fr; }
  .live-results-section .risk-notice { min-height: 210px; }
  .mql-services-section, .mql-get-section, .mql-faq-section { padding-block: 4rem; }
  .mql-process-section { padding-block: 2rem; }
  .mql-services-section .service-grid { grid-template-columns: 1fr; }
  .mql-services-section .service-card { min-height: 178px; padding: 1.5rem; }
  .mql-process-section .process-list { grid-template-columns: 1fr; }
  .mql-process-section .process-step { min-height: 130px; }
  .mql-get-card .get-list { grid-template-columns: 1fr; }
  .mql-cta-section .cta-card { padding: 2.5rem; }
  .mql-cta-section { padding-bottom: 13.625rem; }
}
