/* Comulytic Comu Review — Comu-inspired editorial UI */
:root {
  --ink: #17181a;
  --ink-soft: #34383e;
  --muted: #747982;
  --line: #e8eaed;
  --bg: #ffffff;
  --bg-soft: #f6f7f8;
  --panel: #f0f1f2;
  --aqua: #50c9e8;
  --aqua-dark: #159bbd;
  --aqua-soft: #e7f8fc;
  --pink-soft: #f8eafb;
  --violet-soft: #f1edff;
  --shadow: 0 18px 55px rgba(18, 24, 33, 0.08);
  --shadow-soft: 0 10px 30px rgba(18, 24, 33, 0.06);
  --max-w: 930px;
  --site-w: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection,
body *::selection {
  background: rgba(80, 201, 232, 0.28);
  color: var(--ink);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-top: 4px solid var(--ink);
  border-bottom: 1px solid rgba(23, 24, 26, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header .header-inner {
  max-width: var(--site-w);
  min-height: 68px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.site-brand i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: var(--ink);
  font-size: 0.93rem;
  background: linear-gradient(145deg, #dff8ff, var(--aqua));
  box-shadow: inset 0 0 0 1px rgba(23, 24, 26, 0.07), 0 7px 18px rgba(80, 201, 232, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav a {
  position: relative;
  color: #303237;
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 700;
  padding: 11px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--aqua-soft);
  transform: translateY(-1px);
  outline: none;
}

.site-nav a:last-child {
  color: var(--ink);
  background: var(--aqua);
  box-shadow: 0 7px 18px rgba(80, 201, 232, 0.24);
}

.site-nav a:last-child:hover { background: #68d3ee; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.nav-toggle i { pointer-events: none; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 26px 26px 0;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--aqua-dark); }

/* ---------- Article ---------- */
.article-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px 70px;
}

.article-wrap > article {
  position: relative;
  overflow: hidden;
  padding: 54px 58px 64px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.article-wrap > article::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--aqua) 0%, #a9e6f5 42%, #e8c8f3 78%, #cf64c6 100%);
}

.article-meta {
  display: flex;
  gap: 12px 18px;
  flex-wrap: wrap;
  align-items: center;
  margin: 2px 0 14px;
  font-size: 0.79rem;
  font-weight: 650;
  color: var(--muted);
}

.article-meta .badge {
  background: var(--aqua-soft);
  color: #0b7896;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

article h1 {
  max-width: 790px;
  font-size: clamp(2.05rem, 5vw, 3.15rem);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.05em;
  margin: 12px 0 24px;
}

article h2,
article h3 { scroll-margin-top: 100px; }

article h2 {
  position: relative;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  line-height: 1.28;
  color: var(--ink);
  margin: 54px 0 18px;
  padding: 0 0 0 18px;
  border: 0;
  letter-spacing: -0.032em;
}

article h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.14em;
  width: 5px;
  height: 1.08em;
  border-radius: 999px;
  background: var(--aqua);
}

article h3 {
  font-size: 1.16rem;
  line-height: 1.45;
  color: var(--ink);
  margin: 32px 0 10px;
  letter-spacing: -0.018em;
}

article p { margin: 0 0 18px; }
article ul, article ol { margin: 0 0 20px; padding-left: 25px; }
article li { margin-bottom: 8px; padding-left: 3px; }
article li::marker { color: var(--aqua-dark); font-weight: 800; }
article a { color: #087d9d; text-underline-offset: 3px; }
article a:hover { color: var(--ink); }
article strong { color: var(--ink); font-weight: 750; }

article blockquote {
  position: relative;
  margin: 28px 0;
  padding: 22px 24px 22px 60px;
  background: linear-gradient(135deg, var(--aqua-soft), #f7fcfd);
  border: 1px solid #cdeef6;
  border-left: 0;
  border-radius: 20px;
  color: #2d4249;
  font-size: 0.96rem;
}

article blockquote::before {
  content: '\201C';
  position: absolute;
  left: 21px;
  top: 8px;
  color: var(--aqua-dark);
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 800;
  opacity: 0.75;
}

article blockquote p { margin: 0; }

/* Tables */
.table-scroll {
  overflow-x: auto;
  margin: 28px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

article table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.88rem;
  min-width: 520px;
}

article th {
  background: var(--ink);
  color: #fff;
  text-align: left;
  padding: 14px 16px;
  font-weight: 700;
  white-space: nowrap;
}

article td {
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  vertical-align: top;
}

article tbody tr:nth-child(even) { background: #f8f9fa; }
article tbody tr:hover { background: var(--aqua-soft); }

article code {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 2px 7px;
  border-radius: 7px;
  font-size: 0.86em;
  color: var(--ink);
}

article hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 14%, var(--line) 86%, transparent);
  margin: 42px 0;
}

/* ---------- Table of contents ---------- */
.toc {
  position: relative;
  overflow: hidden;
  background: #f5f6f7;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px 26px;
  margin: 30px 0 14px;
}

.toc::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  right: -85px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(80, 201, 232, 0.16);
}

.toc h2 {
  margin: 0 0 14px;
  padding: 0;
  border: none;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.toc h2::before { display: none; }
.toc ol { margin: 0; padding-left: 21px; columns: 2; column-gap: 36px; }
.toc li { margin-bottom: 8px; font-size: 0.86rem; break-inside: avoid; }
.toc a { color: var(--ink-soft); text-decoration: none; }
.toc a:hover { color: var(--aqua-dark); }

/* ---------- Related articles ---------- */
.related {
  max-width: var(--site-w);
  margin: 0 auto 70px;
  padding: 0 24px;
}

.related h2 {
  font-size: 1.65rem;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.035em;
  margin: 0 0 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 158px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 23px;
  text-decoration: none;
  color: var(--ink-soft);
  background: #f5f6f7;
  transition: box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.related-card::after {
  content: '↗';
  position: absolute;
  right: 18px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 0.92rem;
}

.related-card:hover {
  background: var(--aqua-soft);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.related-card .cat {
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #087d9d;
  background: #fff;
  padding: 5px 9px;
  border-radius: 999px;
}

.related-card .t {
  display: block;
  max-width: 90%;
  font-weight: 750;
  color: var(--ink);
  margin-top: 13px;
  font-size: 0.94rem;
  line-height: 1.45;
}

/* ---------- Homepage ---------- */
body:not([data-slug]) { background: #fff; }

.hero {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  min-height: 455px;
  max-width: var(--site-w);
  margin: 28px auto 0;
  padding: 76px 56% 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  color: var(--ink-soft);
  background:
    radial-gradient(circle at 80% 58%, rgba(228, 128, 221, 0.28), transparent 25%),
    radial-gradient(circle at 69% 50%, rgba(80, 201, 232, 0.22), transparent 30%),
    linear-gradient(135deg, #f7f8fa 0%, #fbfbfc 50%, #f6f4fa 100%);
  border: 1px solid #eff0f2;
  border-radius: 32px;
}

.hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 540px;
  height: 120px;
  right: -8px;
  top: 50%;
  transform: translateY(-5%) rotate(-3deg);
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), rgba(221, 83, 207, 0.22));
  filter: blur(5px);
}

.hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: 220px;
  top: 128px;
  width: 82px;
  height: 190px;
  border-radius: 19px;
  background: linear-gradient(155deg, #303237 0%, #090a0b 60%, #35383c 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    106px -13px 0 -1px #f3f3f4,
    106px -13px 0 0 #cfd2d6,
    212px 4px 0 -1px #a83f99,
    212px 4px 0 0 #7b2a70,
    0 20px 30px rgba(21, 22, 24, 0.18),
    106px 8px 30px rgba(21, 22, 24, 0.12),
    212px 24px 30px rgba(84, 26, 77, 0.18);
}

.hero h1 {
  max-width: 610px;
  margin: 0 0 20px;
  font-size: clamp(2.35rem, 5.3vw, 4rem);
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 570px;
  margin: 0 0 28px;
  color: #555b63;
  font-size: 1rem;
  line-height: 1.7;
}

.hero .hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 750;
  font-size: 0.88rem;
  padding: 14px 21px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 11px 25px rgba(23, 24, 26, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero .hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(23, 24, 26, 0.22);
}

.hero .hero-cta i { color: var(--aqua); }
.hero .hero-note { font-size: 0.72rem; color: #80858c; margin: 12px 0 0; }

.facts-band {
  max-width: var(--site-w);
  margin: 30px auto 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.facts-inner {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: left;
}

.fact {
  min-height: 132px;
  padding: 23px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 20px;
  background: #f1f2f3;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.fact:nth-child(2),
.fact:nth-child(5) { background: var(--aqua-soft); }
.fact:nth-child(3),
.fact:nth-child(6) { background: #f4eff8; }

.fact:hover {
  transform: translateY(-3px);
  border-color: rgba(80, 201, 232, 0.36);
  box-shadow: var(--shadow-soft);
}

.fact .num {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.05em;
}

.fact .lbl {
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 650;
}

.home-section {
  max-width: var(--site-w);
  margin: 0 auto;
  padding: 88px 0 0;
}

.home-section > h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.12;
  color: var(--ink);
  margin: 0 auto 10px;
  text-align: center;
  letter-spacing: -0.05em;
}

.home-section > h2 i {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-right: 5px;
  border-radius: 12px;
  color: var(--ink) !important;
  background: var(--aqua);
  font-size: 0.8rem;
  vertical-align: 0.15em;
}

.home-section > p.section-sub {
  max-width: 720px;
  color: var(--muted);
  margin: 0 auto 30px;
  text-align: center;
  font-size: 0.92rem;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  border: 1px solid #eceef0;
  border-radius: 22px;
  padding: 26px;
  background: #f5f6f7;
  text-decoration: none;
  color: var(--ink-soft);
  transition: box-shadow 0.24s ease, transform 0.24s ease, background 0.24s ease;
}

.article-card:nth-child(3n + 2) { background: var(--aqua-soft); }
.article-card:nth-child(3n + 3) { background: #f5eff8; }

.article-card::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -100px;
  top: -105px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease;
}

.article-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
  background: #fff;
}

.article-card:hover::before { transform: scale(1.25); }

.article-card .cat {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  font-size: 0.66rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #087d9d;
  background: #fff;
  padding: 7px 10px;
  border-radius: 999px;
  margin-bottom: 21px;
  box-shadow: 0 4px 12px rgba(18, 24, 33, 0.05);
}

.article-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 1.13rem;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.026em;
}

.article-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--muted);
  flex-grow: 1;
}

.article-card .read {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink);
}

.article-card .read::after { content: '→'; color: var(--aqua-dark); font-size: 1rem; }

/* ---------- Disclosure ---------- */
.disclosure {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.disclosure-box {
  background: #f7f8f9;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 17px;
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 18px 0 0;
}

.disclosure-box i { color: var(--aqua-dark); margin-right: 4px; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #a7abb2;
  margin-top: 92px;
  font-size: 0.79rem;
}

.site-footer::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  right: -200px;
  top: -220px;
  border-radius: 50%;
  background: rgba(80, 201, 232, 0.08);
}

.footer-inner {
  position: relative;
  max-width: var(--site-w);
  margin: 0 auto;
  padding: 55px 24px 30px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}

.footer-cols h4 {
  color: #fff;
  margin: 0 0 15px;
  font-size: 0.9rem;
  letter-spacing: -0.015em;
}

.footer-cols p { margin: 0; max-width: 390px; }
.footer-cols ul { list-style: none; margin: 0; padding: 0; }
.footer-cols li { margin-bottom: 9px; }
.footer-cols a { color: #a7abb2; text-decoration: none; }
.footer-cols a:hover { color: var(--aqua); }
.footer-bottom { border-top: 1px solid #303236; padding-top: 20px; line-height: 1.65; }
.footer-bottom p { margin: 0 0 7px; }

/* Loading state */
.loading {
  text-align: center;
  padding: 90px 0;
  color: var(--muted);
}
.loading i { font-size: 1.75rem; margin-bottom: 14px; display: block; color: var(--aqua-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .hero,
  .facts-band,
  .home-section { margin-left: 22px; margin-right: 22px; }
  .home-section { padding-left: 0; padding-right: 0; }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav { display: flex; }
  .site-nav a { padding: 13px 14px; border-radius: 10px; }

  .hero {
    padding: 64px 48% 64px 46px;
    min-height: 420px;
  }

  .hero::after {
    right: 170px;
    top: 140px;
    transform: scale(0.86);
    transform-origin: center;
  }

  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-header .header-inner { min-height: 62px; padding: 8px 17px; }
  .site-brand { font-size: 0.96rem; }
  .site-brand i { width: 32px; height: 32px; }

  .hero {
    min-height: auto;
    margin: 16px 14px 0;
    padding: 54px 26px 225px;
    align-items: center;
    text-align: center;
    border-radius: 25px;
  }

  .hero p { font-size: 0.92rem; }
  .hero::before { width: 420px; right: 50%; transform: translate(50%, 48%) rotate(-3deg); }
  .hero::after {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 52px;
    transform: translateX(-156px) scale(0.72);
    transform-origin: center;
  }

  .facts-band { margin: 14px 14px 0; }
  .facts-inner { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .fact { min-height: 116px; padding: 19px; border-radius: 17px; }

  .home-section { margin: 0 14px; padding-top: 66px; }
  .home-section > h2 { font-size: 1.85rem; }
  .home-section > h2 i { width: 32px; height: 32px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card { min-height: 245px; padding: 23px; border-radius: 20px; }

  .breadcrumb { padding: 20px 18px 0; }
  .article-wrap { padding: 12px 13px 50px; }
  .article-wrap > article { padding: 42px 22px 50px; border-radius: 24px; }
  article h1 { font-size: 2.16rem; }
  article h2 { margin-top: 44px; font-size: 1.47rem; }
  .toc ol { columns: 1; }

  .related { padding: 0 14px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { min-height: 140px; }

  .footer-inner { padding: 45px 20px 25px; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 420px) {
  .site-brand { max-width: 250px; }
  .facts-inner { grid-template-columns: 1fr 1fr; }
  .fact .num { font-size: 1.55rem; }
  .hero h1 { font-size: 2rem; }
  .hero { padding-left: 20px; padding-right: 20px; }
  article h1 { font-size: 1.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Keep interactive controls usable even when icon fonts are delayed. */
.nav-toggle i { display: none; }
.nav-toggle::before { content: '☰'; font-size: 1.18rem; line-height: 1; font-weight: 800; }
.site-header.nav-open .nav-toggle::before { content: '×'; font-size: 1.55rem; font-weight: 500; }

/* Normalize existing in-article affiliate buttons to the Comu-inspired UI. */
article div[style*="text-align:center"] > a[href*="comulytic.sjv.io"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--ink) !important;
  color: #fff !important;
  padding: 14px 22px !important;
  border-radius: 999px !important;
  font-weight: 750 !important;
  box-shadow: 0 11px 25px rgba(23, 24, 26, 0.16);
  text-decoration: none !important;
}
article div[style*="text-align:center"] > a[href*="comulytic.sjv.io"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(23, 24, 26, 0.22);
}


/* ===== Premium visual refresh v2 ===== */
body:not([data-slug]) { background: linear-gradient(180deg, #fff 0, #fbfcfd 42%, #fff 100%); }

.hero {
  min-height: 610px;
  padding: 54px 54px 54px 62px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 42px;
  align-items: center;
  background: linear-gradient(145deg, #f7f8fa 0%, #fff 45%, #f5f1f8 100%);
  box-shadow: 0 28px 80px rgba(20,24,31,.08);
}
.hero::before,.hero::after{display:none}
.hero-copy{position:relative;z-index:2;min-width:0}
.hero-kicker{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border:1px solid #dceff4;border-radius:999px;background:#effbfe;color:#087d9d;font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em;margin-bottom:20px}
.hero-kicker i{color:#31b8da}
.hero h1{max-width:620px;font-size:clamp(2.8rem,5.2vw,4.65rem);line-height:.98;margin-bottom:22px}
.hero p{max-width:590px;font-size:1.02rem;line-height:1.7;margin-bottom:26px}
.hero-actions{display:flex;align-items:center;flex-wrap:wrap;gap:12px}
.hero-secondary{display:inline-flex;align-items:center;gap:8px;padding:13px 16px;color:var(--ink);font-size:.86rem;font-weight:800;text-decoration:none;border-radius:999px;transition:.2s ease}
.hero-secondary:hover{background:#fff;box-shadow:var(--shadow-soft);transform:translateY(-2px)}
.hero-trust{display:flex;flex-wrap:wrap;gap:10px 18px;margin-top:24px;color:#5c626b;font-size:.72rem;font-weight:700}
.hero-trust span{display:inline-flex;align-items:center;gap:7px}.hero-trust i{color:var(--aqua-dark)}
.hero .hero-note{margin-top:12px}
.hero-visual{position:relative;min-height:500px;display:grid;place-items:center}
.hero-image-frame{position:relative;width:min(100%,510px);aspect-ratio:1/1;border-radius:32px;overflow:hidden;background:#f1f2f4;box-shadow:0 35px 85px rgba(28,31,36,.16)}
.hero-image-frame::after{content:"";position:absolute;inset:0;border:1px solid rgba(255,255,255,.5);border-radius:inherit;pointer-events:none}
.hero-image-frame img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .55s ease}
.hero:hover .hero-image-frame img{transform:scale(1.025)}
.hero-float{position:absolute;z-index:3;display:flex;flex-direction:column;gap:1px;padding:14px 17px;border-radius:18px;background:rgba(255,255,255,.92);box-shadow:0 18px 45px rgba(22,27,34,.16);backdrop-filter:blur(15px);border:1px solid rgba(255,255,255,.78)}
.hero-float strong{font-size:.95rem;color:var(--ink)}.hero-float span{font-size:.65rem;color:var(--muted);font-weight:650}
.hero-float-price{left:-10px;bottom:68px}.hero-float-rating{right:-5px;top:72px}.hero-float-rating i{color:#f4b000;font-size:.8rem}

.product-showcase{max-width:var(--site-w);margin:92px auto 0;padding:0}
.showcase-head{max-width:760px;margin:0 auto 30px;text-align:center}.eyebrow{display:inline-block;color:#0b8eae;font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.12em;margin-bottom:10px}
.showcase-head h2{font-size:clamp(2rem,4vw,3rem);line-height:1.08;letter-spacing:-.05em;color:var(--ink);margin:0 0 14px}.showcase-head p{color:var(--muted);font-size:.92rem;margin:0}
.showcase-grid{display:grid;grid-template-columns:1.25fr .75fr .75fr;gap:14px}
.showcase-card{position:relative;overflow:hidden;min-height:390px;border-radius:25px;background:#eee;color:#fff;text-decoration:none;box-shadow:var(--shadow-soft)}
.showcase-card img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s ease}.showcase-card:hover img{transform:scale(1.045)}
.showcase-card::after{content:"";position:absolute;inset:38% 0 0;background:linear-gradient(transparent,rgba(8,9,10,.84))}
.showcase-card span{position:absolute;z-index:2;left:24px;right:24px;bottom:22px;font-size:1.12rem;line-height:1.25;font-weight:800;text-shadow:0 2px 14px rgba(0,0,0,.35)}
.showcase-card small{display:block;margin-bottom:7px;color:#8ee5fa;font-size:.65rem;text-transform:uppercase;letter-spacing:.12em}.showcase-wide{min-height:440px}

.article-card{padding:0;min-height:390px;background:#fff!important;border-radius:24px;box-shadow:0 12px 34px rgba(18,24,33,.06)}
.article-card::before{display:none}.article-card-media{display:block;height:176px;overflow:hidden;background:#edf0f2}.article-card-media img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .45s ease}.article-card:hover .article-card-media img{transform:scale(1.05)}
.article-card-content{display:flex;flex-direction:column;flex:1;padding:23px 24px 25px}.article-card .cat{margin-bottom:16px}.article-card h3{font-size:1.06rem}.article-card p{font-size:.8rem}.article-card:hover{background:#fff!important}

.article-wrap{max-width:1020px}.article-wrap>article{padding:54px 64px 68px}
.article-featured-image{margin:28px 0 34px;border-radius:24px;overflow:hidden;background:#eef0f2;box-shadow:var(--shadow-soft)}
.article-featured-image img{width:100%;height:auto;max-height:520px;aspect-ratio:1200/628;display:block;object-fit:cover}
.article-inline-image{margin:36px 0 42px;border-radius:22px;overflow:hidden;background:#eef0f2;box-shadow:var(--shadow-soft)}
.article-inline-image img{width:100%;height:auto;max-height:560px;display:block;object-fit:cover}
.related-card{padding:0;min-height:190px;background:linear-gradient(145deg,#f5f7f8,#eef9fc)}.related-card .cat{margin:22px 22px 0}.related-card .t{margin:14px 22px 48px}

@media(max-width:1180px){.product-showcase{margin-left:22px;margin-right:22px}}
@media(max-width:960px){
 .hero{grid-template-columns:1fr;gap:26px;padding:52px;min-height:auto}.hero-copy{text-align:center}.hero h1,.hero p{margin-left:auto;margin-right:auto}.hero-actions,.hero-trust{justify-content:center}.hero-visual{min-height:430px}.hero-image-frame{width:min(100%,480px)}
 .showcase-grid{grid-template-columns:1fr 1fr}.showcase-wide{grid-column:1/-1;min-height:390px}.showcase-card{min-height:330px}
}
@media(max-width:760px){
 .hero{padding:34px 20px 28px;border-radius:24px;margin:16px 14px 0}.hero h1{font-size:2.55rem}.hero p{font-size:.92rem}.hero-actions{flex-direction:column;align-items:stretch}.hero .hero-cta,.hero-secondary{width:100%;justify-content:center}.hero-trust{gap:8px 12px}.hero-visual{min-height:330px}.hero-image-frame{border-radius:22px}.hero-float{padding:10px 12px;border-radius:13px}.hero-float-price{left:3px;bottom:24px}.hero-float-rating{right:3px;top:25px}
 .product-showcase{margin:68px 14px 0}.showcase-grid{grid-template-columns:1fr}.showcase-wide{grid-column:auto}.showcase-card,.showcase-wide{min-height:310px}.showcase-head h2{font-size:2rem}
 .article-wrap>article{padding:38px 20px 46px}.article-featured-image{margin:22px 0 28px;border-radius:17px}.article-inline-image{margin:28px 0 34px;border-radius:17px}
}
@media(max-width:420px){.hero h1{font-size:2.2rem}.hero-kicker{font-size:.62rem}.hero-visual{min-height:290px}.showcase-card,.showcase-wide{min-height:270px}}
