/* Self-hosted fonts. Google Fonts and the Tabler CDN were both on the critical
   path; hosting locally removes two third-party origins and two DNS lookups.
   Inter ships as one variable file covering 400 to 700. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-latin-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* VeriNourish Men — global design system (calm editorial, evidence-first)
   Ported from the sister site theme, re-colored to the men's locked palette. */

:root {
  /* Brand palette (locked, G3): Deep Indigo #22264F · Indigo #3D4278 · Copper #B4652F
     · Copper Dark #9A5527 · Slate #5B6070 · White #FFFFFF · Warm Paper #EFECE4
     · Pale Copper #F0E4D6 · Indigo Mist #E4E6F0 · Warm Beige #E2DCD2. */
  --vn-ink:      #22264f;                 /* Deep Indigo — headings, strong text */
  --vn-body:     #22264f;                 /* Deep Indigo — body text */
  --vn-muted:    #5b6070;                 /* Slate — secondary text */
  --vn-faint:    rgba(91,96,112,0.55);    /* Slate 55% — faint icons/arrows */
  --vn-bg:       #ffffff;                 /* White */
  --vn-bg-soft:  #efece4;                 /* Warm Paper */
  --vn-bg-rose:  #f0e4d6;                 /* Pale Copper — warm accent tint */
  --vn-border:   #e2dcd2;                 /* Warm Beige */
  --vn-border-2: rgba(91,96,112,0.22);    /* Slate tint — stronger border */

  --vn-rose:     #b4652f;                 /* Copper — primary accent (CTA, links) */
  --vn-rose-dk:  #9a5527;                 /* Copper Dark — accent hover */
  --vn-teal:     #3d4278;                 /* Indigo — secondary accent */
  --vn-teal-bg:  #e4e6f0;                 /* Indigo Mist — cool tint */
  --vn-amber:    #5b6070;                 /* Slate (was amber accent) */
  --vn-amber-bg: #e2dcd2;                 /* Warm Beige */

  --vn-max:      1180px;
  --vn-gap:      clamp(1.1rem, 2.6vw, 1.9rem);
  --vn-radius:   14px;

  /* Headings use a classic serif (brand direction "Classic Research Journal");
     body stays Inter. DM Serif Display ships weight 400 only. */
  --vn-serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --vn-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--vn-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--vn-body);
  background: var(--vn-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--vn-rose-dk); }

h1, h2, h3, h4 {
  font-family: var(--vn-serif);
  color: var(--vn-ink);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.95rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.15em; }

.wrap { max-width: var(--vn-max); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.wrap--narrow { max-width: 760px; }

.eyebrow {
  font-family: var(--vn-sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--vn-rose-dk);
}
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--vn-ink); color: #fff; padding: 0.6rem 1rem; z-index: 100; }
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-family: var(--vn-sans); font-size: 0.92rem; font-weight: 600;
  padding: 0.7em 1.3em; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--vn-ink); color: #fff; }
.btn--primary:hover { background: var(--vn-teal); color: #fff; }
.btn--cta { background: var(--vn-rose); color: #fff; }
.btn--cta:hover { background: var(--vn-rose-dk); color: #fff; }
.btn--ghost { background: transparent; color: var(--vn-ink); border-color: var(--vn-border-2); }
.btn--ghost:hover { background: var(--vn-bg-soft); color: var(--vn-ink); }

/* ---------- Header / single-bar mega nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--vn-bg);
  border-bottom: 1px solid var(--vn-border);
}
.nav { display: flex; align-items: center; gap: 1.4rem; height: 68px; }
.brand { display: inline-flex; align-items: baseline; gap: 1px; font-family: var(--vn-serif); font-size: 1.5rem; font-weight: 400; letter-spacing: -0.01em; color: var(--vn-ink); flex: none; }
.brand span { color: var(--vn-rose); }
.brand .brand-suffix { color: var(--vn-muted); font-weight: 500; margin-left: 5px; }
.nav-tools { display: flex; align-items: center; gap: 0.6rem; color: var(--vn-body); flex: none; margin-left: auto; }
.nav-tools .icon-btn { background: none; border: 0; color: inherit; cursor: pointer; display: inline-flex; padding: 4px; border-radius: 999px; }
.nav-tools .icon-btn:hover { color: var(--vn-rose-dk); }
.nav-tools .nav-toggle { display: none; }

.mainnav { flex: 1; }
.mainnav-list { display: flex; align-items: center; gap: 0.15rem; list-style: none; margin: 0; padding: 0; }
.navitem { position: relative; }
.navlink {
  display: inline-flex; align-items: center; gap: 0.25em;
  font-size: 0.94rem; font-weight: 500; color: var(--vn-body);
  padding: 0.55rem 0.75rem; border-radius: 999px; white-space: nowrap;
}
.navlink:hover { color: var(--vn-rose-dk); background: var(--vn-bg-soft); }
.navlink[aria-current="page"] { color: var(--vn-rose-dk); }
.navlink .chev { font-size: 0.9rem; opacity: 0.6; transition: transform .15s ease; }
.navitem.has-panel:hover .chev { transform: rotate(180deg); }
.navlink--cta { background: var(--vn-rose); color: #fff; font-weight: 600; padding-inline: 1.1rem; }
.navlink--cta:hover { background: var(--vn-rose-dk); color: #fff; }

/* Mega dropdown panel */
.mega {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 60;
  min-width: 480px; background: var(--vn-bg);
  border: 1px solid var(--vn-border); border-radius: 14px;
  box-shadow: 0 18px 44px -18px rgba(47,74,67,0.28);
  padding: 1.1rem; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.mega::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 12px; }
.navitem:hover > .mega, .navitem:focus-within > .mega, .navitem.open > .mega {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.navitem:last-child .mega, .navitem:nth-last-child(2) .mega { left: auto; right: 0; }
.mega-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding-bottom: 0.8rem; margin-bottom: 0.8rem; border-bottom: 1px solid var(--vn-border); }
.mega-head strong { font-family: var(--vn-sans); font-size: 0.98rem; color: var(--vn-ink); display: block; }
.mega-head span { font-size: 0.82rem; color: var(--vn-muted); display: block; margin-top: 0.15rem; max-width: 42ch; }
.mega-all { flex: none; font-size: 0.85rem; font-weight: 600; color: var(--vn-rose-dk); white-space: nowrap; }
.mega-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.15rem 0.6rem; }
.mega-grid a { font-size: 0.88rem; color: var(--vn-body); padding: 0.42rem 0.5rem; border-radius: 8px; }
.mega-grid a:hover { background: var(--vn-bg-soft); color: var(--vn-rose-dk); }
.mega--links { min-width: 340px; }
.mega-grid--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.3rem; }
.mega-grid--wide a { display: block; padding: 0.55rem 0.6rem; }
.mega-grid--wide strong { font-family: var(--vn-sans); font-weight: 600; font-size: 0.9rem; color: var(--vn-ink); display: block; }
.mega-grid--wide span { font-size: 0.78rem; color: var(--vn-muted); }
.mega-grid--wide a:hover strong { color: var(--vn-rose-dk); }

/* ---------- Mobile nav ---------- */
@media (max-width: 920px) {
  .nav-tools .nav-toggle { display: inline-flex; }
  .mainnav {
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--vn-bg); border-bottom: 1px solid var(--vn-border);
    box-shadow: 0 24px 40px -24px rgba(47,74,67,0.3);
    display: none; max-height: calc(100vh - 68px); overflow-y: auto; padding: 0.6rem 0;
  }
  .site-header.nav-open .mainnav { display: block; }
  .mainnav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 0 clamp(1rem, 4vw, 2rem); }
  .navitem { border-bottom: 1px solid var(--vn-border); }
  .navitem:last-child { border-bottom: 0; }
  .navlink { justify-content: space-between; padding: 0.9rem 0.2rem; border-radius: 0; font-size: 1rem; }
  .navlink--cta { justify-content: center; margin: 0.8rem 0; border-radius: 999px; }
  .navlink--cta .chev { display: none; }
  .navitem.open .chev { transform: rotate(180deg); }
  .mega {
    position: static; min-width: 0; opacity: 1; visibility: hidden;
    transform: none; box-shadow: none; border: 0; border-radius: 0;
    padding: 0 0 0.6rem; display: none;
  }
  .navitem.open > .mega { display: block; visibility: visible; }
  .navitem:last-child .mega, .navitem:nth-last-child(2) .mega { right: auto; }
  .mega-head { margin-bottom: 0.5rem; padding-bottom: 0.5rem; }
  .mega-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Disclosure strip ---------- */
