@font-face { font-family: "Manrope Variable"; src: url("/marketing/fonts/manrope-latin-wght-normal.woff2") format("woff2"); font-style: normal; font-weight: 200 800; font-display: swap; }
@font-face { font-family: "Nunito Variable"; src: url("/marketing/fonts/nunito-latin-wght-normal.woff2") format("woff2"); font-style: normal; font-weight: 200 1000; font-display: swap; }

:root {
  color-scheme: light;
  --ink: #25293a;
  --ink-soft: #454b68;
  --muted: #656c8d;
  --accent: #6e7bf0;
  --accent-strong: #456ef0;
  --accent-readable: #5062d6;
  --periwinkle: #7d88f4;
  --lilac: #d8d2ff;
  --lilac-strong: #b9b5ff;
  --lilac-soft: #eeeaff;
  --ice: #f3f7ff;
  --lilac-ice: #f8f5ff;
  --navy: #08122e;
  --paper: #f7f9ff;
  --surface: rgba(255, 255, 255, .82);
  --line: rgba(80, 98, 214, .14);
  --shadow-subtle: 0 2px 8px -2px rgba(52, 72, 201, .05);
  --shadow-card: 0 16px 44px -24px rgba(52, 72, 201, .22), inset 0 1px 0 rgba(255, 255, 255, .92);
  --shadow-elevated: 0 24px 64px -28px rgba(52, 72, 201, .3), inset 0 1px 0 rgba(255, 255, 255, .94);
  font-family: "Manrope Variable", Manrope, ui-sans-serif, system-ui, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(110, 123, 240, .10), transparent 28rem),
    radial-gradient(circle at 92% 38%, rgba(185, 181, 255, .13), transparent 30rem),
    var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

a { color: var(--accent-readable); text-underline-offset: .2em; }
a:hover { color: var(--accent-strong); }
a:focus-visible, summary:focus-visible {
  border-radius: .5rem;
  outline: 3px solid rgba(110, 123, 240, .38);
  outline-offset: 3px;
}

.skip { position: absolute; left: -999rem; top: 1rem; }
.skip:focus { left: 1rem; z-index: 50; padding: .7rem 1rem; border-radius: .75rem; background: white; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .72);
  background: rgba(247, 249, 255, .84);
  backdrop-filter: blur(18px);
}

.nav, .footer-inner, main { width: min(72rem, calc(100% - 2rem)); margin-inline: auto; }
.nav { min-height: 4.5rem; display: flex; gap: 1.5rem; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; gap: .7rem; align-items: center; color: var(--ink); text-decoration: none; }
.brand img { width: 2.65rem; height: 2.65rem; object-fit: contain; }
.brand span { display: grid; line-height: 1.08; }
.brand strong {
  font-family: "Nunito Variable", Nunito, ui-rounded, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -.02em;
}
.brand small { margin-top: .18rem; color: var(--accent-readable); font-size: .72rem; font-weight: 750; letter-spacing: .035em; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: end; gap: .35rem; align-items: center; }
.nav-links a {
  padding: .55rem .7rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 750;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease, transform .15s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: rgba(255, 255, 255, .76); color: var(--accent-readable); }
.nav-links .nav-cta { margin-left: .3rem; padding-inline: 1rem; background: linear-gradient(135deg, var(--accent), var(--periwinkle) 55%, var(--lilac-strong)); color: white; box-shadow: 0 10px 24px -13px rgba(69, 110, 240, .9); }
.nav-links .nav-cta:hover { background: linear-gradient(135deg, var(--accent-strong), var(--accent)); color: white; }
.nav-links .nav-cta:active, .button:active { transform: scale(.97); }

main { padding-block: 1.5rem 4rem; }
.breadcrumbs { margin: 0 0 1rem; color: var(--muted); font-size: .8rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li + li::before { margin-right: .4rem; color: rgba(101, 108, 141, .55); content: '/'; }
.breadcrumbs a { color: inherit; }
.hero {
  position: relative;
  max-width: none;
  margin-bottom: 3rem;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.25rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, .88), transparent 20rem),
    linear-gradient(135deg, rgba(238, 234, 255, .92), rgba(243, 247, 255, .96));
  box-shadow: var(--shadow-card);
}
.hero::after {
  position: absolute;
  z-index: 0;
  right: -6rem;
  bottom: -8rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(110, 123, 240, .08);
  content: "";
}
.hero > * { position: relative; z-index: 10; }
.library-hero { display: grid; min-height: 25rem; grid-template-columns: minmax(0, 1.35fr) minmax(15rem, .65fr); align-items: center; }
.article-hero { display: grid; min-height: 31rem; grid-template-columns: minmax(0, 1fr) minmax(18rem, .54fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.article-hero-copy { min-width: 0; }
.hero-copy { max-width: 42rem; }
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--accent-readable);
  font-family: "Nunito Variable", Nunito, ui-rounded, system-ui, sans-serif;
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: "Nunito Variable", Nunito, ui-rounded, system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}
h1 { max-width: 48rem; margin: 0; font-size: clamp(2.45rem, 5.4vw, 4.4rem); font-weight: 900; }
h2 { margin: 3rem 0 1rem; font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 900; }
h3 { margin: 0 0 .55rem; font-size: 1.22rem; font-weight: 900; }
.lede { max-width: 43rem; margin: 1.25rem 0 0; color: var(--ink-soft); font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.65; }
.trust-row { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; }
.trust-row span, .meta span {
  display: inline-flex;
  gap: .25rem;
  align-items: center;
  min-height: 1.9rem;
  padding: .32rem .68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 750;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}
