@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
 :root {
  --black: #08090a;
  --ink: #1d1d1f;
  --muted: rgba(0,0,0,.68);
  --light: #f5f5f7;
  --white: #fff;
  --blue: #5e6ad2;
  --blue-dark: #4c56b8;
  --blue-light: #828fff;
  --violet: #7170ff;
  --dark-card: rgba(255,255,255,.03);
  --dark-card-2: rgba(255,255,255,.05);
  --border-subtle: rgba(255,255,255,.06);
  --border-standard: rgba(255,255,255,.09);
  --shadow: rgba(0,0,0,.22) 3px 5px 30px 0;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--light);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: 'cv01', 'ss03';
  letter-spacing: -0.374px;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
.global-nav {
  position: sticky; top: 0; z-index: 50;
  height: 48px; padding: 0 max(22px, calc((100vw - 1040px) / 2));
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(8,9,10,.82); color: #f7f8f8;
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 12px; letter-spacing: -0.12px;
}
.brand { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.brand-glyph { font-size: 15px; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 34px; opacity: .92; }
.nav-cta { color: #fff; background: var(--blue); padding: 6px 12px; border-radius: 7px; font-weight: 600; opacity: 1; }
.nav-cta:hover { text-decoration: none; background: var(--blue-light); }
.nav-links a[href*="subscribe"], .nav-links a[href*="newsletter"] { opacity: .78; font-weight: 400; }
.hero-secondary-links { margin: 14px 0 0; color: rgba(255,255,255,.62); font-size: 14px; }
.hero-secondary-links a { color: #c5c9d4; text-decoration: underline; text-underline-offset: 2px; }
.checkout-plain-link { color: inherit; text-decoration: underline; font-size: 13px; }
.scene { width: 100%; overflow: hidden; }
.scene-dark { background: var(--black); color: var(--white); }
.scene-light { background: var(--light); color: var(--ink); }
.hero {
  min-height: calc(100vh - 48px);
  display: grid; grid-template-columns: minmax(320px, 540px) minmax(320px, 560px);
  align-items: center; justify-content: center; gap: clamp(28px, 6vw, 88px);
  padding: 72px 28px 86px;
}
.hero-copy { text-align: center; justify-self: end; max-width: 600px; }
.kicker { margin: 0 0 12px; color: #8a8f98; font-size: 21px; line-height: 1.19; font-weight: 400; letter-spacing: .231px; }
.kicker.light { color: #6e6e73; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 12px; font-size: clamp(48px, 7vw, 78px); line-height: 1.0; font-weight: 500; letter-spacing: -2.2px; }
h2 { margin-bottom: 14px; font-size: clamp(38px, 5vw, 60px); line-height: 1.04; font-weight: 500; letter-spacing: -1.5px; }
h3 { margin-bottom: 8px; font-size: 28px; line-height: 1.14; font-weight: 600; letter-spacing: .196px; }
.subhead { max-width: 620px; margin: 0 auto 26px; color: rgba(255,255,255,.82); font-size: 21px; line-height: 1.38; letter-spacing: .231px; }
.actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 10px 22px; border-radius: 8px; font-size: 15px; font-weight: 500; line-height: 1.2; letter-spacing: -0.1px; transition: background .18s ease, box-shadow .18s ease, transform .18s ease; }
.button-blue { background: var(--blue); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }
.button-blue:hover { background: var(--blue-light); text-decoration: none; box-shadow: 0 4px 20px rgba(113,112,255,.35); transform: translateY(-1px); }
.button-dark { background: rgba(255,255,255,.06); color: #f7f8f8; border: 1px solid rgba(255,255,255,.09); }
.button-ghost-dark { color: #aeb6ff; background: rgba(113,112,255,.06); border: 1px solid rgba(174,182,255,.35); }
.button-ghost-dark:hover { color: #fff; background: rgba(113,112,255,.16); text-decoration: none; }
.intro-strip { padding: 48px 24px; text-align: center; }
.intro-strip p { max-width: 910px; margin: 0 auto; font-size: clamp(24px, 3.3vw, 40px); line-height: 1.12; font-weight: 600; letter-spacing: -.4px; }
.product-grid-section { padding: 74px 24px 96px; }
.section-title { max-width: 840px; margin: 0 auto 34px; text-align: center; }
.section-title p:last-child { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 19px; line-height: 1.42; }
.product-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.product-tile { min-height: 520px; border-radius: 8px; padding: 42px; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; text-align: center; justify-content: space-between; }
.product-tile.large { grid-row: span 2; min-height: 1054px; }
.tile-dark { background: #000; color: #fff; }
.tile-light { background: #fff; color: var(--ink); }
.tile-text { max-width: 430px; z-index: 2; }
.tile-text p:not(.eyebrow) { color: currentColor; opacity: .72; font-size: 17px; line-height: 1.47; }
.tile-text a { color: var(--blue-light); font-size: 17px; }
.tile-light .tile-text a { color: var(--blue-dark); }
.eyebrow { margin-bottom: 8px; font-size: 14px; font-weight: 600; color: #86868b; }
.copy-visual { width: min(360px, 84%); display: grid; gap: 16px; padding-bottom: 40px; }
.copy-visual span { padding: 24px; border-radius: 20px; background: rgba(255,255,255,.12); box-shadow: rgba(255,255,255,.16) 0 0 0 1px inset; color: rgba(255,255,255,.88); font-size: 24px; font-weight: 600; }
.orb { width: 230px; height: 230px; margin-bottom: 48px; border-radius: 50%; filter: blur(.1px); box-shadow: rgba(0,0,0,.22) 3px 5px 30px; }
.orb-blue { background: radial-gradient(circle at 35% 30%, #fff, #c3c5ff 26%, #7170ff 62%, #2d2e77); box-shadow: 0 0 80px rgba(113,112,255,.45), rgba(0,0,0,.22) 3px 5px 30px; }
.orb-silver { background: radial-gradient(circle at 35% 28%, #fff, #e8e8ed 32%, #b8b8bf 68%, #6e6e73); }
.node-map { width: 280px; height: 230px; position: relative; margin-bottom: 42px; }
.node-map:before, .node-map:after { content: ''; position:absolute; left:30px; right:30px; top:50%; height:2px; background:#d2d2d7; transform: rotate(-18deg); }
.node-map:after { transform: rotate(22deg); }
.node-map i { position:absolute; width:58px; height:58px; border-radius:50%; background:#f5f5f7; box-shadow: var(--shadow); }
.node-map i:nth-child(1){left:5px;top:84px}.node-map i:nth-child(2){left:112px;top:18px}.node-map i:nth-child(3){right:8px;top:94px}.node-map i:nth-child(4){left:122px;bottom:6px;background:#0071e3}
.code-visual { width: min(360px, 88%); margin-bottom: 38px; padding: 24px; border-radius: 22px; background: #1f1f22; display:grid; gap:12px; text-align:left; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; color:#f5f5f7; box-shadow: rgba(255,255,255,.1) 0 0 0 1px inset; }
.code-visual span { opacity:.86; } .code-visual span:nth-child(2){color:#2997ff}.code-visual span:nth-child(3){color:#7ee787}
.workflow-section { padding: 92px 24px; }
.dark-title p:last-child { color: rgba(255,255,255,.72); }
.workflow-cards { max-width: 1040px; margin: 34px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.workflow-cards article { min-height: 300px; padding: 30px; border-radius: 12px; background: var(--dark-card); }
.workflow-cards span { display:block; margin-bottom:58px; color:#86868b; font-size:14px; }
.workflow-cards h3 { color:#fff; }
.workflow-cards p { color: rgba(255,255,255,.72); font-size:17px; line-height:1.47; }
.featured-guide { padding: 96px 24px; display: grid; grid-template-columns: minmax(300px, 520px) minmax(280px, 420px); justify-content: center; align-items: center; gap: 80px; }
.featured-guide p:not(.kicker) { color: var(--muted); font-size: 21px; line-height: 1.38; }
.guide-card { height: 440px; padding: 34px; border-radius: 20px; background: #fff; border: 1px solid rgba(0,0,0,.06); box-shadow: rgba(0,0,0,.04) 0 2px 6px, rgba(0,0,0,.03) 0 12px 36px; display: flex; flex-direction: column; justify-content: flex-end; }
.guide-card span { color:#86868b; font-size:14px; }
.guide-card strong { margin:10px 0; display:block; font-size:42px; line-height:1.05; letter-spacing:-.5px; }
.guide-card p { color: var(--muted); }
.subscribe-panel { margin: 0 auto; padding: 88px 24px 104px; text-align:center; }
.subscribe-panel h2 { margin-bottom: 10px; }
.subscribe-panel p { max-width: 640px; margin: 0 auto 24px; color: var(--muted); font-size: 21px; line-height: 1.38; }
.footer { max-width: 1040px; margin: 24px auto 0; padding: 34px 24px 48px; display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; border-top: 1px solid rgba(0,0,0,.07); color: rgba(0,0,0,.52); font-size: 13px; }
.footer span { margin-right: auto; font-weight: 500; }
.footer a { color: rgba(0,0,0,.68); text-decoration: none; transition: color .15s ease; }
.footer a:hover { color: var(--blue-dark); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
@media (max-width: 900px) {
  .nav-links { display:none; }
  .global-nav[data-nav="slim"] .nav-links { display: flex; gap: 14px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 62px; }
  .hero-copy { justify-self: center; }
  .product-grid, .workflow-cards, .featured-guide { grid-template-columns: 1fr; }
  .product-tile, .product-tile.large { min-height: 560px; }
  .featured-guide { gap: 28px; }
}
@media (max-width: 520px) {
  .global-nav { gap: 12px; } .brand span:last-child { display:none; }
  .global-nav[data-nav="slim"] { gap: 8px; padding-left: 12px; padding-right: 12px; }
  .global-nav[data-nav="slim"] .nav-links { gap: 8px; font-size: 11px; }
  .global-nav[data-nav="slim"] .nav-cta { display: none; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .product-grid-section, .workflow-section, .featured-guide { padding-left: 12px; padding-right: 12px; }
  .product-tile { padding: 30px 20px; }
  .workflow-cards article { min-height: auto; }
  .workflow-cards span { margin-bottom: 32px; }
}

/* Revenue/content directory additions */
.compact-hero { min-height: 52vh; grid-template-columns: minmax(320px, 820px); text-align: center; }
.compact-hero .hero-copy { justify-self: center; }
.directory-section { padding: 64px 24px 96px; }
.directory-toolbar { max-width: 980px; margin: 0 auto 28px; display: grid; gap: 10px; }
.directory-toolbar label { font-size: 28px; font-weight: 600; letter-spacing: .196px; }
.directory-toolbar input { width: 100%; min-height: 52px; border: 0; border-radius: 14px; padding: 0 18px; background: #fff; color: var(--ink); font: inherit; font-size: 17px; box-shadow: rgba(0,0,0,.08) 0 1px 2px; }
.monetization-note, .affiliate-inline { color: rgba(0,0,0,.56); font-size: 13px; line-height: 1.4; }
.directory-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.directory-card { min-height: 390px; padding: 26px; border-radius: 14px; background: #fff; border: 1px solid rgba(0,0,0,.06); box-shadow: rgba(0,0,0,.04) 0 1px 2px, rgba(0,0,0,.03) 0 8px 24px; transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; justify-content: space-between; }
.directory-card h3 { margin-top: 12px; }
.directory-card p, .directory-card dd { color: rgba(0,0,0,.68); line-height: 1.45; }
.directory-card dl { display: grid; gap: 4px; margin: 16px 0; }
.directory-card dt { font-size: 12px; color: rgba(0,0,0,.48); }
.directory-card dd { margin: 0 0 8px; font-size: 14px; }
.category-pill { display: inline-flex; padding: 4px 10px; border-radius: 980px; background: #f5f5f7; color: #6e6e73; font-size: 12px; }
.card-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.text-link { color: var(--blue-dark); font-size: 15px; }
.button.small { min-height: 34px; padding: 7px 13px; font-size: 14px; }
.review-hero { padding: 92px 24px 54px; text-align: center; }
.review-hero h1 { color: var(--ink); }
.review-hero > p:not(.kicker):not(.affiliate-inline) { max-width: 760px; margin: 0 auto 22px; color: rgba(0,0,0,.72); font-size: 21px; line-height: 1.38; }
.review-layout { padding: 24px 24px 96px; display: grid; grid-template-columns: minmax(0, 720px) 280px; justify-content: center; gap: 42px; }
.review-content { background: #fff; border-radius: 20px; padding: 38px; }
.review-content h2 { font-size: 34px; margin-top: 34px; }
.review-content h2:first-child { margin-top: 0; }
.review-content p, .review-content li { color: rgba(0,0,0,.72); font-size: 18px; line-height: 1.58; }
.review-aside { align-self: start; position: sticky; top: 72px; }
.score-card { background: #fff; border-radius: 16px; padding: 26px; border: 1px solid rgba(0,0,0,.06); box-shadow: rgba(0,0,0,.04) 0 2px 6px, rgba(0,0,0,.03) 0 12px 32px; display: grid; gap: 12px; }
.score-card span { color: #6e6e73; font-size: 13px; }
.score-card strong { font-size: 48px; line-height: 1; }
.article-shell.wide { max-width: 1040px; }
.comparison-section { padding-bottom: 96px; }
.table-wrap { overflow-x: auto; background: #fff; border-radius: 14px; border: 1px solid rgba(0,0,0,.06); box-shadow: rgba(0,0,0,.03) 0 1px 2px, rgba(0,0,0,.02) 0 8px 24px; }
table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 14.5px; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid rgba(0,0,0,.05); vertical-align: top; }
tbody tr:last-child td { border-bottom: none; }
tbody tr { transition: background .12s ease; }
tbody tr:hover { background: rgba(94,106,210,.035); }
th { color: #6e6e73; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; background: rgba(0,0,0,.015); }
td a { color: var(--blue-dark); }
code { background: #fff; border-radius: 5px; padding: 2px 5px; }
@media (max-width: 980px) { .directory-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } .review-layout { grid-template-columns: 1fr; } .review-aside { position: static; } }
@media (max-width: 620px) { .directory-grid { grid-template-columns: 1fr; } .directory-card { min-height: auto; } .review-content { padding: 26px; } }

.category-list-tile { min-height: 420px; justify-content: center; }
.mini-links { display: grid; gap: 8px; margin-top: 18px; }
.mini-links .text-link { display: block; }

/* Content publishing system */
.article-hero { padding: 86px 24px 42px; text-align: center; }
.article-hero h1 { color: var(--ink); max-width: 980px; margin-left: auto; margin-right: auto; }
.article-hero > p:not(.kicker):not(.affiliate-inline) { max-width: 780px; margin: 0 auto 24px; color: rgba(0,0,0,.72); font-size: 21px; line-height: 1.42; }
.content-article { padding: 30px 24px 96px; display: grid; grid-template-columns: minmax(0, 860px) 280px; gap: 38px; justify-content: center; }
.content-article article { background: #fff; border-radius: 22px; padding: clamp(26px, 4vw, 48px); }
.content-article h2 { font-size: 38px; margin-top: 48px; }
.content-article h2:first-child { margin-top: 0; }
.content-article p, .content-article li { color: rgba(0,0,0,.72); font-size: 18px; line-height: 1.62; }
.content-tool-grid { display: grid; gap: 14px; margin: 24px 0 36px; }
.content-tool-card { display: flex; justify-content: space-between; gap: 18px; padding: 22px; border-radius: 18px; background: #f5f5f7; align-items: center; }
.content-tool-card span { color: #6e6e73; font-size: 13px; }
.content-tool-card h3 { margin: 6px 0; font-size: 24px; }
.content-tool-card h3 a { color: var(--ink); }
.editor-note { margin-top: 10px; font-size: 15px !important; }
.content-aside { align-self: start; position: sticky; top: 72px; }
.faq-list details { border-top: 1px solid #e8e8ed; padding: 18px 0; }
.faq-list summary { cursor: pointer; font-weight: 600; font-size: 18px; }
.content-hub { padding: 72px 24px 96px; }
.content-hub-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.content-hub-card { background: #fff; border-radius: 16px; padding: 30px; min-height: 230px; border: 1px solid rgba(0,0,0,.06); box-shadow: rgba(0,0,0,.04) 0 1px 2px; transition: transform .2s ease, box-shadow .2s ease; }
.content-hub-card:hover { transform: translateY(-2px); box-shadow: rgba(0,0,0,.06) 0 2px 4px, rgba(0,0,0,.05) 0 12px 32px; }
.content-hub-card p { color: rgba(0,0,0,.68); line-height: 1.5; }
@media (max-width: 900px) { .content-article { grid-template-columns: 1fr; } .content-aside { position: static; } .content-hub-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .content-tool-card { flex-direction: column; align-items: flex-start; } }

.last-updated { color: rgba(0,0,0,.56) !important; font-size: 14px !important; margin-top: -8px !important; }
.review-mini-card { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 24px; border-radius: 20px; background: #f5f5f7; }
.review-mini-card h3 { margin: 12px 0 8px; }
.review-mini-card h3 a { color: var(--ink); }
.review-mini-card p { margin-bottom: 14px; }
.mini-pro-con { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.mini-pro-con strong { font-size: 13px; color: #6e6e73; }
.mini-pro-con ul { margin: 6px 0 0; padding-left: 18px; }
.mini-pro-con li { font-size: 14px !important; line-height: 1.35 !important; }
@media (max-width: 700px) { .review-mini-card { grid-template-columns: 1fr; } .mini-pro-con { grid-template-columns: 1fr; } }

.guide-strip { padding: 84px 24px; text-align: center; }
.guide-strip > div { max-width: 980px; margin: 0 auto; }
.guide-strip p:not(.kicker) { max-width: 680px; margin: 0 auto 24px; color: rgba(0,0,0,.68); font-size: 19px; line-height: 1.45; }
.guide-pill-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.guide-pill { display: inline-flex; padding: 10px 16px; border-radius: 980px; background: #fff; color: var(--blue-dark); box-shadow: rgba(0,0,0,.08) 0 1px 2px; font-size: 15px; }
.guide-pill:hover { text-decoration: none; background: #fdfdfd; }

.home-premium-band { padding: 40px 24px; background: #fff; }
.home-premium-band > div { max-width: 640px; margin: 0 auto; text-align: center; padding: 28px 32px; border-radius: 16px; background: #f7f8fb; border: 1px solid rgba(15,20,40,.07); }
.home-premium-band p { margin: 0 0 12px; color: var(--muted); font-size: 17px; line-height: 1.5; }
.home-premium-band .kicker { margin-bottom: 8px; }
.home-premium-band .home-premium-actions { display: flex; flex-direction: column; align-items: center; gap: 10px; margin: 18px 0 0; }
.home-premium-band .button { margin-right: 0; }
.home-premium-band .checkout-plain-link { display: inline; margin-top: 0; color: #5c6070; font-size: 13px; }

.button-secondary { background: transparent; color: var(--ink); border: 1px solid rgba(15,20,40,.16); }
.button-secondary:hover { background: rgba(94,106,210,.08); border-color: var(--blue); color: var(--blue-dark); text-decoration: none; }
.newsletter-panel .button-secondary, .scene-dark .button-secondary { color: #f4f6fb; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.32); }
.newsletter-panel .button-secondary:hover, .scene-dark .button-secondary:hover { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); }

.newsletter-panel { width: min(1100px, calc(100% - 32px)); margin: 40px auto 80px; padding: 40px; border-radius: 20px; color: #f7f8f8; background: linear-gradient(135deg,#12131a,#0b0c10); border: 1px solid rgba(255,255,255,.08); box-shadow: rgba(94,106,210,.15) 0 -20px 60px inset, rgba(0,0,0,.3) 0 12px 40px; display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.newsletter-panel span { color: #8a8f98; font-size: 13px; }
.newsletter-panel h2 { font-size: clamp(30px,4vw,46px); margin: 8px 0; }
.newsletter-panel p { max-width: 680px; color: #d0d6e0; line-height: 1.5; }
.newsletter-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 760px) { .newsletter-panel { flex-direction: column; align-items: flex-start; } .newsletter-actions { justify-content: flex-start; } }

.priority { display: inline-flex; padding: 4px 9px; border-radius: 980px; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.priority-high { background: #e8f5ff; color: #0066cc; }
.priority-medium { background: #fff4d6; color: #8a5a00; }
.priority-low { background: #f5f5f7; color: #6e6e73; }
.muted-small { color: #6e6e73; font-size: 12px; }

.template-block { white-space: pre-wrap; background: #f5f5f7; border-radius: 16px; padding: 22px; overflow-x: auto; color: #1d1d1f; line-height: 1.55; }

/* CTA action rows: keep paired buttons from visually merging */
.cta-actions{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
.cta-actions .cta-secondary:before{content:'·';margin-right:12px;color:#c7c7cc}

/* Review page pricing table */
.price-table{width:100%;max-width:520px;border-collapse:collapse;background:#f5f5f7;border-radius:14px;overflow:hidden}
.price-table th,.price-table td{padding:12px 16px;text-align:left;font-size:15px;border-bottom:1px solid #e8e8ed}
.price-table tr:last-child th,.price-table tr:last-child td{border-bottom:0}
.price-table th{color:#6e6e73;font-weight:600;width:38%}

/* Form success state */
.form-success{text-align:center;padding:30px 10px}
.form-success h3{margin-bottom:8px}

/* Premium pricing page */
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:1080px;margin:0 auto;align-items:stretch}
.pricing-grid.lanes-4{grid-template-columns:repeat(2,1fr);max-width:1100px}
.pricing-card{background:#fff;border-radius:14px;padding:32px 28px;display:flex;flex-direction:column;gap:14px;border:1px solid #e8e8ed}
.pricing-card.featured{border:2px solid var(--blue);position:relative;box-shadow:0 12px 40px rgba(0,113,227,.12)}
.pricing-flag{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--blue);color:#fff;font-size:12px;font-weight:600;letter-spacing:.04em;text-transform:uppercase;padding:4px 14px;border-radius:999px;margin:0}
.pricing-card h3{font-size:22px}
.pricing-price{font-size:42px;font-weight:700;margin:0}
.pricing-price span{font-size:16px;font-weight:400;color:#6e6e73}
.pricing-features{list-style:none;margin:0 0 auto;padding:0;display:flex;flex-direction:column;gap:10px;color:#333336;font-size:15px;line-height:1.45}
.pricing-features li:before{content:'✓';color:var(--blue);margin-right:8px;font-weight:700}
.pricing-card .button{text-align:center;margin-top:18px}
.pricing-faq{max-width:840px;margin:56px auto 0;display:flex;flex-direction:column;gap:26px}
.faq-item h3{margin-bottom:6px;font-size:19px}
.faq-item p{margin:0;color:var(--muted)}
@media(max-width:900px){.pricing-grid{grid-template-columns:1fr}}


/* Forms */
.form-group{display:grid;gap:6px;margin-bottom:18px}
.form-group label{font-size:14px;font-weight:600;color:#1d1d1f}
.form-group input,.form-group select,.form-group textarea{
  width:100%;min-height:46px;border:1px solid #d2d2d7;border-radius:12px;
  padding:10px 14px;font:inherit;font-size:16px;background:#fff;color:#1d1d1f;
}
.form-group textarea{min-height:110px;resize:vertical}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{
  outline:none;border-color:var(--blue);box-shadow:0 0 0 3px rgba(0,113,227,.18)}
.form-check{display:flex;gap:10px;align-items:flex-start;margin:6px 0 20px;font-size:14px;color:rgba(0,0,0,.68)}
.form-check input{margin-top:3px}
.form-success{text-align:center;padding:30px 10px}

/* Comparison tables (submit-tool etc.) */
.comparison-table{width:100%;max-width:720px;margin:0 auto 24px;border-collapse:collapse;background:#fff;border-radius:16px;overflow:hidden;box-shadow:rgba(0,0,0,.08) 0 1px 2px}
.comparison-table th,.comparison-table td{padding:14px 16px;text-align:left;border-bottom:1px solid #f5f5f7;font-size:15px}
.comparison-table th{background:#f5f5f7;color:#6e6e73;font-weight:600}
.comparison-table tr:last-child td{border-bottom:0}


/* Legacy page wrappers (leaderboard, submit, scorecard) */
.page-content{padding:64px 24px 96px}
.content-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:minmax(0,1.4fr) minmax(280px,1fr);gap:38px;align-items:start}
.content-column{background:#fff;border-radius:22px;padding:clamp(24px,3.5vw,42px);box-shadow:rgba(0,0,0,.08) 0 1px 2px}
.content-column h2{font-size:32px;margin-bottom:18px}
@media (max-width:900px){.content-grid{grid-template-columns:1fr}}

/* Leaderboard */
.highlight{display:inline-block;margin-top:14px;padding:10px 18px;border-radius:14px;background:rgba(255,255,255,.1);color:#fff;font-size:15px}
.secondary{margin-top:10px;color:rgba(255,255,255,.6);font-size:14px}
.button-outline{border:1px solid rgba(255,255,255,.6);color:#fff}
.button-outline:hover{background:#fff;color:#000;text-decoration:none}
.leaderboard{display:grid;gap:10px;margin:6px 0 26px}
.leaderboard-row{display:grid;grid-template-columns:56px 1fr auto;gap:16px;align-items:center;padding:16px 18px;border-radius:16px;background:#f5f5f7}
.leaderboard-row.rank-1{background:#fff8e6;border:1px solid #f0d896}
.leaderboard-row.rank-2{background:#f4f4f6;border:1px solid #dcdce1}
.leaderboard-row.rank-3{background:#fdefe4;border:1px solid #ecc9a3}
.leaderboard-row .rank{font-size:20px;font-weight:700;color:#6e6e73}
.rank-1 .rank{color:#b8860b}
.leaderboard-row .tool-info b{display:block;font-size:17px}
.leaderboard-row .tool-info span{color:#6e6e73;font-size:13px}
.leaderboard-row .score{text-align:right}
.leaderboard-row .score b{display:block;font-size:18px;color:var(--blue-dark)}
.leaderboard-row .score span{font-size:12px;color:#6e6e73}


/* Newsletter CTA band */
.newsletter-cta{width:min(1100px,calc(100% - 32px));margin:0 auto 80px;padding:34px;border-radius:24px;background:#fff;box-shadow:rgba(0,0,0,.10) 0 8px 30px}
.cta-grid{display:flex;justify-content:space-between;align-items:center;gap:24px;flex-wrap:wrap}
.cta-content h3{margin-bottom:6px}
.cta-content p{color:rgba(0,0,0,.68);max-width:520px}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.cta-button{display:inline-flex;min-height:44px;align-items:center;padding:8px 20px;border-radius:980px;background:var(--blue);color:#fff;font-size:16px}
.cta-button:hover{background:var(--blue-light);text-decoration:none;box-shadow:0 4px 20px rgba(113,112,255,.35)}
.cta-secondary{color:var(--blue-dark);font-size:15px}
.cta-secondary:before{content:'·';margin-right:12px;color:#c7c7cc}

/* Leaderboard rows: stats + upvotes + actions */
.tool-stats{display:flex;gap:14px;color:#6e6e73;font-size:12px;margin-top:4px}
.tool-stats .upvotes b,.tool-stats .clicks b{color:#1d1d1f}
.upvote-btn{border:1px solid #d2d2d7;background:#fff;border-radius:980px;padding:6px 14px;font-size:13px;color:var(--blue-dark);cursor:pointer}
.upvote-btn:hover{background:#e8f2ff;text-decoration:none}
.tool-actions a{font-size:14px;color:var(--blue-dark);margin-left:10px}
.category-links{display:flex;gap:8px;flex-wrap:wrap;margin:18px 0}
.category-links a{padding:6px 13px;border-radius:980px;background:#f5f5f7;color:#6e6e73;font-size:13px}
.category-links a:hover{background:#e8e8ed;text-decoration:none}
.summary{color:rgba(0,0,0,.68);line-height:1.5}


/* Best plan recommendation card */
.best-plan-card{margin:22px 0;padding:20px 22px;border-radius:16px;background:#e8f2ff;border:1px solid #cfe4ff}
.best-plan-card span{display:block;color:#0066cc;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:.5px;margin-bottom:6px}
.best-plan-card strong{font-size:16px;line-height:1.5}


/* Benchmark evidence system */
.benchmark-policy{padding:0 24px 64px;background:var(--light)}
.benchmark-policy>div{max-width:1040px;margin:0 auto;padding:28px 32px;border-radius:22px;background:#101012;color:#fff}
.benchmark-policy h2{font-size:32px;margin-bottom:8px}.benchmark-policy p{color:rgba(255,255,255,.72);font-size:17px;line-height:1.5}
.benchmark-rules{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}.benchmark-rules span{padding:7px 11px;border-radius:999px;background:rgba(255,255,255,.1);font-size:12px;color:rgba(255,255,255,.8)}
.benchmark-section{padding:72px 24px 88px}.benchmark-section>.table-wrap,.benchmark-section>.benchmark-caveat{max-width:1180px;margin-left:auto;margin-right:auto}
.benchmark-source-grid{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.benchmark-source-card{position:relative;padding:28px;border-radius:20px;background:#fff;box-shadow:rgba(0,0,0,.08) 0 1px 2px}
.benchmark-source-card h3{padding-right:42px}.benchmark-source-card p{color:rgba(0,0,0,.68);line-height:1.5}
.benchmark-ref{position:absolute;right:22px;top:22px;color:#6e6e73;font-size:13px}
.benchmark-caveat{margin-top:18px;padding:16px 18px;border-left:3px solid #f5a623;background:#fff8e6;color:#5f4a14;font-size:14px;line-height:1.5}
.benchmark-table code{white-space:nowrap}.benchmark-use-grid{max-width:1180px}
.review-benchmark{margin:24px 0;padding:22px;border-radius:18px;background:#f5f7fa;border:1px solid #e2e6eb}
.review-benchmark-head{display:flex;justify-content:space-between;gap:16px;align-items:flex-start}.review-benchmark h3{font-size:22px;margin-bottom:6px}
.review-benchmark .benchmark-meta{color:#6e6e73;font-size:13px}.review-benchmark-score{font-size:30px;font-weight:700;white-space:nowrap}
.review-benchmark p{font-size:15px!important;line-height:1.5!important;margin:12px 0 0}.review-benchmark a{color:var(--blue-dark)}
.evidence-label{display:inline-flex;padding:4px 9px;border-radius:999px;background:#e8f2ff;color:#0066cc;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.4px}
@media(max-width:760px){.benchmark-source-grid{grid-template-columns:1fr}.review-benchmark-head{flex-direction:column}.benchmark-table{min-width:850px}}

.score-meter{width:100%;height:8px;border-radius:999px;background:#e8e8ed;overflow:hidden;margin:3px 0 7px}
.score-meter i{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,#0071e3,#2997ff)}

.decision-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin:16px 0 28px}
.decision-grid>div{padding:16px;border-radius:14px;background:#f5f5f7}
.decision-grid strong{display:block;font-size:14px;margin-bottom:5px}.decision-grid p{font-size:14px!important;line-height:1.45!important;margin:0!important;color:#5f5f64!important}
@media(max-width:700px){.decision-grid{grid-template-columns:1fr}}

.benchmark-table th button{border:0;background:transparent;padding:0;color:inherit;font:inherit;font-weight:600;cursor:pointer;text-align:left}
.benchmark-table th button:hover{color:var(--blue-dark)}
.benchmark-table th button[aria-sort="ascending"]:after{content:' ↑'}
.benchmark-table th button[aria-sort="descending"]:after{content:' ↓'}

@media print{.global-nav,.footer,.social-sharing,.share-row,.newsletter-cta,.newsletter-panel,.button{display:none!important}body,.scene,.page-content{background:#fff!important;color:#000!important}.content-grid{display:block}.content-column{box-shadow:none;border:1px solid #ddd;margin-bottom:18px;break-inside:avoid}a{color:#000!important;text-decoration:none!important}}

.official-source-card{margin:16px 0 22px;padding:20px 22px;border-radius:16px;background:#f5f7fa;border:1px solid #e2e6eb}
.official-source-card>span{display:block;color:#0066cc;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.45px;margin-bottom:8px}
.official-source-card p{font-size:15px!important;line-height:1.5!important}.official-source-links{display:flex;flex-wrap:wrap;gap:8px;margin:12px 0}
.official-source-links a{padding:7px 11px;border-radius:999px;background:#fff;color:var(--blue-dark);font-size:13px;box-shadow:rgba(0,0,0,.08) 0 1px 2px}
.official-source-card details{margin:12px 0;border-top:1px solid #dfe3e8;padding-top:12px}.official-source-card summary{cursor:pointer;font-weight:600;font-size:14px}.official-source-card li{font-size:14px!important;line-height:1.45!important}.official-source-card .source-notes{color:#6e6e73!important;font-size:13px!important}.official-source-card.pending{background:#fff8e6;border-color:#ead9a0}

.comparison-evidence{margin:34px 0;padding:28px;border-radius:20px;background:#fff;box-shadow:rgba(0,0,0,.08) 0 1px 2px}
.comparison-evidence h2{font-size:36px;margin:0 0 18px}.comparison-evidence h3{font-size:24px;margin-top:24px}.comparison-evidence .decision-grid>div{background:#f5f5f7}.comparison-evidence .decision-grid p{font-size:14px!important;max-height:10em;overflow:auto}.comparison-evidence .official-source-links{margin-top:8px}

.tool-pick{margin:18px 0;padding:22px;border-radius:16px;background:#fff;box-shadow:rgba(0,0,0,.08) 0 1px 2px}
.tool-pick .pick-head{display:flex;justify-content:space-between;align-items:baseline;gap:12px;flex-wrap:wrap}
.tool-pick h3{font-size:22px;margin:0}.tool-pick .pick-score{font-size:13px;color:#0066cc;font-weight:600}
.tool-pick p{font-size:14px;line-height:1.5;margin:10px 0}.tool-pick .pick-meta{color:rgba(0,0,0,.56);font-size:12px}
.tool-pick .pick-actions{display:flex;gap:14px;align-items:center;margin-top:8px}

/* visual-polish-2026 */
@media (max-width:640px){
  .hero .actions,.actions{gap:14px}
  .hero-copy h1{font-size:34px}
}
.kicker{color:#9aa4b2}
.scene-dark .kicker{color:#aab4c0}
.benchmark-policy .guide-pill,.scene-dark .pill{color:#d5dae2;border-color:rgba(255,255,255,.35)}
.footer a{color:rgba(0,0,0,.72)}
.benchmark-policy p,.benchmark-policy li{font-size:15px;line-height:1.7}
.pricing-flag.live{position:static;display:inline-block;margin-bottom:8px}

/* Masterpiece pass: interaction polish */
a, button { transition: color .15s ease, opacity .15s ease; }
:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; border-radius: 4px; }
.text-link { font-weight: 500; }
.text-link:hover { color: var(--violet); }
::selection { background: rgba(113,112,255,.35); }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .directory-card:hover, .content-hub-card:hover, .button-blue:hover { transform: none; } }

/* Masterpiece pass v2: dark-scene readability */
.scene-dark p, .scene-dark li { color: rgba(240,242,247,.82); }

/* Premium pass 2: rhythm & details */
.content-hub { padding-top: 72px; padding-bottom: 24px; }
.section-title { letter-spacing: -0.8px; font-weight: 500; }
.article-shell h2, .content-article h2 { font-size: clamp(26px, 3.4vw, 34px); letter-spacing: -0.9px; font-weight: 500; margin-top: 44px; }
.article-shell h3, .content-article h3 { font-weight: 600; letter-spacing: -0.3px; }
img { max-width: 100%; height: auto; }
@media (max-width: 760px) { .article-shell h2, .content-article h2 { margin-top: 32px; } }

/* Masterpiece pass: ambient hero glow */
.scene-dark { position: relative; overflow: hidden; }
.scene-dark::before { content: ''; position: absolute; top: -220px; left: 50%; transform: translateX(-50%); width: 900px; height: 520px; background: radial-gradient(ellipse at center, rgba(94,106,210,.28), rgba(113,112,255,.10) 45%, transparent 70%); filter: blur(60px); pointer-events: none; }
.scene-dark > * { position: relative; z-index: 1; }


/* Premium pass 2: rhythm & details */
.content-hub { padding-top: 72px; padding-bottom: 24px; }
.section-title { letter-spacing: -0.8px; font-weight: 500; }
.article-shell h2, .content-article h2 { font-size: clamp(26px, 3.4vw, 34px); letter-spacing: -0.9px; font-weight: 500; margin-top: 44px; }
.article-shell h3, .content-article h3 { font-weight: 600; letter-spacing: -0.3px; }
img { max-width: 100%; height: auto; }
@media (max-width: 760px) { .article-shell h2, .content-article h2 { margin-top: 32px; } }


/* Shortlist UX */
.shortlist-btn {
  border: 1px solid rgba(94,106,210,.28);
  background: rgba(94,106,210,.08);
  color: #4c56b8;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.shortlist-btn:hover { transform: translateY(-1px); border-color: rgba(94,106,210,.55); background: rgba(94,106,210,.14); }
.shortlist-btn[aria-pressed="true"] { background: rgba(34,197,94,.10); border-color: rgba(34,197,94,.35); color: #047857; }
#shortlist-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: linear-gradient(135deg,#5e6ad2,#7170ff);
  color: #fff;
  box-shadow: 0 18px 48px rgba(94,106,210,.35);
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.shortlist-empty { border: 1px dashed rgba(94,106,210,.35); border-radius: 18px; padding: 28px; background: rgba(94,106,210,.06); }


/* Auto table of contents */
.auto-toc {
  max-width: 980px;
  margin: 0 auto 28px;
  padding: 14px 16px;
  border: 1px solid rgba(94,106,210,.16);
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 40px rgba(8,9,10,.06);
  border-radius: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.auto-toc span { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: rgba(0,0,0,.48); font-weight: 700; margin-right: 6px; }
.auto-toc a { color: #4c56b8; text-decoration: none; font-size: 13px; font-weight: 650; padding: 7px 9px; border-radius: 999px; background: rgba(94,106,210,.07); }
.auto-toc a:hover { background: rgba(94,106,210,.14); }


/* Viral/share utility surfaces */
.viral-controls { display:grid; grid-template-columns:repeat(3,minmax(180px,1fr)); gap:14px; margin-top:14px; }
.viral-controls label, .viral-control label { display:flex; flex-direction:column; gap:7px; font-size:13px; font-weight:700; color:rgba(0,0,0,.62); }
.viral-controls select, .viral-control input { border:1px solid rgba(94,106,210,.22); border-radius:10px; padding:12px; font:inherit; background:#fff; }
.viral-result-card { margin-top:28px; padding:28px; border-radius:22px; border:1px solid rgba(94,106,210,.18); background:linear-gradient(180deg,#fff,rgba(94,106,210,.06)); box-shadow:0 24px 70px rgba(8,9,10,.08); }
.viral-result-card > span, .stack-gallery-block > div > p:first-child { text-transform:uppercase; letter-spacing:.12em; font-size:12px; font-weight:800; color:#5e6ad2; }
.stack-gallery-block { display:grid; grid-template-columns:minmax(240px,.55fr) 1fr; gap:28px; align-items:start; margin:58px 0; }
.vendor-badge-preview { display:inline-flex; flex-direction:column; gap:2px; border:1px solid rgba(94,106,210,.28); border-radius:14px; padding:12px 14px; background:linear-gradient(135deg,#08090a,#151626); color:#fff; box-shadow:0 18px 42px rgba(94,106,210,.18); }
.vendor-badge-preview small { color:rgba(255,255,255,.72); }
.content-hub-card textarea { width:100%; min-height:84px; border:1px solid rgba(0,0,0,.12); border-radius:10px; padding:10px; font-size:12px; background:#f8f8fb; }
@media (max-width: 800px) { .viral-controls, .stack-gallery-block { grid-template-columns:1fr; } }


/* Stronger shortlist contrast */
.shortlist-btn { color:#343a8f; border-color:rgba(76,86,184,.42); background:rgba(94,106,210,.12); }
.shortlist-btn:hover { color:#20276f; border-color:rgba(76,86,184,.72); background:rgba(94,106,210,.20); }
.content-hub-card label { font-weight:650; color:rgba(0,0,0,.72); }
.content-hub-card input[type="checkbox"] { accent-color:#5e6ad2; margin-right:7px; }


/* Final shortlist contrast hardening */
button.shortlist-btn, .card-actions button.shortlist-btn {
  color:#25308f !important;
  border:1px solid rgba(37,48,143,.55) !important;
  background:#eef0ff !important;
  opacity:1 !important;
}
button.shortlist-btn:hover, .card-actions button.shortlist-btn:hover { color:#12195f !important; background:#e0e4ff !important; }
button.shortlist-btn[aria-pressed="true"] { color:#065f46 !important; background:#dcfce7 !important; border-color:rgba(6,95,70,.45) !important; }


/* Viral shortlist final visual prominence */
button.shortlist-btn, .card-actions button.shortlist-btn {
  color:#1e2a8a !important;
  border-color:#5e6ad2 !important;
  background:#e1e6ff !important;
  box-shadow:0 8px 18px rgba(94,106,210,.13) !important;
}


/* Stack share cards and conversion surfaces */
.stack-layout { display:grid; grid-template-columns:minmax(280px,.42fr) 1fr; gap:30px; align-items:start; }
.stack-share-card { border-radius:28px; padding:28px; color:#fff; background:radial-gradient(circle at 80% 12%, rgba(94,106,210,.55), transparent 34%), linear-gradient(135deg,#08090a,#17182b 62%,#32266f); box-shadow:0 28px 80px rgba(8,9,10,.22); border:1px solid rgba(255,255,255,.14); }
.stack-share-card span { color:#aeb7ff; text-transform:uppercase; letter-spacing:.14em; font-size:12px; font-weight:900; }
.stack-share-card h2 { color:#fff; font-size:34px; line-height:1.04; margin:12px 0; }
.stack-share-card p, .stack-share-card small { color:rgba(255,255,255,.75); }
.stack-share-card ol { margin:18px 0 20px; padding-left:24px; }
.stack-share-card li { margin:9px 0; font-size:20px; font-weight:800; }
.stack-entry-module { margin:34px auto; max-width:980px; }
.newsletter-card form { display:flex; gap:12px; flex-wrap:wrap; align-items:end; }
.newsletter-card input { border:1px solid rgba(94,106,210,.22); border-radius:10px; padding:12px; min-width:260px; }
button.shortlist-btn, .card-actions button.shortlist-btn { color:#1e2a8a !important; border-color:#5e6ad2 !important; background:#e1e6ff !important; box-shadow:0 8px 18px rgba(94,106,210,.13) !important; opacity:1 !important; }
@media (max-width: 900px) { .stack-layout { grid-template-columns:1fr; } }


/* Newsletter label contrast polish */
.newsletter-card > span { color:#4f5cc8 !important; font-weight:900; }


/* Conversion growth surfaces */
.stack-score { margin:18px 0; border:1px solid rgba(94,106,210,.22); border-radius:20px; padding:18px; background:linear-gradient(180deg,#fff,#eef0ff); box-shadow:0 18px 48px rgba(94,106,210,.12); }
.stack-score span, .share-copy-panel > span { display:block; color:#4f5cc8; text-transform:uppercase; letter-spacing:.12em; font-size:12px; font-weight:900; margin-bottom:8px; }
.stack-score strong { font-size:42px; color:#111827; }
.share-copy-panel { margin-top:22px; padding:18px; border-radius:18px; border:1px solid rgba(94,106,210,.18); background:#f7f8ff; display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.free-alt-panel { margin:26px 0; }
.conversion-verdict-bar { margin:24px 0; padding:18px; border-radius:18px; border:1px solid rgba(94,106,210,.18); background:linear-gradient(135deg,#eef0ff,#fff); display:grid; grid-template-columns:repeat(3,minmax(160px,1fr)); gap:12px; }
.conversion-verdict-bar strong { display:block; color:#111827; }
.correction-module { margin:34px auto; max-width:980px; }
@media (max-width: 800px) { .conversion-verdict-bar { grid-template-columns:1fr; } .share-copy-panel { display:grid; } }


/* Resource library checklist polish */
.resource-checklist ul { list-style:none; padding-left:0; display:grid; gap:12px; }
.resource-checklist li { padding:10px 12px; border:1px solid rgba(94,106,210,.14); border-radius:12px; background:#f7f8ff; }
.resource-checklist input[type="checkbox"] { transform:scale(1.15); margin-right:8px; accent-color:#5e6ad2; }
@media print { .global-nav, .footer, .share-row, .related-next-steps, .button { display:none !important; } body { background:#fff !important; } .scene-dark { background:#fff !important; color:#111827 !important; } .scene-dark h1, .scene-dark p { color:#111827 !important; } .content-hub-card, .score-card { box-shadow:none !important; border:1px solid #d1d5db !important; break-inside:avoid; } }


/* Premium conversion panel polish */
.premium-conversion-panel { border: 1px solid rgba(94,106,210,.24); box-shadow: 0 24px 70px rgba(20,24,60,.14); }
.premium-conversion-panel span { color: #4f46e5; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.premium-conversion-panel .newsletter-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
@media (max-width: 760px) { .premium-conversion-panel .newsletter-actions { justify-content: flex-start; } }


/* ============================================================
   UI polish pass 2026-08-24 — depth, rhythm, mobile hardening
   ============================================================ */

/* Hero atmosphere: spotlight gradient instead of flat black */
.scene-dark { position: relative; }
.scene-dark::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(720px 340px at 50% -8%, rgba(113,112,255,.14), transparent 70%); }
.scene-dark > * { position: relative; z-index: 1; }

/* Typography breathing room */
h1 { line-height: 1.06; letter-spacing: -2px; }
.subhead { line-height: 1.5; color: rgba(255,255,255,.88); }
.kicker.light { font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; }
.kicker:not(.light) { font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; }

/* Card polish: crisp borders + tighter directional shadows */
.content-hub-card, .score-card, .pricing-card {
  border: 1px solid rgba(15,20,40,.08);
  box-shadow: 0 1px 2px rgba(10,15,35,.05), 0 12px 32px -18px rgba(10,15,35,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.content-hub-card:hover, .score-card:hover { transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(10,15,35,.06), 0 20px 44px -18px rgba(60,60,180,.28); }

/* Buttons: stronger presence */
.button { padding: 12px 24px; border-radius: 10px; }
.button-blue { box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 8px 22px -10px rgba(94,106,210,.55); }
.button-blue:hover { transform: translateY(-1px); box-shadow: 0 10px 26px -8px rgba(113,112,255,.6); }
.button-ghost-dark { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.28); color: #e6e9ff; }

/* Tables: decision-matrix look with sticky header + hover rows */
.table-wrap { border-radius: 14px; border: 1px solid rgba(15,20,40,.1); overflow: auto;
  box-shadow: 0 1px 2px rgba(10,15,35,.05), 0 16px 36px -24px rgba(10,15,35,.25); background: #fff; }
.table-wrap table { min-width: 560px; }
thead th, tr:first-child th, tr:first-child td { position: sticky; top: 0; background: #f7f8fb; backdrop-filter: blur(8px); }
tbody tr, table tr:not(:first-child) { transition: background .15s ease; }
table tbody tr:hover { background: #f7f8fd; }
td, th { padding: 12px 14px; vertical-align: top; }

/* Review sidebar scorecard lift */
.score-card { border-radius: 14px; }
.score-card span { text-transform: uppercase; letter-spacing: .1em; font-size: 12px; font-weight: 700; color: #4c56b8; }

/* Evidence/source pill links on review pages larger tap targets */
.review-hero .last-updated, p.last-updated { font-size: 14px; opacity: .85; }

/* Mobile hero button stacking to prevent overflow */
@media (max-width: 480px) {
  .hero { grid-template-columns: 1fr; padding: 56px 18px 64px; }
  .hero-copy { justify-self: center; }
  .actions { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; max-width: 360px; margin: 0 auto; }
  .actions .button { width: 100%; }
  h1 { font-size: clamp(30px, 8.5vw, 48px); letter-spacing: -1.2px; padding-right: 4px; }
  .hero-copy { padding-left: 2px; padding-right: 2px; }
  .subhead { font-size: 18px; }
}
@media (max-width: 640px) {
  .content-hub-grid, .workflow-cards, .product-grid { grid-template-columns: 1fr !important; }
  .featured-guide { grid-template-columns: 1fr; gap: 34px; }
  body { font-size: 16.5px; }
  .nav-cta { background: var(--blue); color: #fff; font-weight: 700; }
  .nav-links a[href*="subscribe"], .nav-links a[href*="newsletter"] { opacity: .68; font-weight: 400; }
  .newsletter-panel:not(.premium-conversion-panel) .button-blue {
    background: transparent;
    border: 1px solid rgba(255,255,255,.28);
    color: #f7f8f8;
    box-shadow: none;
  }
  .premium-conversion-panel .button-blue { font-weight: 700; }
}

/* Focus visibility for keyboard users */
a:focus-visible, .button:focus-visible { outline: 2px solid var(--blue-light); outline-offset: 2px; border-radius: 10px; }

/* Smooth micro-interaction baseline */
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }


/* Mobile hardening round 2 */
@media (max-width: 640px) {
  .intro-strip p { font-size: clamp(20px, 5.6vw, 28px) !important; padding: 0 4px; }
  html, body { max-width: 100%; overflow-x: hidden; }
}


/* Mobile hardening round 3 — authoritative stacking */
@media (max-width: 640px) {
  .actions { flex-direction: column !important; align-items: stretch !important; width: 100% !important; max-width: 380px !important; margin-left: auto !important; margin-right: auto !important; }
  .actions .button { width: 100%; }
}


/* Pricing watch promo pill contrast */
.pill-promo{background:#fef3c7 !important;color:#92400e !important;border:1px solid #f59e0b;font-weight:700;padding:2px 10px;border-radius:999px;display:inline-block}


/* Print polish for migration guides and resource worksheets */
@media print{
  @page{margin:0.55in}
  html,body{font-size:11pt;line-height:1.45;background:#fff!important;color:#111!important}
  .scene-dark,.hero,.review-hero{background:#fff!important;color:#111!important;padding:0!important}
  .scene{padding:0!important}
  .subhead,.muted,.last-updated{color:#333!important}
  .article-shell,.article-shell.wide{max-width:none!important;padding:0!important;margin:0!important}
  .content-hub-grid,.directory-grid,.decision-grid{display:block!important}
  .content-hub-card,.directory-card,.score-card,.comparison-evidence,.table-wrap{break-inside:avoid;box-shadow:none!important;border:1px solid #bbb!important;background:#fff!important;margin:12pt 0!important;padding:12pt!important}
  table{width:100%!important;border-collapse:collapse!important;font-size:9.5pt!important}
  th,td{border:1px solid #ccc!important;padding:6pt!important;vertical-align:top!important}
  .pill,.category-pill{border:1px solid #999!important;color:#111!important;background:#fff!important}
  h1{font-size:24pt!important;line-height:1.05!important;margin:0 0 10pt!important}
  h2{font-size:16pt!important;break-after:avoid;margin-top:18pt!important}
  h3{font-size:13pt!important;break-after:avoid}
  .toc,.on-this-page,.actions,.card-actions,.nav-links,.nav-cta,.global-nav,.footer,.button,.social-sharing,.share-row,script{display:none!important}
  a[href^="http"]::after{content:" (" attr(href) ")";font-size:8pt;color:#444}
}


/* ============================================================
   SPACING NORMALIZATION PASS — consistent vertical rhythm
   Scale: 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 86
   ============================================================ */

/* 1. Unified section padding: every scene section breathes the same */
.scene { padding: 0; }
.content-hub, .scene-light:not(.hero) { }
.article-shell > h2:first-child, .article-shell > p:first-child { margin-top: 0; }

/* 2. Consistent gaps between stacked cards inside content sections
   (fixes Premium scope->benefit collapse and similar tight pairs) */
.content-hub .score-card + .score-card,
.content-hub section.score-card,
.article-shell > .score-card { margin-top: 32px; }
.content-hub-grid + section.score-card,
.content-hub-grid ~ section.score-card { margin-top: 28px; }

/* 3. Buying-decision grid was densest block on reviews — give it room */
.decision-grid { gap: 16px; margin: 28px 0 36px; }
.decision-grid > div { padding: 20px; line-height: 1.5; }

/* 4. Footer breathing room (was compressed vs airy page bodies) */
.footer { margin-top: 56px; padding-top: 44px; padding-bottom: 56px; }

/* 5. Normalize hero paddings to one scale step (86px family) */
.hero { padding-top: 86px; padding-bottom: 86px; min-height: auto; }
.compact-hero { min-height: auto; padding-top: 72px; padding-bottom: 72px; }

/* 6. Table + disclaimer spacing at guide bottoms (was cramped) */
.table-wrap { margin-bottom: 32px; }
.article-shell > p.benchmark-caveat,
.benchmark-caveat { margin-top: 8px; margin-bottom: 40px; }

/* 7. Card grid gutters unified at 20px */
.content-hub-grid, .directory-grid, .decision-grid { gap: 20px; }

/* 8. FAQ list rhythm */
.faq-list details { padding: 14px 0; }
.faq-list { margin-bottom: 48px; }

/* 9. Section heading rhythm: consistent space above/below h2 blocks */
.article-shell h2 { margin-bottom: 16px; }
.article-shell h3 { margin-top: 28px; margin-bottom: 10px; }

/* 10. Newsletter/CTA panels: consistent standoff from neighbors */
.newsletter-panel { margin-top: 56px; margin-bottom: 96px; }

@media (max-width: 640px) {
  .hero { padding-top: 56px; padding-bottom: 56px; }
  .compact-hero { padding-top: 48px; padding-bottom: 48px; }
  .footer { margin-top: 40px; padding-top: 32px; padding-bottom: 40px; }
  .decision-grid { gap: 12px; margin: 20px 0 28px; }
  .newsletter-panel { margin-top: 40px; margin-bottom: 64px; padding: 28px 22px; }
}

@media (max-width: 640px) {
  .hero-visual, .hero-mockup { max-width: 100%; overflow: hidden; }
  .hero-visual *, .hero-mockup * { max-width: 100%; }
  /* category pill rows were over-gapped on mobile */
  .scene .pill-row, .category-pills { gap: 8px !important; }
}


/* Category hub lateral navigation */
.category-related-section { padding: 0 24px 48px; }
.category-related { max-width: 1040px; margin: 0 auto; padding: 24px 0 0; border-top: 1px solid rgba(0,0,0,.08); }
.category-related .kicker { margin-bottom: 12px; }
.guide-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.guide-pill { display: inline-flex; align-items: center; min-height: 36px; padding: 8px 14px; border: 1px solid rgba(79,92,200,.22); border-radius: 999px; color: #3f4aa8; background: #f5f6ff; text-decoration: none; font-size: 14px; }
.guide-pill:hover { background: #e9ebff; border-color: rgba(79,92,200,.42); }
@media (max-width: 640px) { .category-related-section { padding: 0 18px 36px; } }

@media (max-width: 620px) {
  .directory-card .card-actions { flex-wrap: wrap; justify-content: flex-start; gap: 8px; }
  .directory-card .card-actions .text-link,
  .directory-card .card-actions .button,
  .directory-card .card-actions button { min-width: 0; }
}


/* Public evidence ledger */
.evidence-hero { max-width: 960px; margin: 0 auto; padding: 88px 28px 72px; text-align: center; }
.evidence-principles { max-width: 1040px; margin: 0 auto 28px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.evidence-principles > div { padding: 20px; border: 1px solid rgba(79,92,200,.16); border-radius: 16px; background: #f8f9ff; }
.evidence-principles strong, .evidence-principles span { display: block; }
.evidence-principles strong { color: #28358f; margin-bottom: 7px; }
.evidence-principles span { color: #5f6475; font-size: 14px; line-height: 1.45; }
.evidence-table td { vertical-align: top; line-height: 1.45; }
.evidence-table .muted { font-size: 13px; }
.evidence-next { margin-top: 40px; }
@media (max-width: 700px) { .evidence-principles { grid-template-columns: 1fr; } .evidence-hero { padding: 56px 20px 48px; } }

.evidence-table-hint { display: none; }
@media (max-width: 700px) { .evidence-table-hint { display: block; margin: 0 0 10px; color: #5f6475; font-size: 13px; font-style: italic; } }


/* Editorial methodology page */
.methodology-hero { max-width: 960px; margin: 0 auto; padding: 88px 28px 72px; text-align: center; }
.methodology-block { max-width: 1040px; margin: 0 auto 64px; }
.methodology-block > .kicker { margin-bottom: 12px; }
.methodology-block h2 { margin: 0 0 16px; }
.methodology-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 24px; }
.methodology-grid .score-card { min-height: 150px; }
.methodology-list { display: grid; gap: 14px; padding-left: 24px; line-height: 1.55; }
.methodology-next { margin-top: 12px; }
@media (max-width: 760px) { .methodology-grid { grid-template-columns: 1fr; } .methodology-hero { padding: 56px 20px 48px; } .methodology-block { margin-bottom: 48px; } }

@media (max-width: 640px) {
  .methodology-hero h1, .evidence-hero h1 { max-width: 100%; overflow-wrap: break-word; word-break: normal; }
  .methodology-hero .button, .evidence-hero .button { margin: 4px 2px; }
}

.evidence-link { margin: 28px 0 0; padding: 14px 18px; border-left: 3px solid #5663d6; background: #f4f5ff; border-radius: 0 12px 12px 0; }
.evidence-link a { color: #35419e; font-weight: 600; text-decoration: none; }
.evidence-link a:hover { text-decoration: underline; }

.evidence-link { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.evidence-badge { display: inline-block; padding: 4px 9px; border-radius: 999px; background: #e2e5ff; color: #35419e; font-size: 12px; font-weight: 700; white-space: nowrap; }
@media (max-width: 620px) { .evidence-link { align-items: flex-start; gap: 8px; } .evidence-link a { flex-basis: 100%; } }

.review-benchmark-score { display: grid; justify-items: end; gap: 2px; line-height: 1.05; text-align: right; }
.review-benchmark-score strong { font-size: 30px; }
.review-benchmark-score span { font-size: 24px; font-weight: 700; }
.review-benchmark-score small, .review-benchmark-score em { color: #6e6e73; font-size: 11px; font-style: normal; font-weight: 600; letter-spacing: .01em; }
@media (max-width: 620px) { .review-benchmark-head { align-items: flex-start; gap: 14px; } .review-benchmark-score { min-width: 92px; } .review-benchmark-score strong { font-size: 25px; } .review-benchmark-score span { font-size: 20px; } }


/* Decision confidence utility */
.confidence-hero { max-width: 960px; margin: 0 auto; padding: 88px 28px 72px; text-align: center; }
.confidence-explainer { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin: 0 0 28px; }
.confidence-explainer > div { padding: 18px; border: 1px solid #e4e5ed; border-radius: 16px; background: #fff; }
.confidence-explainer strong, .confidence-explainer span { display: block; }
.confidence-explainer strong { margin-bottom: 7px; }
.confidence-explainer span { color: #5f6475; font-size: 14px; line-height: 1.45; }
.confidence-note { padding: 16px 18px; border-left: 3px solid #5663d6; background: #f4f5ff; border-radius: 0 12px 12px 0; }
.confidence-search { display: block; margin: 30px 0 18px; font-weight: 700; }
.confidence-search input { display: block; width: 100%; box-sizing: border-box; margin-top: 9px; padding: 14px 16px; border: 1px solid #d9dbe6; border-radius: 12px; font: inherit; }
.confidence-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.confidence-card { padding: 20px; border: 1px solid #e3e4ec; border-radius: 18px; background: #fff; }
.confidence-card[hidden] { display: none; }
.confidence-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.confidence-card h3 { margin: 5px 0 0; }
.confidence-pill { flex: 0 0 auto; padding: 6px 9px; border-radius: 999px; font-size: 11px; white-space: nowrap; }
.confidence-high { color: #146c43; background: #dff5e8; }
.confidence-moderate { color: #845b00; background: #fff1c7; }
.confidence-limited { color: #9b3030; background: #ffe0e0; }
.confidence-meter { height: 7px; margin: 18px 0 8px; background: #ececf3; border-radius: 99px; overflow: hidden; }
.confidence-meter span { display: block; height: 100%; background: linear-gradient(90deg,#f2b84b,#5663d6); border-radius: inherit; }
.confidence-score { margin: 0 0 10px; color: #5f6475; font-size: 13px; }
.confidence-score strong { color: #20212a; font-size: 18px; }
.confidence-facts { margin: 0; padding-left: 18px; color: #5f6475; font-size: 13px; line-height: 1.55; }
.confidence-facts a { color: #35419e; font-weight: 600; }
.confidence-empty { padding: 25px; text-align: center; color: #5f6475; }
.confidence-next { margin-top: 34px; }
@media (max-width: 760px) { .confidence-hero { padding: 56px 20px 48px; } .confidence-explainer, .confidence-grid { grid-template-columns: 1fr; } .confidence-card-head { flex-direction: column; } }

@media (max-width: 760px) {
  .confidence-hero h1, .confidence-hero .subhead { max-width: 100%; overflow-wrap: anywhere; word-break: normal; }
  .confidence-hero h1 { font-size: clamp(36px, 10vw, 52px); line-height: 1.02; }
  .confidence-hero .button { display: block; width: 100%; box-sizing: border-box; margin: 8px 0; }
  .confidence-explainer > div, .confidence-note, .confidence-card { min-width: 0; box-sizing: border-box; overflow-wrap: anywhere; }
  .confidence-explainer span, .confidence-note { overflow-wrap: anywhere; }
}

/* Confidence page narrow viewport containment */
@media (max-width: 760px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .confidence-hero { width: calc(100vw - 40px); max-width: calc(100vw - 40px); box-sizing: border-box; padding-left: 0; padding-right: 0; overflow: hidden; }
  .confidence-hero h1, .confidence-hero .subhead, .confidence-explainer span, .confidence-note, .confidence-card, .confidence-card * { white-space: normal !important; overflow-wrap: anywhere; }
}

@media (max-width: 760px) {
  .confidence-hero h1 { font-size: 40px !important; letter-spacing: -1px; line-height: 1.05; }
  .confidence-hero .subhead { font-size: 16px !important; line-height: 1.45; }
  .confidence-explainer span, .confidence-note { font-size: 13px !important; line-height: 1.45; }
}

@media (max-width: 760px) {
  .confidence-hero, .confidence-explainer, .confidence-note, .confidence-search, .confidence-grid, .confidence-next { width: calc(100vw - 32px) !important; max-width: calc(100vw - 32px) !important; margin-left: auto !important; margin-right: auto !important; }
  .confidence-hero h1, .confidence-hero .subhead { width: 100% !important; max-width: 100% !important; }
}

@media (max-width: 760px) {
  .confidence-hero h1, .confidence-hero .subhead, .confidence-explainer span, .confidence-note, .confidence-card, .confidence-card li { word-break: break-word !important; overflow-wrap: break-word !important; white-space: normal !important; }
  .confidence-explainer > div { overflow: hidden; }
}

@media (max-width: 760px) {
  .confidence-hero, .confidence-explainer, .confidence-note, .confidence-search, .confidence-grid, .confidence-next { width: 358px !important; max-width: calc(100% - 32px) !important; }
}

@media (max-width: 760px) {
  .confidence-hero, .confidence-explainer, .confidence-note, .confidence-search, .confidence-grid, .confidence-next { width: 300px !important; max-width: calc(100% - 32px) !important; }
}

@media (max-width: 760px) {
  .confidence-hero, .confidence-explainer, .confidence-note, .confidence-search, .confidence-grid, .confidence-next { width: 260px !important; max-width: calc(100% - 32px) !important; }
}


/* AI Tool Fit Interview */
.fit-hero { max-width: 960px; margin: 0 auto; padding: 88px 28px 72px; text-align: center; }
.fit-form { max-width: 760px; margin: 0 auto; }
.fit-progress { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 28px; color: #6e7180; font-size: 13px; }
.fit-form fieldset { margin: 0 0 20px; padding: 22px; border: 1px solid #e2e3eb; border-radius: 16px; background: #fff; }
.fit-form legend { margin-bottom: 14px; font-size: 20px; font-weight: 600; letter-spacing: -.3px; }
.fit-form label { display: block; padding: 11px 12px; border-radius: 10px; cursor: pointer; color: #3f4250; }
.fit-form label:hover { background: #f4f5ff; }
.fit-form input { margin-right: 9px; accent-color: #5663d6; }
.fit-results { max-width: 960px; margin: 0 auto; }
.fit-results-head { margin-bottom: 26px; }
.fit-results-head h2 { margin-top: 10px; }
.fit-cards { display: grid; gap: 14px; }
.fit-card { display: grid; grid-template-columns: 62px 1fr; gap: 18px; padding: 22px; border: 1px solid #e2e3eb; border-radius: 18px; background: #fff; }
.fit-rank { color: #5663d6; font-size: 28px; font-weight: 700; }
.fit-card h3 { margin: 5px 0 8px; }
.fit-card p { color: #5f6475; line-height: 1.5; }
.fit-card ul { margin: 12px 0; padding-left: 20px; color: #464958; line-height: 1.55; }
.fit-links { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 0; }
.fit-links a { color: #35419e; font-weight: 650; text-decoration: none; }
.fit-disclaimer { margin: 26px 0; padding: 16px 18px; border-left: 3px solid #5663d6; background: #f4f5ff; border-radius: 0 12px 12px 0; }
@media (max-width: 760px) { .fit-hero { padding: 56px 20px 48px; } .fit-form fieldset { padding: 18px; } .fit-form legend { font-size: 18px; } .fit-progress { flex-direction: column; gap: 4px; } .fit-card { grid-template-columns: 1fr; gap: 5px; } .fit-rank { font-size: 22px; } .fit-links { flex-direction: column; gap: 9px; } }

@media (max-width: 760px) {
  .fit-hero, .fit-form, .fit-results { width: 300px !important; max-width: calc(100% - 32px) !important; box-sizing: border-box; margin-left: auto !important; margin-right: auto !important; }
  .fit-hero h1, .fit-hero .subhead, .fit-form legend, .fit-form label { white-space: normal !important; overflow-wrap: break-word; word-break: break-word; }
  .fit-form .button { width: 100%; box-sizing: border-box; white-space: normal; }
}


/* Portability and exit-plan modules */
.exit-plan-module { max-width: 1040px; margin: 36px auto; padding: 30px; border: 1px solid #e1e3ee; border-radius: 20px; background: linear-gradient(135deg,#f7f8ff,#fff); }
.exit-plan-copy { max-width: 780px; }
.exit-plan-copy h2 { margin: 9px 0 12px; }
.exit-plan-copy p { color: #5f6475; line-height: 1.55; }
.exit-plan-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin: 22px 0; }
.exit-plan-grid article { padding: 16px; border-radius: 14px; background: #fff; border: 1px solid #e6e7ef; }
.exit-plan-grid strong { display: block; margin-bottom: 8px; font-size: 14px; }
.exit-plan-grid p { margin: 0; font-size: 13px; line-height: 1.45; }
.exit-plan-links { display: flex; flex-wrap: wrap; gap: 18px; margin: 0; }
.exit-plan-links a { color: #35419e; font-weight: 650; text-decoration: none; }
@media (max-width: 900px) { .exit-plan-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 620px) { .exit-plan-module { margin: 26px 16px; padding: 20px; } .exit-plan-grid { grid-template-columns: 1fr; } .exit-plan-links { flex-direction: column; gap: 9px; } }


/* Repeatable test protocol modules */
.test-protocol-module { max-width: 1040px; margin: 28px auto 36px; padding: 30px; border: 1px solid #e1e3ee; border-radius: 20px; background: #fff; }
.test-protocol-module h2 { margin: 9px 0 12px; }
.test-protocol-module > p { max-width: 820px; color: #5f6475; line-height: 1.55; }
.test-protocol-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin: 22px 0; }
.test-protocol-grid article { padding: 16px; border-radius: 14px; background: #f7f8ff; border: 1px solid #e6e7ef; }
.test-protocol-grid strong { display:block; margin-bottom:8px; font-size:14px; }
.test-protocol-grid p { margin:0; color:#5f6475; font-size:13px; line-height:1.45; }
.test-protocol-script { margin: 16px 0; padding: 14px 16px; background: #f7f7fa; border-radius: 12px; }
.test-protocol-script summary { cursor:pointer; color:#35419e; font-weight:650; }
.test-protocol-script p { color:#5f6475; line-height:1.5; }
.test-protocol-links { display:flex; flex-wrap:wrap; gap:18px; }
.test-protocol-links a { color:#35419e; font-weight:650; text-decoration:none; }
@media (max-width:900px) { .test-protocol-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:620px) { .test-protocol-module { margin:24px 16px; padding:20px; } .test-protocol-grid { grid-template-columns:1fr; } .test-protocol-links { flex-direction:column; gap:9px; } }


/* AI Tool Change Radar */
.radar-hero { max-width: 980px; margin: 0 auto; padding: 86px 28px 68px; text-align: center; }
.radar-hero h1 { max-width: 850px; margin: 12px auto 18px; }
.radar-hero .subhead { max-width: 760px; margin: 0 auto 24px; }
.radar-hero-actions { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.radar-principles { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; margin:0 0 28px; }
.radar-principles div { padding:18px; border:1px solid #e1e3ee; border-radius:16px; background:#fff; }
.radar-principles strong { display:block; margin-bottom:7px; }
.radar-principles span { color:#656a7a; font-size:14px; line-height:1.45; }
.radar-controls { display:flex; align-items:end; gap:14px; flex-wrap:wrap; margin:22px 0; padding:18px; border:1px solid #e1e3ee; border-radius:16px; background:#f8f8fc; }
.radar-controls label:first-child { display:flex; flex-direction:column; gap:7px; font-weight:650; }
.radar-controls input[type=search] { min-width:260px; padding:12px 14px; border:1px solid #cfd2df; border-radius:10px; background:#fff; font:inherit; }
.radar-check { display:flex; gap:8px; align-items:center; padding-bottom:12px; color:#515668; font-size:14px; }
#radar-count { margin-left:auto; padding-bottom:12px; color:#656a7a; font-size:14px; }
.radar-list { display:grid; gap:12px; }
.radar-row { padding:22px; border:1px solid #e1e3ee; border-radius:18px; background:#fff; }
.radar-row[hidden] { display:none; }
.radar-main { display:flex; align-items:start; justify-content:space-between; gap:14px; }
.radar-main h2 { margin:6px 0 0; font-size:22px; }
.radar-main h2 a { color:inherit; text-decoration:none; }
.radar-status { white-space:nowrap; padding:7px 10px; border-radius:999px; background:#eaf7ef; color:#17633a; font-size:12px; font-weight:700; }
.radar-row[data-status="Needs recheck"] .radar-status { background:#fff4df; color:#8a4b08; }
.radar-meta { display:flex; gap:8px; flex-wrap:wrap; align-items:center; margin:14px 0 5px; color:#656a7a; font-size:13px; }
.radar-tag { padding:5px 8px; border-radius:999px; background:#eef0ff; color:#3d479c; font-weight:650; }
.radar-note { margin-left:4px; }
.radar-row > p { color:#656a7a; font-size:14px; line-height:1.5; }
.radar-links { display:flex; gap:18px; flex-wrap:wrap; }
.radar-links a { color:#35419e; font-weight:650; text-decoration:none; }
.radar-next { margin-top:28px; }
@media (max-width:700px) { .radar-principles { grid-template-columns:1fr; } .radar-controls input[type=search] { width:100%; min-width:0; } #radar-count { margin-left:0; } .radar-main { flex-direction:column; } .radar-status { white-space:normal; } .radar-row { padding:18px; } }


/* Source-linked how-to library */
.howto-hero { max-width: 920px; margin:0 auto; padding:86px 28px 68px; text-align:center; }
.howto-hero h1 { max-width:850px; margin:12px auto 18px; }
.howto-hero .subhead { max-width:760px; margin:0 auto; }
.howto-disclaimer { max-width:720px; margin:22px auto 0; color:#c9cce2; font-size:14px; line-height:1.5; }
.howto-article { max-width:820px; margin:0 auto; padding:72px 28px; }
.howto-callout { padding:20px 22px; margin-bottom:34px; border:1px solid #d8dced; border-radius:16px; background:#f2f3ff; }
.howto-callout strong { display:block; margin-bottom:7px; }
.howto-callout p { margin:0; color:#5f6475; line-height:1.55; }
.howto-steps { margin:0; padding-left:28px; }
.howto-steps li { padding:0 0 26px 10px; }
.howto-steps li::marker { color:#35419e; font-weight:800; }
.howto-steps h2 { margin:0 0 8px; font-size:23px; }
.howto-steps p { margin:0; color:#5f6475; line-height:1.65; }
.howto-check, .howto-sources { margin-top:26px; padding:24px; border:1px solid #e1e3ee; border-radius:18px; background:#fff; }
.howto-check h2, .howto-sources h2 { margin-top:0; }
.howto-check ul, .howto-sources ul { margin:0; padding-left:22px; color:#5f6475; line-height:1.8; }
.howto-sources a { color:#35419e; font-weight:650; }
.howto-next { display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }
@media (max-width:620px) { .howto-hero, .howto-article { padding-left:20px; padding-right:20px; } .howto-next { flex-direction:column; } .howto-next .button { text-align:center; } }

@media (max-width: 640px) {
  .review-hero { padding: 64px 18px 38px !important; overflow-wrap: anywhere; }
  .review-hero h1 { max-width: 340px; margin-left:auto; margin-right:auto; font-size: clamp(30px, 8vw, 42px); line-height:1.06; letter-spacing:-1px; }
  .review-hero > p:not(.kicker):not(.affiliate-inline) { max-width: 340px; font-size:17px; }
}

@media (max-width: 620px) {
  .review-layout { padding: 18px 12px 64px !important; width:100%; box-sizing:border-box; }
  .review-content { width:100%; max-width:100%; box-sizing:border-box; padding:22px 18px !important; overflow-wrap:anywhere; }
  .review-content p, .review-content li { font-size:16px; }
  .review-content h2 { font-size:28px; }
}


/* Hardware compatibility and purchase guide */
.hardware-hero { max-width: 980px; margin:0 auto; padding:88px 28px 68px; text-align:center; }
.hardware-hero h1 { max-width:900px; margin:12px auto 18px; }
.hardware-hero .subhead { max-width:780px; margin:0 auto; }
.hardware-badge { display:inline-block; margin-top:22px; padding:8px 14px; border:1px solid rgba(255,255,255,.22); border-radius:999px; color:#d7d9e8; font-size:13px; }
.hardware-page { max-width:1120px; margin:0 auto; padding:72px 28px; }
.hardware-alert { padding:22px 24px; margin-bottom:32px; border:1px solid #e8c97d; border-radius:18px; background:#fff8e6; }
.hardware-alert strong { display:block; margin-bottom:7px; }
.hardware-alert p { margin:0; color:#66562b; line-height:1.6; }
.hardware-card { padding:28px; margin:24px 0; border:1px solid #e1e3ee; border-radius:20px; background:#fff; box-shadow:0 14px 34px -28px rgba(12,18,55,.35); }
.hardware-card h2 { margin-top:0; }
.hardware-card p, .hardware-card li { color:#5f6475; line-height:1.65; }
.hardware-specs { padding-left:22px; }
.hardware-card table { width:100%; border-collapse:collapse; }
.hardware-card th { text-align:left; color:#252b49; font-size:14px; }
.hardware-card td { color:#5f6475; line-height:1.55; }
.hardware-card a { color:#35419e; font-weight:650; }
.hardware-next { display:flex; gap:12px; flex-wrap:wrap; margin-top:30px; }
@media (max-width:640px) { .hardware-hero,.hardware-page{padding-left:18px;padding-right:18px}.hardware-hero{padding-top:64px}.hardware-card{padding:20px 18px}.hardware-next{flex-direction:column}.hardware-next .button{text-align:center}.hardware-card .table-wrap{margin-left:-2px;margin-right:-2px} }


/* Local AI Workbench Planner */
.planner-hero { max-width:960px; margin:0 auto; padding:88px 28px 68px; text-align:center; }
.planner-hero h1 { max-width:900px; margin:12px auto 18px; }
.planner-hero .subhead { max-width:760px; margin:0 auto; }
.planner-note { max-width:700px; margin:22px auto 0; color:#c9cce2; font-size:14px; line-height:1.55; }
.planner-shell { max-width:920px; margin:0 auto; padding:72px 28px; }
.planner-form { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; padding:28px; border:1px solid #e1e3ee; border-radius:20px; background:#fff; box-shadow:0 14px 34px -28px rgba(12,18,55,.35); }
.planner-question { display:flex; flex-direction:column; gap:8px; }
.planner-question label { font-weight:750; color:#252b49; }
.planner-question select { min-height:46px; padding:0 12px; border:1px solid #cfd3e3; border-radius:10px; background:#fff; color:#252b49; font:inherit; }
.planner-submit { grid-column:1/-1; justify-self:start; margin-top:4px; }
.planner-result { margin-top:28px; padding:30px; border:1px solid #bcc4ff; border-radius:22px; background:linear-gradient(145deg,#f2f4ff,#fff); scroll-margin-top:20px; }
.planner-result h2 { margin:7px 0 12px; font-size:clamp(28px,4vw,42px); }
.planner-result-head p { color:#50566d; font-size:18px; line-height:1.6; }
.planner-result-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; margin-top:24px; }
.planner-result-grid > div { padding:20px; border:1px solid #dfe2f2; border-radius:16px; background:#fff; }
.planner-result-grid h3 { margin-top:0; }
.planner-result-grid p { color:#5f6475; line-height:1.6; }
.planner-caveat { font-size:14px; }
.planner-result-foot { margin-top:22px; padding-top:20px; border-top:1px solid #dfe2f2; color:#50566d; line-height:1.6; }
.planner-method { margin-top:36px; padding:28px; border-radius:20px; background:#f5f6fa; }
.planner-method p { color:#5f6475; line-height:1.65; }
.planner-links { display:flex; flex-wrap:wrap; gap:14px 24px; }
.planner-links a { color:#35419e; font-weight:700; }
@media (max-width:640px) { .planner-hero,.planner-shell{padding-left:18px;padding-right:18px}.planner-form,.planner-result{padding:20px}.planner-form,.planner-result-grid{grid-template-columns:1fr}.planner-submit{width:100%;text-align:center}.planner-method{padding:20px} }

/* Keep/Cut Weekly — public newsletter composition (not a generic article shell) */
.newsletter-issue,
.newsletter-archive {
  background: #f3efe8;
  color: var(--ink);
  padding: 36px 16px 80px;
}
.newsletter-sheet {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(29, 29, 31, .08);
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 28px 56px -36px rgba(8,9,10,.28);
  padding: 44px 48px 52px;
}
.newsletter-masthead {
  text-align: center;
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ink);
}
.newsletter-name {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
}
.newsletter-issue-line {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .02em;
}
.newsletter-subject {
  margin: 0 0 14px;
  font-size: clamp(28px, 5.2vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.9px;
  font-weight: 600;
  color: var(--ink);
}
.newsletter-dek {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: none;
}
.newsletter-body {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}
.newsletter-body p { margin: 0 0 1.35em; }
.newsletter-body ul { margin: 0 0 1.35em; padding-left: 1.2em; }
.newsletter-body li { margin: 0 0 .7em; }
.newsletter-body a { color: var(--blue-dark); text-decoration: underline; text-underline-offset: 2px; }
.newsletter-greeting { font-size: 18px; }
.newsletter-segment {
  margin: 28px 0;
  padding: 20px 20px 6px;
  border-radius: 10px;
  background: rgba(94, 106, 210, .05);
  border: 1px solid rgba(94, 106, 210, .12);
  border-left: 3px solid var(--blue);
}
.newsletter-segment h2 {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--blue-dark);
}
.newsletter-segment--keep { background: rgba(94, 106, 210, .07); border-left-color: var(--blue); }
.newsletter-segment--cut { background: #f7f4ef; border-color: rgba(0,0,0,.06); border-left-color: var(--ink); }
.newsletter-segment--renew { background: rgba(113, 112, 255, .06); border-color: rgba(113, 112, 255, .14); border-left-color: var(--violet); }
.newsletter-segment--look { background: var(--light); border-color: rgba(0,0,0,.06); border-left-color: var(--blue-light); }
.newsletter-close { margin-top: 8px; padding-top: 8px; }
.newsletter-signoff { font-weight: 600; }
.newsletter-colophon {
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(29, 29, 31, .12);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.newsletter-colophon p { margin: 0 0 10px; }
.newsletter-colophon a { color: var(--blue-dark); }
.newsletter-archive-intro {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}
.newsletter-archive-intro .newsletter-name { margin-bottom: 10px; }
.newsletter-archive-intro h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -1.1px;
  line-height: 1.1;
}
.newsletter-archive-intro p { margin: 0 auto 18px; color: var(--muted); max-width: 520px; line-height: 1.5; }
.newsletter-issue-list { max-width: 640px; margin: 0 auto; display: grid; gap: 16px; }
.newsletter-issue-card {
  background: var(--white);
  border: 1px solid rgba(29, 29, 31, .08);
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  padding: 24px 26px 22px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  min-height: 0;
}
.newsletter-issue-card:hover { transform: none; box-shadow: 0 8px 24px -16px rgba(8,9,10,.25); }
.newsletter-issue-card-meta {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 650;
}
.newsletter-issue-card h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -.4px; line-height: 1.25; }
.newsletter-issue-card p { margin: 0; color: var(--muted); line-height: 1.5; }
@media (max-width: 640px) {
  .newsletter-issue, .newsletter-archive { padding: 8px 0 56px; }
  .newsletter-sheet { padding: 28px 20px 36px; border-radius: 0; box-shadow: none; border-left: none; border-right: none; }
  .newsletter-segment { padding: 16px 14px 2px; }
  .newsletter-issue-card { margin: 0 16px; }
  .newsletter-archive-intro { padding: 28px 20px 8px; }
}

/* Exit-intent overlay */
#exit-intent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
#exit-intent-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.exit-intent-box {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 480px;
  width: calc(100% - 40px);
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
#exit-intent-overlay.visible .exit-intent-box {
  transform: translateY(0);
}
.exit-intent-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #5c6070;
  line-height: 1;
  padding: 4px 8px;
}
.exit-intent-close:hover { color: #1d1d1f; }
.exit-intent-box h2 {
  margin: 8px 0 12px;
  font-size: 28px;
  letter-spacing: -0.5px;
}
.exit-intent-box p {
  color: #5c6070;
  line-height: 1.6;
  margin-bottom: 24px;
}
.exit-intent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Cookie consent banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-top: 1px solid #e8e8ed;
  padding: 16px 24px;
  box-shadow: 0 -8px 30px rgba(0,0,0,.12);
}
.cookie-box {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  color: #5c6070;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-text a {
  color: var(--blue-dark);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ============================================================
   Homepage Path A polish — scoped so inner pages stay untouched
   ============================================================ */
html:has(body[data-page="home"]),
body[data-page="home"] {
  background: #000;
  color: #f4f5f7;
}
body[data-page="home"] {
  --home-space-1: 8px;
  --home-space-2: 12px;
  --home-space-3: 16px;
  --home-space-4: 28px;
  --home-ink: #f4f5f7;
  --home-muted: rgba(244,245,247,.68);
  --home-metal: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
}

body[data-page="home"] .global-nav[data-nav="slim"] {
  background: rgba(0,0,0,.55);
  border-bottom-color: rgba(255,255,255,.08);
}
body[data-page="home"] .global-nav[data-nav="slim"] .nav-links {
  gap: 8px;
  opacity: 1;
}
body[data-page="home"] .global-nav[data-nav="slim"] .nav-links a {
  opacity: 1;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: var(--home-metal);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
  color: rgba(244,245,247,.86);
}
body[data-page="home"] .global-nav[data-nav="slim"] .nav-links a:hover {
  text-decoration: none;
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(94,106,210,.16));
}
body[data-page="home"] .global-nav[data-nav="slim"] .nav-cta {
  opacity: 1;
  font-weight: 600;
  border-radius: 999px;
  padding: 7px 14px;
  color: #101114;
  background: linear-gradient(180deg, #fff, #dfe3ee);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 6px 18px rgba(0,0,0,.35);
}
body[data-page="home"] .global-nav[data-nav="slim"] .nav-cta:hover {
  background: linear-gradient(180deg, #fff, #cfd6ea);
  text-decoration: none;
}
@media (min-width: 521px) {
  /* CTA already is Stack Audit — do not sit a twin text link beside it */
  body[data-page="home"] .nav-links a[href="/stack-audit.html"] { display: none; }
}
@media (max-width: 520px) {
  body[data-page="home"] .global-nav[data-nav="slim"] {
    gap: 10px;
    padding-left: 14px;
    padding-right: 14px;
  }
  body[data-page="home"] .global-nav[data-nav="slim"] .nav-links {
    gap: 6px;
    font-size: 12px;
  }
  body[data-page="home"] .global-nav[data-nav="slim"] .nav-links a {
    padding: 5px 9px;
  }
}

body[data-page="home"] .home-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 36rem);
  justify-content: center;
  justify-items: center;
  min-height: 0;
  padding: 56px 28px 40px;
  gap: 0;
  align-items: center;
  background: #000;
  overflow: hidden;
}
body[data-page="home"] .home-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body[data-page="home"] .home-hero .hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  justify-self: center;
  align-self: center;
  max-width: 36rem;
  padding-bottom: 0;
}
body[data-page="home"] .home-kicker {
  margin: 0 0 var(--home-space-2);
  color: rgba(228,231,238,.72);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.4;
}
body[data-page="home"] .home-hero h1 {
  margin: 0 0 var(--home-space-3);
  font-size: clamp(40px, 6.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -2px;
  font-weight: 500;
}
body[data-page="home"] .home-hero h1 .home-line {
  display: block;
}
body[data-page="home"] .home-hero h1 em {
  font-family: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #fff;
}
body[data-page="home"] .home-hero .subhead {
  margin: 0 auto var(--home-space-4);
  max-width: 32em;
  font-size: 18px;
  line-height: 1.5;
  color: var(--home-muted);
}
body[data-page="home"] .home-hero .actions {
  justify-content: center;
  gap: 12px;
}
body[data-page="home"] .home-hero .hero-secondary-links {
  margin: 14px 0 0;
  color: rgba(228,231,238,.62);
  font-size: 14px;
}
body[data-page="home"] .home-hero .hero-secondary-links a {
  color: rgba(228,231,238,.78);
  text-underline-offset: 3px;
}
body[data-page="home"] .home-hero .hero-secondary-links a:hover {
  color: #fff;
}
body[data-page="home"] .home-cta-primary,
body[data-page="home"] .home-cta-ghost {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px;
  min-height: 46px;
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 600;
}
body[data-page="home"] .home-cta-primary::after,
body[data-page="home"] .home-cta-ghost::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background: linear-gradient(110deg, transparent 28%, rgba(255,255,255,.7) 48%, transparent 68%);
  transform: translateX(-130%);
  transition: transform .55s ease;
}
body[data-page="home"] .home-cta-primary:hover::after,
body[data-page="home"] .home-cta-ghost:hover::after {
  transform: translateX(130%);
}
body[data-page="home"] .home-cta-primary {
  color: #101114;
  background: linear-gradient(180deg, #fff 0%, #e7ebf4 100%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: inset 0 1px 0 #fff, 0 10px 28px rgba(0,0,0,.38);
}
body[data-page="home"] .home-cta-primary:hover {
  text-decoration: none;
  background: linear-gradient(180deg, #fff 0%, #d5dcf0 100%);
  transform: translateY(-1px);
}
body[data-page="home"] .home-cta-ghost {
  color: #f4f5f7;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
body[data-page="home"] .home-cta-ghost:hover {
  text-decoration: none;
  color: #fff;
  background: rgba(94,106,210,.16);
  border-color: rgba(174,182,255,.42);
}

body[data-page="home"] .home-appear {
  opacity: 0;
  transform: translateY(16px) scale(.985);
  filter: blur(6px);
  animation: home-appear .9s cubic-bezier(.22,1,.36,1) forwards;
}
body[data-page="home"] .home-appear[data-appear="0"] { animation-delay: .04s; }
body[data-page="home"] .home-appear[data-appear="1"] { animation-delay: .14s; }
body[data-page="home"] .home-appear[data-appear="2"] { animation-delay: .26s; }
body[data-page="home"] .home-appear[data-appear="3"] { animation-delay: .36s; }
body[data-page="home"] .home-appear[data-appear="4"] { animation-delay: .48s; }
body[data-page="home"] .home-appear[data-appear="5"] { animation-delay: .6s; }
@keyframes home-appear {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.985);
    filter: blur(6px);
    clip-path: inset(10% 0 0 0);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: inset(0);
  }
}
html.home-enter-done body[data-page="home"] .home-appear {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: none;
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .home-appear {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
    animation: none;
  }
  body[data-page="home"] .home-cta-primary::after,
  body[data-page="home"] .home-cta-ghost::after {
    display: none;
  }
  body[data-page="home"] .home-cta-primary:hover,
  body[data-page="home"] .button {
    transform: none;
  }
}

body[data-page="home"] .home-rest {
  position: relative;
  background: #000;
  color: var(--home-ink);
}
body[data-page="home"] .home-rest::before {
  content: "";
  display: block;
  height: 20px;
  margin-top: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0), #000);
}
body[data-page="home"] .home-learn {
  padding: 8px 24px 12px;
  background: #000;
  color: var(--home-ink);
}
body[data-page="home"] .home-learn-inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
body[data-page="home"] .home-learn-kicker {
  margin: 0 0 8px;
  color: rgba(228,231,238,.8);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
body[data-page="home"] .home-learn h2 {
  margin: 0 auto 22px;
  max-width: 28em;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.6px;
  font-weight: 500;
  color: #fff;
}
body[data-page="home"] .home-learn h2 em {
  font-family: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
body[data-page="home"] .home-learn-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  text-align: left;
}
body[data-page="home"] .home-learn-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
  padding: 20px 20px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(36,38,46,.68), rgba(10,11,14,.82));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  color: inherit;
  text-decoration: none;
}
body[data-page="home"] .home-learn-card:visited {
  color: inherit;
}
body[data-page="home"] .home-learn-card:hover,
body[data-page="home"] .home-learn-card:visited {
  text-decoration: none;
}
body[data-page="home"] .home-learn-card:hover {
  border-color: rgba(255,255,255,.28);
  background: linear-gradient(180deg, rgba(48,51,62,.74), rgba(14,16,20,.88));
}
body[data-page="home"] .home-learn-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: #fff;
}
body[data-page="home"] .home-learn-card p {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(244,245,247,.78);
}
body[data-page="home"] .home-learn-card-link {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(228,231,238,.82);
  text-underline-offset: 3px;
}
body[data-page="home"] .home-learn-card:hover .home-learn-card-link {
  color: #fff;
  text-decoration: underline;
}
body[data-page="home"] .home-learn-more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin: 18px 0 0;
  color: rgba(228,231,238,.62);
  font-size: 14px;
}
body[data-page="home"] .home-learn-more a {
  color: rgba(228,231,238,.78);
  text-underline-offset: 3px;
}
body[data-page="home"] .home-learn-more a:hover {
  color: #fff;
}

body[data-page="home"] .home-premium-band {
  padding: 20px 24px 8px;
  background: transparent;
  color: var(--home-ink);
}
body[data-page="home"] .home-premium-band > div {
  max-width: 620px;
  padding: 28px 32px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(36,38,46,.68), rgba(10,11,14,.82));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 20px 48px rgba(0,0,0,.4);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
body[data-page="home"] .home-premium-band .kicker,
body[data-page="home"] .home-premium-band .kicker.light {
  color: rgba(228,231,238,.8);
  font-size: 13px;
  letter-spacing: .06em;
}
body[data-page="home"] .home-premium-band p {
  color: rgba(244,245,247,.84);
  font-size: 16px;
  line-height: 1.5;
}
body[data-page="home"] .home-premium-band .checkout-plain-link {
  color: rgba(228,231,238,.72);
  text-underline-offset: 3px;
}
body[data-page="home"] .home-premium-band .checkout-plain-link:hover {
  color: #fff;
}
body[data-page="home"] .home-newsletter.newsletter-panel {
  margin: 12px auto 48px;
  padding: 28px 32px;
  align-items: center;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(22,24,30,.96), rgba(9,10,13,.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
}
body[data-page="home"] .home-newsletter.newsletter-panel span {
  color: #c5cad3;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
body[data-page="home"] .home-newsletter.newsletter-panel h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  margin: 10px 0 12px;
  letter-spacing: -1px;
}
body[data-page="home"] .home-newsletter.newsletter-panel p {
  color: #e4e7ee;
  margin: 0;
  font-size: 16px;
}
body[data-page="home"] .share-row {
  background: #f5f5f7;
  padding-top: 8px;
}
body[data-page="home"] .footer[data-footer="slim"] {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 24px max(24px, calc((100vw - 1040px) / 2)) 36px;
  background: #f5f5f7;
  color: rgba(0,0,0,.52);
}

@media (max-width: 900px) {
  body[data-page="home"] .home-hero {
    min-height: 0;
    padding: 44px 22px 32px;
    align-items: center;
  }
  body[data-page="home"] .home-hero .hero-copy {
    max-width: 34rem;
  }
  body[data-page="home"] .home-hero h1 {
    max-width: none;
  }
}
@media (max-width: 640px) {
  body[data-page="home"] .home-hero { padding: 36px 20px 28px; }
  body[data-page="home"] .home-hero h1 { font-size: clamp(34px, 10vw, 46px); }
  body[data-page="home"] .home-hero .actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 320px);
    margin-inline: auto;
  }
  body[data-page="home"] .home-hero .actions .button {
    width: 100%;
    min-height: 48px;
  }
  body[data-page="home"] .home-learn { padding: 4px 16px 8px; }
  body[data-page="home"] .home-learn-cards {
    grid-template-columns: 1fr;
  }
  body[data-page="home"] .home-learn-card {
    min-height: 0;
    padding: 18px 16px 16px;
  }
  body[data-page="home"] .home-learn h2 {
    margin-bottom: 16px;
  }
  body[data-page="home"] .home-premium-band { padding: 16px 16px 8px; }
  body[data-page="home"] .home-premium-band > div { padding: 22px 18px; }
  body[data-page="home"] .home-premium-band .home-premium-actions .button {
    width: min(100%, 320px);
    min-height: 48px;
  }
  body[data-page="home"] .home-premium-band .checkout-plain-link {
    max-width: 100%;
    text-align: center;
    line-height: 1.45;
  }
  body[data-page="home"] .home-newsletter.newsletter-panel {
    margin: 8px auto 36px;
    padding: 24px 20px;
    width: min(1100px, calc(100% - 24px));
  }
  body[data-page="home"] .home-newsletter.newsletter-panel .button {
    min-height: 48px;
    width: min(100%, 320px);
  }
}

/* Accessible button contrast across light and dark sections. */
.button {
  border: 1px solid transparent;
  color-scheme: light;
  cursor: pointer;
  font-family: inherit;
}
.button-blue:hover,
.nav-cta:hover,
.cta-button:hover {
  background: var(--blue-dark);
  color: #fff;
}
.button-dark {
  background: #24262b;
  border-color: #24262b;
  color: #fff;
}
.button-dark:hover {
  background: #343741;
  border-color: #343741;
  color: #fff;
  text-decoration: none;
}
.button-ghost-dark {
  background: #f0f1ff;
  border-color: #aeb6e8;
  color: #3d46a8;
}
.button-ghost-dark:hover {
  background: #e2e5ff;
  border-color: #7e88d8;
  color: #30388d;
  text-decoration: none;
}
.scene-dark .button-ghost-dark,
.newsletter-panel .button-ghost-dark,
.benchmark-policy .button-ghost-dark {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.38);
  color: #f0f2ff;
}
.scene-dark .button-ghost-dark:hover,
.newsletter-panel .button-ghost-dark:hover,
.benchmark-policy .button-ghost-dark:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.58);
  color: #fff;
}
.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
}