.disclosure {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: var(--vn-bg-rose); color: var(--vn-rose-dk);
  font-size: 0.84rem; text-align: center; padding: 0.7rem 1.5rem;
}

/* ---------- Section landing ---------- */
.hub-hero { background: var(--vn-bg-soft); border-bottom: 1px solid var(--vn-border); padding: clamp(0.9rem, 2vw, 1.25rem) 0; }
.hub-hero .wrap { max-width: 820px; }
.hub-hero .eyebrow { display: inline-flex; align-items: center; gap: 0.4em; }
.hub-hero h1 { margin: 0.15rem 0 0.35rem; }
.hub-hero p { font-size: 1.15rem; color: var(--vn-body); margin: 0; }

.breadcrumbs { font-size: 0.8rem; color: var(--vn-muted); margin-bottom: 0.45rem; display: flex; gap: 0.4rem; flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--vn-rose-dk); }
.breadcrumbs [aria-current] { color: var(--vn-body); }

.section { padding: clamp(2.2rem, 5vw, 3.2rem) 0; }
/* The hub band already carries its own breathing room, so the first section
   under it starts closer instead of stacking two large gaps. */
.hub-hero + .section { padding-top: clamp(1.2rem, 2.5vw, 1.7rem); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.section-head h2 { margin: 0; }
.section-head a { font-size: 0.9rem; font-weight: 600; color: var(--vn-rose-dk); }

/* Topic grid */
.topic-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 0.9rem; }
.topic-card {
  display: block; border: 1px solid var(--vn-border); border-radius: 12px;
  padding: 1rem 1.1rem; background: var(--vn-bg);
  transition: border-color .15s ease, transform .15s ease;
}
.topic-card:hover { border-color: var(--vn-rose); transform: translateY(-2px); }
.topic-card h3 { font-family: var(--vn-sans); font-size: 1rem; font-weight: 600; margin: 0 0 0.25rem; color: var(--vn-ink); }
.topic-card p { font-size: 0.85rem; color: var(--vn-muted); margin: 0; line-height: 1.5; }
.topic-card .go { color: var(--vn-rose); font-size: 0.8rem; font-weight: 600; margin-top: 0.5rem; display: inline-block; }

/* Popular guides */
.guides { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--vn-gap); }
.guide-card { border: 1px solid var(--vn-border); border-radius: 12px; padding: 1.2rem 1.3rem; background: var(--vn-bg-soft); display: flex; flex-direction: column; }
.guide-card .num { font-family: var(--vn-serif); color: var(--vn-rose); font-size: 1.4rem; margin-bottom: 0.4rem; }
.guide-card h3 { font-family: var(--vn-serif); font-size: 1.2rem; margin: 0 0 0.6rem; line-height: 1.28; }
.guide-card .go { margin-top: auto; font-size: 0.85rem; font-weight: 600; color: var(--vn-rose-dk); }

/* Related sections */
.related { background: var(--vn-bg-soft); border-top: 1px solid var(--vn-border); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.9rem; }
.related-card { display: flex; align-items: center; gap: 0.8rem; border: 1px solid var(--vn-border); border-radius: 12px; padding: 0.9rem 1rem; background: var(--vn-bg); }
.related-card:hover { border-color: var(--vn-rose); }
.related-card .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--vn-bg-rose); color: var(--vn-rose-dk); display: flex; align-items: center; justify-content: center; flex: none; font-size: 1.2rem; }
.related-card b { font-family: var(--vn-sans); font-weight: 600; font-size: 0.95rem; color: var(--vn-ink); display: block; }
.related-card span { font-size: 0.78rem; color: var(--vn-muted); }