.trust-row span::before { width: .38rem; height: .38rem; margin-right: .42rem; border-radius: 50%; background: var(--accent); content: ""; }
.hero-character { position: relative; min-height: 18rem; }
.hero-character img { position: absolute; z-index: 10; right: -1rem; bottom: -3.8rem; width: min(22rem, 100%); height: auto; filter: hue-rotate(218deg) saturate(1.2) brightness(1.22) drop-shadow(0 20px 30px rgba(69, 110, 240, .18)); }
.hero-character .word {
  position: absolute;
  z-index: 0;
  color: rgba(80, 98, 214, .28);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
}
.word-one { top: 1rem; right: 1rem; transform: rotate(5deg); }
.word-two { top: 7rem; left: 0; transform: rotate(-6deg); }
.word-three { right: 0; bottom: 2rem; transform: rotate(8deg); }
.article-character { min-height: 19rem; }
.article-character img { right: -2.4rem; bottom: -4.6rem; width: 21rem; }
.article-character .word-one { right: -.5rem; }

.article-illustration, .library-illustration { position: relative; min-width: 0; min-height: 24rem; }
.article-illustration::before, .library-illustration::before { position: absolute; inset: 12%; border-radius: 50%; background: radial-gradient(circle, rgba(110, 123, 240, .14), rgba(185, 181, 255, .04) 58%, transparent 70%); content: ""; filter: blur(8px); }
.article-illustration img, .library-illustration img { position: absolute; z-index: 2; inset: 50% auto auto 50%; width: min(28rem, 118%); height: auto; transform: translate(-50%, -50%); filter: drop-shadow(0 24px 30px rgba(69, 110, 240, .14)); }
.library-illustration { min-height: 22rem; }
.library-illustration img { width: min(29rem, 122%); }

.meta { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.35rem; color: var(--muted); font-size: .84rem; }
.meta a { color: inherit; }
.hero-answer {
  max-width: 46rem;
  margin-top: 1.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(80, 98, 214, .14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .7);
  box-shadow: var(--shadow-subtle);
}
.hero-answer strong { display: block; margin-bottom: .25rem; color: var(--accent-readable); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.hero-answer p { margin: 0; color: var(--ink-soft); line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: .72rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--periwinkle) 55%, var(--lilac-strong));
  color: white;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 28px -14px rgba(69, 110, 240, .9);
  transition: transform .15s ease, background-color .15s ease;
}
.button:hover { background: linear-gradient(135deg, var(--accent-strong), var(--accent)); color: white; }
.button.secondary { background: rgba(255, 255, 255, .74); color: var(--accent-readable); box-shadow: inset 0 0 0 1px rgba(110, 123, 240, .3); }

.library-section { margin-top: clamp(3rem, 6vw, 5rem); }
.section-heading { display: flex; gap: 2rem; align-items: end; justify-content: space-between; margin-bottom: 1.35rem; }
.section-heading h2 { margin: 0; }
.section-heading .eyebrow { margin-bottom: .45rem; }
.section-heading > p { max-width: 29rem; margin: 0 0 .25rem; color: var(--muted); font-size: .95rem; }

.featured-card {
  overflow: hidden;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 84% 18%, rgba(110, 202, 240, .26), transparent 17rem),
    radial-gradient(circle at 72% 90%, rgba(185, 181, 255, .33), transparent 18rem),
    var(--navy);
  box-shadow: 0 24px 60px -24px rgba(16, 25, 54, .65), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.featured-inner { display: grid; min-height: 22rem; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center; padding: clamp(1.5rem, 4vw, 3.5rem); color: white; text-decoration: none; }