/* ---------- Article byline / meta ---------- */
.article-dek { font-size: 1.2rem; color: var(--vn-body); margin: 0.4rem 0 0; }
.article-byline { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--vn-border); }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--vn-bg-rose); color: var(--vn-rose-dk); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--vn-sans); flex: none; }
.article-byline .who { font-size: 0.9rem; line-height: 1.4; }
.article-byline .who strong { color: var(--vn-ink); }
.article-byline .who span { color: var(--vn-muted); display: block; font-size: 0.8rem; }
.article-byline .who .verified { color: var(--vn-teal); display: inline-flex; align-items: center; gap: 0.3em; font-weight: 500; }
.article-cover { margin: 1.8rem 0; border-radius: var(--vn-radius); overflow: hidden; background: var(--vn-bg-rose); }
.article-cover img { display: block; width: 100%; height: auto; }

/* ---------- Topic hub page ---------- */
.prose { font-size: 1.1rem; line-height: 1.75; color: var(--vn-body); max-width: 720px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; font-family: var(--vn-serif); }
.prose a { color: var(--vn-rose-dk); text-decoration: underline; text-underline-offset: 2px; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: 0.4rem; }
.prose blockquote { border-left: 3px solid var(--vn-rose); margin: 1.6rem 0; padding: 0.2rem 0 0.2rem 1.2rem; font-family: var(--vn-serif); font-size: 1.2rem; color: var(--vn-ink); }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.95rem; margin: 1.6rem 0; }
.prose th, .prose td { text-align: left; padding: 0.65rem 0.8rem; border-bottom: 1px solid var(--vn-border); }
.prose thead th { font-family: var(--vn-sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--vn-muted); }

/* FAQ (authored) */
.faq { margin: 2.2rem 0; max-width: 720px; }
.faq h2 { margin-bottom: 0.6rem; }
.faq details { border-bottom: 1px solid var(--vn-border); padding: 0.9rem 0; }
.faq summary { font-family: var(--vn-serif); font-size: 1.15rem; color: var(--vn-ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--vn-rose); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0.7rem 0 0.2rem; font-size: 1rem; color: var(--vn-body); }

/* Author card */
.author-card { display: flex; gap: 1rem; align-items: flex-start; border: 1px solid var(--vn-border); border-radius: var(--vn-radius); padding: 1.3rem; margin: 2.4rem 0; background: var(--vn-bg-soft); max-width: 720px; }
.author-card .avatar { width: 56px; height: 56px; font-size: 1.15rem; }
.author-card h4 { font-family: var(--vn-sans); margin: 0 0 0.15rem; }
.author-card .role { font-size: 0.82rem; color: var(--vn-teal); font-weight: 600; margin-bottom: 0.5rem; }
.author-card p { font-size: 0.92rem; margin: 0; }
.sources { max-width: 720px; margin: 2rem 0; }
.sources h2 { font-size: 1.3rem; }
.sources ol { font-size: 0.9rem; color: var(--vn-muted); padding-left: 1.2rem; }
.sources li { margin-bottom: 0.4rem; }
.callout { border: 1px solid var(--vn-border-2); background: var(--vn-bg-soft); border-radius: 12px; padding: 1.1rem 1.3rem; margin: 1.6rem 0; font-size: 0.95rem; }
.callout strong { color: var(--vn-ink); }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.chip { font-size: 0.85rem; font-weight: 500; padding: 0.45em 0.9em; border: 1px solid var(--vn-border-2); border-radius: 999px; color: var(--vn-body); }
.chip:hover { background: var(--vn-ink); color: #fff; border-color: var(--vn-ink); }

/* ---------- Home ---------- */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.8rem, 6vw, 5rem) 0 clamp(2.4rem, 4vw, 3.4rem);
  text-align: left;
  background:
    radial-gradient(40% 55% at 10% 8%, var(--vn-teal-bg) 0%, rgba(220,230,223,0) 60%),
    linear-gradient(180deg, var(--vn-bg-soft) 0%, var(--vn-bg) 94%);
}
.home-hero .wrap { max-width: var(--vn-max); position: relative; z-index: 2; }
.home-hero-copy { max-width: 600px; }
.home-hero-foliage {
  position: absolute; top: 50%; right: -3%; transform: translateY(-50%);
  height: 122%; width: auto; max-width: none; z-index: 1; pointer-events: none;
  -webkit-mask-image: linear-gradient(to left, #000 52%, transparent 100%);
          mask-image: linear-gradient(to left, #000 52%, transparent 100%);
}
.home-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.home-hero p { font-size: 1.2rem; color: var(--vn-body); }
.home-search { display: flex; gap: 0.6rem; max-width: 460px; margin: 1.6rem 0 0; }
.home-search input { flex: 1; border: 1px solid var(--vn-border-2); border-radius: 999px; padding: 0.8em 1.3em; font: inherit; font-size: 0.95rem; }
.home-searchbox { display: flex; align-items: center; gap: 0.6rem; max-width: 460px; margin: 1.6rem 0 0; padding: 0.85em 1.3em; border: 1px solid var(--vn-border-2); border-radius: 999px; background: var(--vn-bg); color: var(--vn-muted); font-size: 0.95rem; cursor: text; transition: border-color .15s ease, box-shadow .15s ease, color .15s ease; }
@media (max-width: 860px) {
  .home-hero { text-align: center; }
  .home-hero-copy { max-width: 640px; margin: 0 auto; }
  .home-searchbox { margin-left: auto; margin-right: auto; }
  .home-hero-foliage { height: 100%; right: -24%; opacity: 0.16; -webkit-mask-image: none; mask-image: none; }
}
.tools-spotlight .section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.tools-spotlight .section-head a { font-size: 0.9rem; font-weight: 600; color: var(--vn-rose-dk); white-space: nowrap; }
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 0.7rem; }
.tool-card { display: flex; flex-direction: column; padding: 1rem 1.1rem; border: 1px solid var(--vn-border); border-radius: 12px; background: var(--vn-bg); transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; }
.tool-card:hover { border-color: var(--vn-rose); transform: translateY(-2px); box-shadow: 0 12px 26px -18px rgba(47,74,67,0.32); }
.tool-card .tc-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--vn-bg-rose); color: var(--vn-rose-dk); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 0.55rem; }
.tool-card strong { font-family: var(--vn-sans); font-weight: 600; font-size: 0.98rem; color: var(--vn-ink); }
.tool-card > span:last-child { font-size: 0.82rem; color: var(--vn-muted); margin-top: 0.1rem; }
.home-searchbox:hover { border-color: var(--vn-rose); color: var(--vn-body); box-shadow: 0 3px 12px -7px rgba(47,74,67,0.3); }
.home-searchbox i { color: var(--vn-rose-dk); font-size: 1.05rem; }
.hub-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 0.7rem; }
.hub-tile { display: flex; align-items: center; gap: 0.85rem; border: 1px solid var(--vn-border); border-radius: 12px; padding: 0.85rem 1rem; background: var(--vn-bg); transition: border-color .15s ease, background .15s ease; }
.hub-tile:hover { border-color: var(--vn-rose); background: var(--vn-bg-soft); }
.hub-tile .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--vn-bg-rose); color: var(--vn-rose-dk); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex: none; }
/* Rotate brand tints across the hub grid so the page feels colourful, not mono-pink. */
.hub-tile:nth-child(3n+2) .ic { background: var(--vn-teal-bg); color: var(--vn-teal); }
.hub-tile:nth-child(3n+3) .ic { background: var(--vn-amber-bg); color: var(--vn-amber); }
.hub-tile .ht-body { display: flex; flex-direction: column; min-width: 0; }
.hub-tile .ht-body strong { font-family: var(--vn-sans); font-weight: 600; font-size: 1rem; color: var(--vn-ink); }
.hub-tile .ht-body span { font-size: 0.83rem; color: var(--vn-muted); }
.hub-tile .ht-go { margin-left: auto; color: var(--vn-faint); font-size: 1.1rem; flex: none; transition: color .15s ease, transform .15s ease; }
.hub-tile:hover .ht-go { color: var(--vn-rose); transform: translateX(2px); }

/* Best buys (homepage affiliate module) */
.bestbuys .section-head .eyebrow { display: inline-flex; align-items: center; margin-bottom: 0.3rem; }
.bestbuys .section-head h2 { margin: 0; }
.bestbuys-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: var(--vn-gap); }
.buy-card { display: flex; flex-direction: column; border: 1px solid var(--vn-border); border-radius: var(--vn-radius); overflow: hidden; background: var(--vn-bg); transition: border-color .15s ease, transform .15s ease; }
.buy-card:hover { border-color: var(--vn-rose); transform: translateY(-2px); }
.buy-media { position: relative; height: 92px; background: var(--vn-bg-rose); display: flex; align-items: center; justify-content: center; }
.buy-media > .ti { font-size: 2rem; color: var(--vn-rose-dk); opacity: 0.55; }
.buy-body { padding: 0.9rem 1.05rem 1.1rem; display: flex; flex-direction: column; flex: 1; }
.buy-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--vn-rose-dk); }
.buy-body h3 { font-family: var(--vn-serif); font-size: 1.15rem; margin: 0.35rem 0 0.4rem; line-height: 1.25; }
.buy-pick { font-size: 0.85rem; color: var(--vn-muted); margin: 0 0 0.9rem; }
.buy-cta { margin-top: auto; font-size: 0.86rem; font-weight: 600; color: var(--vn-rose-dk); display: inline-flex; align-items: center; gap: 0.3em; }
.buy-card:hover .buy-cta { color: var(--vn-rose); }
.bestbuys-note { display: flex; align-items: center; gap: 0.5rem; margin: 1.4rem 0 0; font-size: 0.8rem; color: var(--vn-muted); }

/* Trust strip */
.trust-strip { background: var(--vn-bg-soft); border-top: 1px solid var(--vn-border); border-bottom: 1px solid var(--vn-border); }
.trust-strip .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--vn-gap); padding-top: 2.2rem; padding-bottom: 2.2rem; }
.trust-item { display: flex; gap: 0.8rem; }
.trust-item .ti { font-size: 1.5rem; color: var(--vn-rose); }
.trust-item h4 { font-family: var(--vn-sans); font-size: 0.98rem; margin: 0 0 0.2rem; }
.trust-item p { font-size: 0.85rem; color: var(--vn-muted); margin: 0; }