.featured-inner h2 { max-width: 39rem; margin: .7rem 0 1rem; color: white; }
.featured-inner p { max-width: 39rem; margin: 0; color: rgba(255, 255, 255, .72); font-size: 1rem; }
.featured-inner .tag { color: #c8c5ff; }
.featured-link { display: inline-flex; gap: .55rem; align-items: center; margin-top: 1.5rem; color: white; font-weight: 850; }
.featured-inner:hover .featured-link span { transform: translateX(.25rem); }
.featured-link span, .card-arrow { transition: transform .15s ease; }
.method-orbit { position: relative; min-height: 16rem; }
.method-orbit::before, .method-orbit::after { position: absolute; inset: 12% 9%; border: 1px solid rgba(255, 255, 255, .14); border-radius: 50%; content: ""; transform: rotate(-12deg); }
.method-orbit::after { inset: 24% 18%; border-color: rgba(185, 181, 255, .4); transform: rotate(18deg); }
.method-orbit strong { position: absolute; z-index: 10; inset: 50% auto auto 50%; width: 8rem; transform: translate(-50%, -50%); color: white; font-family: "Nunito Variable", Nunito, ui-rounded, system-ui, sans-serif; font-size: 1.2rem; line-height: 1.08; text-align: center; }
.method-orbit span { position: absolute; padding: .38rem .66rem; border-radius: 999px; background: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .82); font-size: .75rem; font-weight: 750; backdrop-filter: blur(8px); }
.method-orbit span:nth-of-type(1) { top: 8%; left: 38%; }
.method-orbit span:nth-of-type(2) { top: 29%; right: 2%; }
.method-orbit span:nth-of-type(3) { right: 16%; bottom: 7%; }
.method-orbit span:nth-of-type(4) { bottom: 4%; left: 18%; }
.method-orbit span:nth-of-type(5) { top: 39%; left: 0; }
.method-orbit span:nth-of-type(6) { top: 4%; left: 4%; }

.grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1rem; }
.comparison-grid .card { grid-column: span 4; overflow: hidden; }
.comparison-grid .card:nth-child(3n + 1) { background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(238, 234, 255, .72)); }
.comparison-grid .card:nth-child(3n + 2) { background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(226, 244, 247, .72)); }
.comparison-grid .card:nth-child(3n) { background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 238, 229, .66)); }
.intent-grid .card { grid-column: span 6; }
.intent-grid .card { position: relative; overflow: hidden; background: linear-gradient(120deg, rgba(238, 234, 255, .76), rgba(255, 255, 255, .9) 48%, rgba(226, 244, 247, .54)); }
.intent-grid .card::after { position: absolute; right: -2.5rem; bottom: -3.25rem; width: 8rem; height: 8rem; border: 1.2rem solid rgba(110, 123, 240, .07); border-radius: 50%; content: ""; }
.card {
  border-radius: 1.25rem;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.card:hover { transform: translateY(-2px); background: rgba(255, 255, 255, .9); box-shadow: var(--shadow-elevated); }
.card-inner { display: flex; min-height: 100%; flex-direction: column; padding: 1.4rem; color: inherit; text-decoration: none; }
.card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.15rem; }
.tag { color: var(--accent-readable); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.card-arrow { display: grid; width: 2rem; height: 2rem; place-items: center; border-radius: 50%; background: var(--lilac-soft); color: var(--accent-readable); font-weight: 900; }
.card:hover .card-arrow { transform: translate(.12rem, -.12rem); }
.card h3 { color: var(--ink); }
.card p { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.58; }
.card-link { color: var(--ink); text-decoration: none; }
.card-link:hover { color: var(--accent-readable); }
.related .card { grid-column: span 4; }
.related .tag { display: inline-block; margin-bottom: .7rem; }

.notice, .summary {
  margin-top: 2rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}
.summary { background: linear-gradient(135deg, rgba(238, 234, 255, .82), rgba(243, 247, 255, .88)); }
.summary h2, .notice h2 { margin: 0 0 .7rem; font-size: 1.45rem; }
.summary p, .notice p { margin: 0; color: var(--ink-soft); }
.notice p + p { margin-top: .8rem; }
.editorial-disclosure {
  margin-top: -1.25rem;
  padding: .9rem 1rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 .85rem .85rem 0;
  background: rgba(255, 255, 255, .64);
  color: var(--ink-soft);
  font-size: .86rem;
}
.editorial-disclosure strong { color: var(--ink); }
.methodology-note { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start; margin-top: 5rem; }
.methodology-mark { display: grid; width: 3rem; height: 3rem; place-items: center; border-radius: 1rem; background: linear-gradient(135deg, var(--accent), var(--lilac-strong)); color: white; font-family: "Nunito Variable", Nunito, ui-rounded, system-ui, sans-serif; font-size: 1.3rem; font-weight: 950; box-shadow: 0 10px 26px -12px rgba(69, 110, 240, .8); }

.article-layout { display: grid; grid-template-columns: 9.5rem minmax(0, 1fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; margin-top: 3.25rem; }
.article-body { min-width: 0; }
.article-body > section { margin-top: clamp(4rem, 7vw, 6.5rem); scroll-margin-top: 6rem; }
.article-body > section:first-child { margin-top: 0; }
.article-body > section > h2 { margin-top: 0; }
.article-rail { position: sticky; top: 6rem; align-self: start; }
.article-rail nav { display: grid; gap: .25rem; padding-left: .55rem; border-left: 1px solid var(--line); }
.article-rail a { display: grid; grid-template-columns: 1.7rem 1fr; gap: .45rem; align-items: center; padding: .42rem 0; color: var(--muted); font-size: .73rem; font-weight: 750; line-height: 1.25; text-decoration: none; }
.article-rail a:hover { color: var(--accent-readable); }
.article-rail a span { color: var(--accent-readable); font-family: "Nunito Variable", Nunito, ui-rounded, system-ui, sans-serif; font-size: .65rem; font-weight: 950; }
.section-kicker { margin-bottom: .6rem; color: var(--accent-readable); font-family: "Nunito Variable", Nunito, ui-rounded, system-ui, sans-serif; font-size: .72rem; font-weight: 950; letter-spacing: .11em; text-transform: uppercase; }
.section-intro { max-width: 48rem; color: var(--muted); }
.clean-list { max-width: 56rem; padding-left: 1.25rem; }
.clean-list li { padding-left: .2rem; }
.clean-list li + li { margin-top: .6rem; }
.fit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .85rem; margin: 0; padding: 0; list-style: none; }
.fit-grid li { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; padding: 1.15rem; border: 1px solid rgba(80, 98, 214, .1); border-radius: 1rem; background: rgba(255, 255, 255, .78); box-shadow: var(--shadow-subtle); }
.fit-grid li:nth-child(2) { background: rgba(238, 234, 255, .72); }
.fit-grid li:nth-child(3) { background: rgba(226, 244, 247, .66); }
.fit-grid span { display: grid; width: 1.5rem; height: 1.5rem; place-items: center; border-radius: 50%; background: var(--lilac-soft); color: var(--accent-readable); font-size: .75rem; font-weight: 950; }
.fit-grid p { margin: 0; color: var(--ink-soft); font-size: .9rem; line-height: 1.5; }
.content-grid .content-card { grid-column: span 4; padding: 1.35rem; }
.content-card h3 { color: var(--ink); }
.content-card p { color: var(--muted); }

.verdict-section { overflow: hidden; padding: clamp(1.5rem, 4vw, 3.25rem); border-radius: 1.75rem; background: radial-gradient(circle at 95% 15%, rgba(125, 136, 244, .4), transparent 17rem), linear-gradient(145deg, #101a3d, var(--navy)); color: white; box-shadow: 0 26px 64px -28px rgba(8, 18, 46, .75); }
.verdict-section .section-kicker { color: #c8c5ff; }
.verdict-section h2 { color: white; }
.verdict-grid { gap: 0; }
.verdict-grid .content-card { position: relative; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; transform: none; }
.verdict-grid .content-card + .content-card { border-left: 1px solid rgba(255, 255, 255, .16); }
.verdict-grid .content-card::before { display: block; width: 2rem; height: .23rem; margin-bottom: 1.1rem; border-radius: 999px; background: linear-gradient(90deg, var(--periwinkle), #c8c5ff); content: ""; }
.verdict-grid .content-card h3 { color: white; }
.verdict-grid .content-card p { color: rgba(255, 255, 255, .72); }
.limitations-section { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start; padding: clamp(1.35rem, 3vw, 2.35rem); border: 1px solid rgba(80, 98, 214, .1); border-radius: 1.5rem; background: linear-gradient(135deg, rgba(255, 245, 237, .86), rgba(255, 255, 255, .78) 55%, rgba(238, 234, 255, .65)); box-shadow: var(--shadow-card); }
.limitations-section h2 { margin: 0 0 1rem; }
.limitations-section .clean-list { margin-bottom: 0; }
.limitations-mark { display: grid; width: 3.1rem; height: 3.1rem; place-items: center; border-radius: 1rem; background: #f0a07d; color: white; font-family: "Nunito Variable", Nunito, ui-rounded, system-ui, sans-serif; font-size: 1.35rem; font-weight: 950; box-shadow: 0 12px 24px -14px rgba(173, 90, 55, .8); transform: rotate(-4deg); }
.sources-section { padding-top: 2rem; border-top: 1px solid var(--line); }
.sources-section > p { max-width: 52rem; color: var(--muted); }
.sources-section .source-list { display: grid; max-width: none; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; padding: 0; list-style: none; }
.sources-section .source-list li { margin: 0; padding: .9rem 1rem; border: 1px solid rgba(80, 98, 214, .1); border-radius: .9rem; background: rgba(255, 255, 255, .62); font-size: .84rem; line-height: 1.45; }
.closing-cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: center; margin-top: 5rem; background: linear-gradient(135deg, rgba(238, 234, 255, .88), rgba(226, 244, 247, .72)); }
.closing-cta .eyebrow { margin-bottom: .45rem; }
.closing-cta .actions { margin: 0; }

.table-scroll {
  overflow-x: auto;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-card);
  overscroll-behavior-inline: contain;
}
.criteria { width: 100%; margin: 0; border-collapse: separate; border-spacing: 0; background: transparent; }
.overview-table { min-width: 62rem; }
.overview-table th:first-child { width: 16%; }
.criteria th, .criteria td { padding: 1rem 1.1rem; border: 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.criteria tr:last-child th, .criteria tr:last-child td { border-bottom: 0; }
.criteria thead th { background: rgba(238, 234, 255, .65); color: var(--accent-readable); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.criteria:not(.overview-table) thead th:nth-child(2) { background: rgba(221, 218, 255, .72); }
.criteria:not(.overview-table) thead th:nth-child(3) { background: rgba(226, 244, 247, .76); }
.criteria:not(.overview-table) tbody td:nth-of-type(1) { background: rgba(238, 234, 255, .24); }
.criteria:not(.overview-table) tbody td:nth-of-type(2) { background: rgba(226, 244, 247, .22); }
.criteria tbody th { color: var(--ink); font-family: "Nunito Variable", Nunito, ui-rounded, system-ui, sans-serif; font-size: .95rem; font-weight: 900; }
.criteria th:first-child { width: 18%; }
.criteria p { margin: 0; }
.criteria .sources { margin-top: .6rem; color: var(--muted); font-size: .74rem; }

.language-switcher { display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; margin-top: 1.2rem; color: var(--muted); font-size: .86rem; }
.language-switcher a, .language-switcher strong { padding: .32rem .7rem; border-radius: 999px; background: rgba(255, 255, 255, .7); text-decoration: none; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9); }
.language-switcher strong { color: var(--ink); }
.faq details { margin-top: .7rem; padding: 1rem 1.1rem; border: 1px solid rgba(80, 98, 214, .1); border-radius: 1rem; background: rgba(255, 255, 255, .72); box-shadow: var(--shadow-subtle); }
.faq summary { display: flex; gap: 1rem; align-items: center; justify-content: space-between; cursor: pointer; font-family: "Nunito Variable", Nunito, ui-rounded, system-ui, sans-serif; font-weight: 900; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { display: grid; width: 1.7rem; height: 1.7rem; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--lilac-soft); color: var(--accent-readable); content: "+"; }
.faq details[open] summary::after { content: "−"; }
.faq details[open] { background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(238, 234, 255, .56)); }
.faq p { max-width: 52rem; margin: .7rem 0 0; color: var(--muted); }
.source-list { max-width: 56rem; padding-left: 1.25rem; }
.source-list li + li { margin-top: .7rem; }
.source-list small { display: block; color: var(--muted); }

.site-footer { margin-top: 2rem; background: var(--navy); color: rgba(255, 255, 255, .7); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; padding-block: 2rem; }
.footer-inner a { color: rgba(255, 255, 255, .86); }
.footer-inner p { margin: 0; }

/* Articles: one editorial library, with varied layouts inside a shared system. */
.articles-hero {
  display: block;
  min-height: 31rem;
  background:
    linear-gradient(90deg, rgba(247, 249, 255, .99) 0%, rgba(247, 249, 255, .95) 43%, rgba(247, 249, 255, .58) 66%, rgba(247, 249, 255, .1) 100%),
    url('/marketing/illustrations/articles-library.webp') center right / cover no-repeat;
}
.articles-hero .hero-copy { max-width: 42rem; }
.article-library-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.article-library-card { position: relative; overflow: hidden; min-height: 20rem; border-radius: 1.5rem; background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(238, 234, 255, .65)); box-shadow: var(--shadow-card); transition: transform .18s ease, box-shadow .18s ease; }
.article-library-card:nth-child(3n + 2) { background: linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(226, 244, 247, .8)); }
.article-library-card:nth-child(3n) { background: linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 238, 229, .74)); }
.article-library-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-elevated); }
.article-library-card a { display: grid; min-height: 100%; grid-template-columns: 4.6rem minmax(0, 1fr); gap: 1.1rem; padding: clamp(1.35rem, 3vw, 2.2rem); color: inherit; text-decoration: none; }
.article-library-card::after { position: absolute; right: -5rem; bottom: -5rem; width: 12rem; height: 12rem; border: 2rem solid rgba(110, 123, 240, .055); border-radius: 50%; content: ""; pointer-events: none; }
.article-card-number { color: rgba(80, 98, 214, .46); font-family: "Nunito Variable", Nunito, ui-rounded, system-ui, sans-serif; font-size: 2.2rem; font-weight: 900; letter-spacing: -.06em; }
.article-library-card h2 { margin: .8rem 0 1rem; font-size: clamp(1.6rem, 2.7vw, 2.25rem); }
.article-library-card p:not(.tag) { max-width: 34rem; margin: 0; color: var(--ink-soft); line-height: 1.65; }
.article-card-link { display: inline-flex; gap: .5rem; margin-top: 1.5rem; color: var(--accent-readable); font-weight: 850; }
.article-library-card:first-child { grid-column: 1 / -1; min-height: 17rem; background: radial-gradient(circle at 88% 24%, rgba(126, 213, 215, .17), transparent 14rem), var(--navy); color: white; }
.article-library-card:first-child a { grid-template-columns: 5rem minmax(0, 43rem); align-content: center; padding-block: clamp(2rem, 4vw, 3rem); }
.article-library-card:first-child .article-card-number { color: rgba(200, 197, 255, .55); }
.article-library-card:first-child .tag, .article-library-card:first-child .article-card-link { color: #c8c5ff; }
.article-library-card:first-child h2 { color: white; }
.article-library-card:first-child p:not(.tag) { color: rgba(255, 255, 255, .74); }
.article-library-card:first-child::after { right: 5%; bottom: -8rem; width: 18rem; height: 18rem; border-color: rgba(126, 213, 215, .07); }
.guide-hero { display: block; min-height: 0; background: radial-gradient(circle at 80% 20%, rgba(226, 244, 247, .9), transparent 19rem), linear-gradient(135deg, rgba(238, 234, 255, .94), rgba(248, 250, 255, .98)); }
.guide-hero .article-hero-copy { max-width: 48rem; padding-right: clamp(8rem, 17vw, 13rem); }
.guide-hero-visual { position: absolute; z-index: 1; top: 0; right: 0; bottom: 0; width: 34%; min-height: 0; pointer-events: none; }
.guide-hero-visual > span { position: absolute; z-index: 1; top: 8%; right: -1rem; max-width: 18rem; color: rgba(80, 98, 214, .13); font-family: "Nunito Variable", Nunito, ui-rounded, system-ui, sans-serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 950; line-height: .9; text-align: right; transform: rotate(5deg); }
.guide-hero-visual .hero-character { position: absolute; inset: 0; min-height: 0; }
.guide-hero-visual .hero-character img { right: -2rem; bottom: -4.5rem; width: 20rem; }
.guide-fit { margin: -1.5rem 0 2.5rem; padding: 1.6rem; border-radius: 1.3rem; background: var(--navy); color: white; box-shadow: 0 20px 45px -28px rgba(8, 25, 47, .8); }
.guide-fit .section-kicker { color: #c8c5ff; }
.guide-fit ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; margin: .8rem 0 0; padding: 0; list-style: none; }
.guide-fit li { display: flex; gap: .6rem; align-items: start; color: rgba(255, 255, 255, .84); font-size: .9rem; line-height: 1.5; }
.guide-fit li span { color: #7ed5d7; font-weight: 950; }
.guide-section { padding-block: 1rem 3rem; border-bottom: 1px solid var(--line); }
.guide-section:last-of-type { border-bottom: 0; }
.guide-section h2 { max-width: 48rem; margin: .35rem 0 1.1rem; }
.guide-section > p:not(.section-kicker) { max-width: 48rem; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; }
.guide-steps { display: grid; gap: .7rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.guide-steps li { display: grid; grid-template-columns: 2.4rem minmax(0, 1fr); gap: .9rem; align-items: start; padding: 1rem 1.1rem; border-radius: 1rem; background: rgba(255, 255, 255, .72); box-shadow: var(--shadow-subtle); }
.guide-steps li > span { display: grid; width: 2.2rem; height: 2.2rem; place-items: center; border-radius: 50%; background: rgba(110, 123, 240, .13); color: var(--accent-readable); font-weight: 900; }
.guide-steps p { margin: .35rem 0 0; color: var(--ink-soft); line-height: 1.55; }
.guide-card-grid { margin-top: 1.3rem; }
.guide-mini-card { position: relative; grid-column: span 6; min-height: 11rem; padding: 1.25rem; overflow: hidden; border-radius: 1.1rem; background: rgba(255, 255, 255, .74); box-shadow: var(--shadow-subtle); }
.guide-mini-card > span { position: absolute; top: .8rem; right: 1rem; color: rgba(80, 98, 214, .15); font-family: "Nunito Variable", Nunito, ui-rounded, system-ui, sans-serif; font-size: 2.2rem; font-weight: 950; }
.guide-mini-card h3 { max-width: 80%; }
.guide-mini-card p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
.guide-table { margin-top: 1.35rem; }
.guide-table th:first-child { width: 26%; }
.guide-table-sources { margin: .8rem 0 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.guide-related .card { grid-column: span 4; }
.guide-jump-nav { display: none; }
.guide-disclosure { margin: 1.25rem 0 1.5rem; padding: 1rem 1.1rem; border-left: 3px solid var(--accent); border-radius: .2rem .85rem .85rem .2rem; background: rgba(238, 234, 255, .48); color: var(--ink-soft); font-size: .84rem; line-height: 1.55; }
.guide-disclosure strong { color: var(--ink); }
code { overflow-wrap: anywhere; }

@media (max-width: 900px) {
  .articles-hero { min-height: 29rem; }
  .guide-fit ul { grid-template-columns: 1fr; }
  .comparison-grid .card { grid-column: span 6; }
  .content-grid .content-card { grid-column: span 6; }
  .library-hero { grid-template-columns: minmax(0, 1fr) 13rem; }
  .hero-character img { right: -3rem; width: 19rem; }
  .article-illustration img, .library-illustration img { width: min(24rem, 122%); }
  .featured-inner { grid-template-columns: 1fr .7fr; }
  .article-layout { display: block; }
  .article-rail { display: none; }
  .guide-jump-nav { display: block; margin: 0 0 2.75rem; padding: 1rem 0; border-block: 1px solid var(--line); }
  .guide-jump-nav > strong { display: block; margin-bottom: .65rem; color: var(--accent-readable); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
  .guide-jump-nav > div { display: flex; gap: .55rem; overflow-x: auto; padding: .1rem 0 .45rem; scrollbar-width: thin; }
  .guide-jump-nav a { display: flex; min-width: min(17rem, 74vw); gap: .55rem; align-items: center; padding: .7rem .8rem; border-radius: .8rem; background: rgba(255, 255, 255, .72); color: var(--ink-soft); font-size: .76rem; font-weight: 750; line-height: 1.3; text-decoration: none; box-shadow: var(--shadow-subtle); }
  .guide-jump-nav a span { color: var(--accent-readable); font-weight: 950; }
}

@media (max-width: 720px) {
  .nav, .footer-inner, main { width: min(100% - 1rem, 72rem); }
  .nav { min-height: 4rem; }
  .brand img { width: 2.25rem; height: 2.25rem; }
  .brand strong { font-size: .9rem; }
  .brand small { font-size: .65rem; }
  .nav-links a:not([href="/comparisons/"]):not([href="/articles/"]):not(.nav-cta) { display: none; }
  .nav-links > a[href="/articles/"] { display: none; }
  body[data-page-kind="guide"] .nav-links > a[href="/comparisons/"], body[data-page-kind="article-library"] .nav-links > a[href="/comparisons/"] { display: none; }
  body[data-page-kind="guide"] .nav-links > a[href="/articles/"], body[data-page-kind="article-library"] .nav-links > a[href="/articles/"] { display: inline-flex; }
  .nav-links a { padding: .48rem .62rem; font-size: .78rem; }
  .nav-links .nav-cta { margin-left: 0; }
  main { padding-top: .75rem; }
  .hero { margin-bottom: 2.5rem; padding: 1.5rem; border-radius: 1.5rem; }
  .library-hero { display: block; min-height: 0; padding-bottom: 1rem; }
  .article-hero { display: block; min-height: 0; padding-bottom: 15rem; }
  .articles-hero { min-height: 32rem; padding-bottom: 2rem; background: linear-gradient(180deg, rgba(247, 249, 255, .98) 0%, rgba(247, 249, 255, .93) 62%, rgba(247, 249, 255, .52) 100%), url('/marketing/illustrations/articles-library.webp') 64% center / cover no-repeat; }
  .guide-hero { padding-bottom: 1.5rem; }
  .guide-hero .article-hero-copy { max-width: none; padding-right: 0; }
  .guide-hero-visual { inset: auto 0 0 auto; width: 13rem; height: 12rem; opacity: .12; }
  .guide-hero-visual > span, .guide-hero-visual .word { display: none; }
  .guide-hero-visual .hero-character img { right: -1.5rem; bottom: -3.5rem; width: 14rem; opacity: 1; }
  .hero-character { position: absolute; z-index: 0; right: 0; bottom: 0; left: 0; min-height: 15rem; }
  .hero-character img { right: -1.2rem; bottom: -5.5rem; width: 18rem; opacity: .82; }
  .article-character { min-height: 12rem; }
  .article-character img { right: -.5rem; bottom: -4rem; width: 16.5rem; }
  .article-character .word-one { top: .4rem; right: .8rem; }
  .article-character .word-two { top: 5rem; left: 1.5rem; }
  .article-character .word-three { right: -.5rem; bottom: 1rem; }
  .article-illustration { position: absolute; z-index: 1; right: .5rem; bottom: .25rem; left: .5rem; min-height: 13.5rem; }
  .library-illustration { min-height: 13.5rem; margin-top: .5rem; }
  .article-illustration::before, .library-illustration::before { inset: 2rem 16%; }
  .article-illustration img, .library-illustration img { width: min(19rem, 82vw); max-height: 15rem; object-fit: contain; }
  .word-two { left: 2rem; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  h2 { font-size: clamp(1.6rem, 8vw, 2rem); }
  .trust-row span { font-size: .7rem; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: .65rem; }
  .library-section { margin-top: 3.25rem; }
  .featured-inner { display: block; min-height: 0; padding: 1.5rem; }
  .method-orbit { min-height: 13rem; margin-top: 1.5rem; }
  .comparison-grid .card, .intent-grid .card { grid-column: 1 / -1; }
  .related .card { grid-column: 1 / -1; }
  .content-grid .content-card { grid-column: 1 / -1; }
  .fit-grid { grid-template-columns: 1fr; }
  .article-body > section { margin-top: 4rem; }
  .verdict-grid .content-card + .content-card { border-top: 1px solid rgba(255, 255, 255, .16); border-left: 0; }
  .limitations-section { grid-template-columns: 1fr; }
  .sources-section .source-list { grid-template-columns: 1fr; }
  .closing-cta { grid-template-columns: 1fr; }
  .closing-cta .actions { margin-top: .3rem; }
  .card-inner { padding: 1.2rem; }
  .methodology-note { grid-template-columns: 1fr; margin-top: 3.25rem; }
  .criteria, .criteria thead, .criteria tbody, .criteria tr, .criteria th, .criteria td { display: block; }
  .overview-table { min-width: 0; }
  .criteria thead { position: absolute; left: -999rem; }
  .criteria tbody { display: grid; gap: .75rem; padding: .75rem; }
  .criteria tr { overflow: hidden; border-radius: 1rem; background: rgba(255, 255, 255, .86); box-shadow: var(--shadow-subtle); }
  .criteria th, .criteria td { border: 0; border-bottom: 1px solid var(--line); }
  .criteria td:last-child { border-bottom: 0; }
  .criteria td::before { display: block; margin-bottom: .25rem; color: var(--accent-readable); font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; content: attr(data-label); }
  .criteria:not(.overview-table) tr { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .criteria:not(.overview-table) tbody th { width: 100%; grid-column: 1 / -1; padding: .8rem 1rem; background: linear-gradient(90deg, rgba(238, 234, 255, .82), rgba(243, 247, 255, .72)); border-bottom: 1px solid var(--line); }
  .criteria:not(.overview-table) td { min-width: 0; padding: .95rem; border-bottom: 0; font-size: .84rem; line-height: 1.5; overflow-wrap: anywhere; }
  .criteria:not(.overview-table) td:nth-of-type(1) { border-right: 1px solid var(--line); }
  .criteria:not(.overview-table) .sources { font-size: .68rem; line-height: 1.4; }
  .footer-inner { display: block; }
  .footer-inner .nav-links { justify-content: start; margin-top: 1rem; }
  .footer-inner .nav-links a { display: inline-flex !important; }
  .article-library-grid { grid-template-columns: 1fr; }
  .article-library-card { min-height: 0; }
  .article-library-card a { grid-template-columns: 3.2rem minmax(0, 1fr); }
  .article-library-card:first-child { min-height: 0; }
  .article-library-card:first-child a { grid-template-columns: 3.2rem minmax(0, 1fr); padding-block: 1.7rem; }
  .article-card-number { font-size: 1.6rem; }
  .guide-mini-card, .guide-related .card { grid-column: 1 / -1; }
}

@media (max-width: 420px) {
  .hero { padding: 1.25rem; }
  .library-illustration { min-height: 12.5rem; }
  .article-hero { padding-bottom: 13.5rem; }
  .guide-hero { padding-bottom: 1.25rem; }
  .article-illustration img, .library-illustration img { width: min(17.5rem, 84vw); max-height: 13.25rem; }
  .lede { font-size: .96rem; }
  .trust-row { gap: .35rem; }
  .trust-row span { padding-inline: .5rem; }
  .criteria:not(.overview-table) td { padding: .75rem; font-size: .78rem; }
  .criteria:not(.overview-table) td::before { font-size: .58rem; letter-spacing: .06em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