/* ---------- Editorial / legal pages ---------- */
.doc { padding: clamp(2rem, 5vw, 3rem) 0; }
.doc .prose h1 { margin-bottom: 0.3rem; }
.doc .prose h2 { font-size: 1.4rem; }
.doc .updated { font-size: 0.85rem; color: var(--vn-muted); margin-bottom: 1.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--vn-bg-soft); border-top: 1px solid var(--vn-border); margin-top: 3rem; padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: var(--vn-gap); }
.footer-grid h5 { font-family: var(--vn-sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--vn-muted); margin: 0 0 0.9rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; font-size: 0.9rem; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a { color: var(--vn-body); }
.footer-brand p { font-size: 0.9rem; color: var(--vn-muted); max-width: 34ch; }
.footer-disclaimer { margin-top: 2rem; padding: 1.2rem 1.3rem; background: var(--vn-bg); border: 1px solid var(--vn-border); border-radius: 12px; font-size: 0.82rem; color: var(--vn-muted); }
.footer-disclaimer p { margin: 0 0 0.6rem; }
.footer-disclaimer p:last-child { margin: 0; }
.footer-legal { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--vn-border); font-size: 0.8rem; color: var(--vn-muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

/* ---------- Koenig editor cards (Ghost) ---------- */
.prose .kg-card { margin: 1.8rem 0; }
.prose img, .prose .kg-image { border-radius: var(--vn-radius); display: block; margin: 0 auto; }
.prose figure { margin: 1.8rem 0; }
.prose figcaption { text-align: center; font-size: 0.85rem; color: var(--vn-muted); margin-top: 0.6rem; }

.kg-width-wide { position: relative; width: 75vw; min-width: 100%; left: 50%; transform: translateX(-50%); }
.kg-width-full { position: relative; width: 100vw; left: 50%; transform: translateX(-50%); }
.kg-width-full img { width: 100%; border-radius: 0; }

.kg-embed-card { display: flex; flex-direction: column; align-items: center; width: 100%; }
.kg-bookmark-card, .kg-bookmark-card * { text-decoration: none; }
.kg-bookmark-container { display: flex; border: 1px solid var(--vn-border); border-radius: 12px; overflow: hidden; color: var(--vn-body); }
.kg-bookmark-content { padding: 1rem 1.2rem; }
.kg-bookmark-title { font-weight: 600; color: var(--vn-ink); }

/* Avatar fallback icon (Ghost, no profile image) */
.avatar { overflow: hidden; }
.avatar .ti { font-size: 22px; line-height: 1; }
.author-card .avatar .ti { font-size: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .kg-width-wide, .kg-width-full { width: 100%; min-width: 0; left: 0; transform: none; }
}

/* ---------- Review roundup (affiliate money page) ---------- */
.jump { background: var(--vn-bg-soft); border: 1px solid var(--vn-border); border-radius: var(--vn-radius); padding: 1.3rem 1.5rem; margin: 2rem 0; max-width: 720px; }
.jump h3 { font-family: var(--vn-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--vn-muted); margin: 0 0 0.8rem; }
.jump ol { margin: 0; padding-left: 1.2rem; columns: 2; font-size: 0.95rem; }
.jump li { margin-bottom: 0.4rem; }
.jump a { color: var(--vn-rose-dk); }
.entry { border: 1px solid var(--vn-border); border-radius: var(--vn-radius); padding: 1.6rem; margin: 1.6rem 0; display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; max-width: 820px; }
.entry-rank { text-align: center; }
.entry-num { width: 46px; height: 46px; border-radius: 50%; background: var(--vn-ink); color: #fff; font-family: var(--vn-serif); font-weight: 600; font-size: 1.35rem; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.entry-num.gold { background: var(--vn-rose); }
.entry-img { width: 130px; aspect-ratio: 1; border-radius: 12px; margin-top: 0.9rem; background: var(--vn-bg-rose); display: flex; align-items: center; justify-content: center; }
.entry-img .ti { font-size: 2rem; color: var(--vn-rose-dk); opacity: 0.55; }
.entry-body { min-width: 0; }
.award { display: inline-block; background: var(--vn-bg-rose); color: var(--vn-rose-dk); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.35em 0.8em; border-radius: 999px; }
.entry-body h2 { margin: 0.6rem 0 0.3rem; font-size: 1.4rem; }
.entry-scoreline { display: flex; align-items: center; gap: 0.9rem; margin: 0.3rem 0 0.7rem; }
.entry-score { font-family: var(--vn-serif); font-size: 1.5rem; font-weight: 600; }
.entry-score.score--hi { color: var(--vn-teal); }
.entry-score.score--mid { color: var(--vn-amber); }
.entry-price { font-size: 0.9rem; color: var(--vn-muted); }
.entry-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.6rem; margin: 0.9rem 0; font-size: 0.9rem; }
.entry-mini ul { list-style: none; padding: 0; margin: 0; }
.entry-mini li { padding: 0.2rem 0 0.2rem 1.4rem; position: relative; }
.entry-mini .pros li::before { content: "✓"; position: absolute; left: 0; color: var(--vn-teal); font-weight: 700; }
.entry-mini .cons li::before { content: "–"; position: absolute; left: 0; color: var(--vn-rose); font-weight: 700; }
.entry-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.6rem; }
.cmp-wrap { max-width: 820px; overflow-x: auto; margin: 1.8rem 0; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.cmp-table th, .cmp-table td { text-align: left; padding: 0.7rem 0.85rem; border-bottom: 1px solid var(--vn-border); }
.cmp-table thead th { font-family: var(--vn-sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--vn-muted); }
.cmp-table .cmp-label { font-weight: 600; color: var(--vn-ink); }
@media (max-width: 640px) { .entry { grid-template-columns: 1fr; } .entry-img { width: 100%; } .entry-mini, .jump ol { grid-template-columns: 1fr; columns: 1; } }

/* ---------- Hub post listing (tag / author / latest guides) ---------- */
.hub-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.1rem; }
.hub-card { display: flex; flex-direction: column; border: 1px solid var(--vn-border); border-radius: 14px; overflow: hidden; background: var(--vn-bg); transition: border-color .15s ease, transform .15s ease; }
.hub-card:hover { border-color: var(--vn-rose); transform: translateY(-2px); }
.hub-card-media { aspect-ratio: 16 / 10; background: var(--vn-bg-soft); overflow: hidden; }
.hub-card-media img { width: 100%; height: 100%; object-fit: cover; }
.hub-card-body { padding: 1.2rem 1.3rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.hub-card .card-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--vn-rose-dk); }
.hub-card h3 { font-family: var(--vn-serif); font-size: 1.22rem; line-height: 1.3; margin: 0.4rem 0 0.5rem; color: var(--vn-ink); }
.hub-card p { font-size: 0.92rem; color: var(--vn-body); line-height: 1.55; margin: 0 0 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hub-card .card-meta { margin-top: auto; font-size: 0.8rem; color: var(--vn-muted); display: flex; gap: 0.4rem; align-items: center; }


/* ============================================================ *
 * Research-journal chrome: site spine + homepage (ported from
 * the Astro source of truth). Icons now use the Tabler webfont.
 * ============================================================ */
.site-frame { display: flex; align-items: flex-start; min-height: 100vh; }
.site-main { flex: 1 1 auto; min-width: 0; }
.site-spine { position: sticky; top: 0; height: 100vh; flex: none; width: 74px; background: linear-gradient(180deg, #262a55 0%, #1c1f45 100%); color: var(--vn-bg-rose); z-index: 30; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 18px 0 22px; }
.spine-vn { font-family: var(--vn-serif); font-size: 1.4rem; line-height: 1; color: #efece4; width: 46px; height: 46px; border: 1px solid rgba(240,228,214,0.35); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.spine-vn .cn { color: var(--vn-rose); }
.spine-rot { writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--vn-sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(240,228,214,0.55); }
.spine-dots { width: 26px; height: 26px; background-image: radial-gradient(rgba(240,228,214,0.45) 1px, transparent 1px); background-size: 8.5px 8.5px; }
@media (max-width: 860px) { .site-spine { display: none; } }

.rj-page { padding-top: 1rem; position: relative; }
.rj-page::before { content: ""; position: absolute; inset: -60px 0 auto 0; height: 640px; z-index: -1; pointer-events: none; background: radial-gradient(720px 400px at 84% 3%, var(--vn-bg-rose) 0%, rgba(240,228,214,0) 62%), radial-gradient(640px 460px at 0% -4%, rgba(228,230,240,0.75) 0%, rgba(228,230,240,0) 58%); }
.rj-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: start; gap: clamp(1.25rem, 3vw, 2.25rem); padding: clamp(0.5rem, 1.5vw, 1rem) 0 clamp(0.5rem, 1.5vw, 0.85rem); }
.rj-eyebrow { font-family: var(--vn-sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--vn-rose-dk); }
.rj-h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.06; margin: 0.5rem 0 0.6rem; }
.rj-h1 .cu { color: var(--vn-rose); }
.rj-sub { color: var(--vn-muted); max-width: 44ch; font-size: 1rem; margin-bottom: 1rem; }
.rj-cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--vn-sans); font-weight: 600; color: var(--vn-rose-dk); border-bottom: 2px solid var(--vn-rose); padding-bottom: 3px; }
.rj-cta .arr { transition: transform 0.15s; }
.rj-cta:hover .arr { transform: translateX(4px); }
.rj-figure { margin: 0; }
.rj-photo { display: block; width: 100%; height: auto; }
.rj-trust { display: flex; flex-wrap: wrap; gap: 0.7rem 2.2rem; border-top: 1px solid var(--vn-border); padding: 0.7rem 0 0; margin-bottom: 0; }
.rj-trust span { display: inline-flex; align-items: center; gap: 9px; font-family: var(--vn-sans); font-size: 0.9rem; color: var(--vn-muted); }
.rj-trust .ti { font-size: 18px; color: var(--vn-rose); }
.rj-section { padding: clamp(0.55rem, 1.5vw, 0.9rem) 0; }
.rj-kicker { display: flex; align-items: baseline; gap: 0.9rem; border-top: 1px solid var(--vn-border); padding-top: 0.65rem; margin-bottom: 0.75rem; }
.rj-kicker .rj-k-num { font-family: var(--vn-serif); font-size: 1rem; color: var(--vn-rose); letter-spacing: 0.05em; }
.rj-kicker h2 { margin: 0; }
@media (max-width: 860px) { .rj-hero { grid-template-columns: 1fr; } .rj-figure { order: -1; text-align: center; } }
.rj-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.7rem; align-items: stretch; }
.rj-tile { display: flex; align-items: center; gap: 0.7rem; background: var(--vn-bg); border: 1px solid var(--vn-border); border-radius: 11px; padding: 0.7rem 0.85rem; color: var(--vn-body); transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s; }
.rj-tile:hover { border-color: var(--vn-rose); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(34,38,79,0.07); }
.rj-tile .ic { flex: none; width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.rj-tile .tb { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.rj-tile .tb strong { font-family: var(--vn-serif); font-weight: 400; font-size: 1rem; line-height: 1.18; color: var(--vn-ink); }
.rj-tile .tb span { font-size: 0.82rem; line-height: 1.35; color: var(--vn-muted); }
.rj-starthere { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.75rem; background: var(--vn-bg); border: 1px solid var(--vn-border); border-left: 4px solid var(--vn-rose); border-radius: 14px; padding: clamp(1.5rem, 3.5vw, 2.5rem); color: var(--vn-body); transition: transform 0.15s, box-shadow 0.15s; }
.rj-starthere:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(34,38,79,0.07); }
.rj-starthere h3 { color: var(--vn-ink); margin: 0 0 0.6rem; font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
.rj-starthere p { max-width: 62ch; margin-bottom: 1.25rem; color: var(--vn-muted); }
.rj-starthere .sh-visual { width: 88px; height: 88px; border-radius: 50%; background: var(--vn-bg-rose); color: var(--vn-rose); display: flex; align-items: center; justify-content: center; }
.rj-starthere .sh-visual .ti { font-size: 40px; }
@media (max-width: 720px) { .rj-starthere { grid-template-columns: 1fr; } .rj-starthere .sh-visual { display: none; } }
.rj-principles { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; }
.rj-principle { padding: 0.2rem 1.4rem 0.2rem 0; }
.rj-principle .ti { font-size: 24px; color: var(--vn-rose); display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 11px; background: var(--vn-bg-rose); margin-bottom: 0.9rem; }
.rj-principle h4 { margin: 0 0 0.35rem; font-size: 1.2rem; }
.rj-principle p { margin: 0; color: var(--vn-muted); font-size: 0.95rem; }


/* ---------- Icons (self-hosted masks) ---------- */
/* Tabler outline icons, self-hosted as CSS masks.
   Only the icons the site actually uses (26), so there is no 790 KB webfont and
   no third-party request in the critical path. Color follows currentColor and
   size follows font-size, exactly like the webfont it replaces. */
.ti {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  background-color: currentColor;
  -webkit-mask: var(--ti) no-repeat center / contain;
  mask: var(--ti) no-repeat center / contain;
}
.ti-arrow-right { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-arrow-right'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M5%2012l14%200'%20/%3E%20%3Cpath%20d='M13%2018l6%20-6'%20/%3E%20%3Cpath%20d='M13%206l6%206'%20/%3E%20%3C/svg%3E"); }
.ti-atom { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-atom'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M12%2012v.01'%20/%3E%20%3Cpath%20d='M19.071%204.929c-1.562%20-1.562%20-6%20.337%20-9.9%204.243c-3.905%203.905%20-5.804%208.337%20-4.242%209.9c1.562%201.561%206%20-.338%209.9%20-4.244c3.905%20-3.905%205.804%20-8.337%204.242%20-9.9'%20/%3E%20%3Cpath%20d='M4.929%204.929c-1.562%201.562%20.337%206%204.243%209.9c3.905%203.905%208.337%205.804%209.9%204.242c1.561%20-1.562%20-.338%20-6%20-4.244%20-9.9c-3.905%20-3.905%20-8.337%20-5.804%20-9.9%20-4.242'%20/%3E%20%3C/svg%3E"); }
.ti-barbell { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-barbell'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M2%2012h1'%20/%3E%20%3Cpath%20d='M6%208h-2a1%201%200%200%200%20-1%201v6a1%201%200%200%200%201%201h2'%20/%3E%20%3Cpath%20d='M6%207v10a1%201%200%200%200%201%201h1a1%201%200%200%200%201%20-1v-10a1%201%200%200%200%20-1%20-1h-1a1%201%200%200%200%20-1%201z'%20/%3E%20%3Cpath%20d='M9%2012h6'%20/%3E%20%3Cpath%20d='M15%207v10a1%201%200%200%200%201%201h1a1%201%200%200%200%201%20-1v-10a1%201%200%200%200%20-1%20-1h-1a1%201%200%200%200%20-1%201z'%20/%3E%20%3Cpath%20d='M18%208h2a1%201%200%200%201%201%201v6a1%201%200%200%201%20-1%201h-2'%20/%3E%20%3Cpath%20d='M22%2012h-1'%20/%3E%20%3C/svg%3E"); }
.ti-bolt { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-bolt'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M13%203l0%207l6%200l-8%2011l0%20-7l-6%200l8%20-11'%20/%3E%20%3C/svg%3E"); }
.ti-brain { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-brain'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M15.5%2013a3.5%203.5%200%200%200%20-3.5%203.5v1a3.5%203.5%200%200%200%207%200v-1.8'%20/%3E%20%3Cpath%20d='M8.5%2013a3.5%203.5%200%200%201%203.5%203.5v1a3.5%203.5%200%200%201%20-7%200v-1.8'%20/%3E%20%3Cpath%20d='M17.5%2016a3.5%203.5%200%200%200%200%20-7h-.5'%20/%3E%20%3Cpath%20d='M19%209.3v-2.8a3.5%203.5%200%200%200%20-7%200'%20/%3E%20%3Cpath%20d='M6.5%2016a3.5%203.5%200%200%201%200%20-7h.5'%20/%3E%20%3Cpath%20d='M5%209.3v-2.8a3.5%203.5%200%200%201%207%200v10'%20/%3E%20%3C/svg%3E"); }
.ti-calculator { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-calculator'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M4%203m0%202a2%202%200%200%201%202%20-2h12a2%202%200%200%201%202%202v14a2%202%200%200%201%20-2%202h-12a2%202%200%200%201%20-2%20-2z'%20/%3E%20%3Cpath%20d='M8%207m0%201a1%201%200%200%201%201%20-1h6a1%201%200%200%201%201%201v1a1%201%200%200%201%20-1%201h-6a1%201%200%200%201%20-1%20-1z'%20/%3E%20%3Cpath%20d='M8%2014l0%20.01'%20/%3E%20%3Cpath%20d='M12%2014l0%20.01'%20/%3E%20%3Cpath%20d='M16%2014l0%20.01'%20/%3E%20%3Cpath%20d='M8%2017l0%20.01'%20/%3E%20%3Cpath%20d='M12%2017l0%20.01'%20/%3E%20%3Cpath%20d='M16%2017l0%20.01'%20/%3E%20%3C/svg%3E"); }
.ti-chevron-down { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-chevron-down'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M6%209l6%206l6%20-6'%20/%3E%20%3C/svg%3E"); }
.ti-clock { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-clock'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M3%2012a9%209%200%201%200%2018%200a9%209%200%200%200%20-18%200'%20/%3E%20%3Cpath%20d='M12%207v5l3%203'%20/%3E%20%3C/svg%3E"); }
.ti-droplet { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-droplet'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M7.502%2019.423c2.602%202.105%206.395%202.105%208.996%200c2.602%20-2.105%203.262%20-5.708%201.566%20-8.546l-4.89%20-7.26c-.42%20-.625%20-1.287%20-.803%20-1.936%20-.397a1.376%201.376%200%200%200%20-.41%20.397l-4.893%207.26c-1.695%202.838%20-1.035%206.441%201.567%208.546z'%20/%3E%20%3C/svg%3E"); }
.ti-external-link { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-external-link'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M12%206h-6a2%202%200%200%200%20-2%202v10a2%202%200%200%200%202%202h10a2%202%200%200%200%202%20-2v-6'%20/%3E%20%3Cpath%20d='M11%2013l9%20-9'%20/%3E%20%3Cpath%20d='M15%204h5v5'%20/%3E%20%3C/svg%3E"); }
.ti-heartbeat { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-heartbeat'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M19.5%2013.572l-7.5%207.428l-2.896%20-2.868m-6.117%20-8.104a5%205%200%200%201%209.013%20-3.022a5%205%200%201%201%207.5%206.572'%20/%3E%20%3Cpath%20d='M3%2013h2l2%203l2%20-6l1%203h3'%20/%3E%20%3C/svg%3E"); }
.ti-hexagon { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-hexagon'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M19.875%206.27a2.225%202.225%200%200%201%201.125%201.948v7.284c0%20.809%20-.443%201.555%20-1.158%201.948l-6.75%204.27a2.269%202.269%200%200%201%20-2.184%200l-6.75%20-4.27a2.225%202.225%200%200%201%20-1.158%20-1.948v-7.285c0%20-.809%20.443%20-1.554%201.158%20-1.947l6.75%20-3.98a2.33%202.33%200%200%201%202.25%200l6.75%203.98h-.033z'%20/%3E%20%3C/svg%3E"); }
.ti-hourglass { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-hourglass'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M6.5%207h11'%20/%3E%20%3Cpath%20d='M6.5%2017h11'%20/%3E%20%3Cpath%20d='M6%2020v-2a6%206%200%201%201%2012%200v2a1%201%200%200%201%20-1%201h-10a1%201%200%200%201%20-1%20-1z'%20/%3E%20%3Cpath%20d='M6%204v2a6%206%200%201%200%2012%200v-2a1%201%200%200%200%20-1%20-1h-10a1%201%200%200%200%20-1%201z'%20/%3E%20%3C/svg%3E"); }
.ti-info-circle { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-info-circle'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M3%2012a9%209%200%201%200%2018%200a9%209%200%200%200%20-18%200'%20/%3E%20%3Cpath%20d='M12%209h.01'%20/%3E%20%3Cpath%20d='M11%2012h1v4h1'%20/%3E%20%3C/svg%3E"); }
.ti-list-check { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-list-check'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M3.5%205.5l1.5%201.5l2.5%20-2.5'%20/%3E%20%3Cpath%20d='M3.5%2011.5l1.5%201.5l2.5%20-2.5'%20/%3E%20%3Cpath%20d='M3.5%2017.5l1.5%201.5l2.5%20-2.5'%20/%3E%20%3Cpath%20d='M11%206l9%200'%20/%3E%20%3Cpath%20d='M11%2012l9%200'%20/%3E%20%3Cpath%20d='M11%2018l9%200'%20/%3E%20%3C/svg%3E"); }
.ti-mars { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-mars'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M10%2014m-5%200a5%205%200%201%200%2010%200a5%205%200%201%200%20-10%200'%20/%3E%20%3Cpath%20d='M19%205l-5.4%205.4'%20/%3E%20%3Cpath%20d='M19%205l-5%200'%20/%3E%20%3Cpath%20d='M19%205l0%205'%20/%3E%20%3C/svg%3E"); }
.ti-meat { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-meat'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M13.62%208.382l1.966%20-1.967a2%202%200%201%201%203.414%20-1.415a2%202%200%201%201%20-1.413%203.414l-1.82%201.821'%20/%3E%20%3Cpath%20d='M5.904%2018.596c2.733%202.734%205.9%204%207.07%202.829c1.172%20-1.172%20-.094%20-4.338%20-2.828%20-7.071c-2.733%20-2.734%20-5.9%20-4%20-7.07%20-2.829c-1.172%201.172%20.094%204.338%202.828%207.071z'%20/%3E%20%3Cpath%20d='M7.5%2016l1%201'%20/%3E%20%3Cpath%20d='M12.975%2021.425c3.905%20-3.906%204.855%20-9.288%202.121%20-12.021c-2.733%20-2.734%20-8.115%20-1.784%20-12.02%202.121'%20/%3E%20%3C/svg%3E"); }
.ti-menu-2 { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-menu-2'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M4%206l16%200'%20/%3E%20%3Cpath%20d='M4%2012l16%200'%20/%3E%20%3Cpath%20d='M4%2018l16%200'%20/%3E%20%3C/svg%3E"); }
.ti-microscope { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-microscope'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M5%2021h14'%20/%3E%20%3Cpath%20d='M6%2018h2'%20/%3E%20%3Cpath%20d='M7%2018v3'%20/%3E%20%3Cpath%20d='M9%2011l3%203l6%20-6l-3%20-3z'%20/%3E%20%3Cpath%20d='M10.5%2012.5l-1.5%201.5'%20/%3E%20%3Cpath%20d='M17%203l3%203'%20/%3E%20%3Cpath%20d='M12%2021a6%206%200%200%200%203.715%20-10.712'%20/%3E%20%3C/svg%3E"); }
.ti-pills { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-pills'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M8%208m-5%200a5%205%200%201%200%2010%200a5%205%200%201%200%20-10%200'%20/%3E%20%3Cpath%20d='M17%2017m-4%200a4%204%200%201%200%208%200a4%204%200%201%200%20-8%200'%20/%3E%20%3Cpath%20d='M4.5%204.5l7%207'%20/%3E%20%3Cpath%20d='M19.5%2014.5l-5%205'%20/%3E%20%3C/svg%3E"); }
.ti-scissors { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-scissors'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M6%207m-3%200a3%203%200%201%200%206%200a3%203%200%201%200%20-6%200'%20/%3E%20%3Cpath%20d='M6%2017m-3%200a3%203%200%201%200%206%200a3%203%200%201%200%20-6%200'%20/%3E%20%3Cpath%20d='M8.6%208.6l10.4%2010.4'%20/%3E%20%3Cpath%20d='M8.6%2015.4l10.4%20-10.4'%20/%3E%20%3C/svg%3E"); }
.ti-search { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-search'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M10%2010m-7%200a7%207%200%201%200%2014%200a7%207%200%201%200%20-14%200'%20/%3E%20%3Cpath%20d='M21%2021l-6%20-6'%20/%3E%20%3C/svg%3E"); }
.ti-shield-check { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-shield-check'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M11.46%2020.846a12%2012%200%200%201%20-7.96%20-14.846a12%2012%200%200%200%208.5%20-3a12%2012%200%200%200%208.5%203a12%2012%200%200%201%20-.09%207.06'%20/%3E%20%3Cpath%20d='M15%2019l2%202l4%20-4'%20/%3E%20%3C/svg%3E"); }
.ti-star { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-star'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M12%2017.75l-6.172%203.245l1.179%20-6.873l-5%20-4.867l6.9%20-1l3.086%20-6.253l3.086%206.253l6.9%201l-5%204.867l1.179%206.873z'%20/%3E%20%3C/svg%3E"); }
.ti-stethoscope { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-stethoscope'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M6%204h-1a2%202%200%200%200%20-2%202v3.5h0a5.5%205.5%200%200%200%2011%200v-3.5a2%202%200%200%200%20-2%20-2h-1'%20/%3E%20%3Cpath%20d='M8%2015a6%206%200%201%200%2012%200v-3'%20/%3E%20%3Cpath%20d='M11%203v2'%20/%3E%20%3Cpath%20d='M6%203v2'%20/%3E%20%3Cpath%20d='M20%2010m-2%200a2%202%200%201%200%204%200a2%202%200%201%200%20-4%200'%20/%3E%20%3C/svg%3E"); }
.ti-user { --ti: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%20class='icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-user'%20%3E%20%3Cpath%20stroke='none'%20d='M0%200h24v24H0z'%20fill='none'/%3E%20%3Cpath%20d='M8%207a4%204%200%201%200%208%200a4%204%200%200%200%20-8%200'%20/%3E%20%3Cpath%20d='M6%2021v-2a4%204%200%200%201%204%20-4h4a4%204%200%200%201%204%204v2'%20/%3E%20%3C/svg%3E"); }
