:root{
  --ink:#0F1120;
  --ink-soft:#22243A;
  --muted:#5B5F76;
  --muted-2:#6B6F86; /* bumped from #8A8FA6 so small text meets WCAG AA contrast on --paper background */
  --indigo:#4F46E5;
  --indigo-deep:#3730A3;
  --indigo-tint:#EEF0FB;
  --indigo-tint-2:#E3E6FB;
  --paper:#FBFBFD;
  --surface:#FFFFFF;
  --line:#E7E8F0;
  --line-soft:#EEF0F4;
  --pro:#0E9F6E;
  --pro-tint:#E7F6EF;
  --con:#DB3B3B;
  --con-tint:#FBEBEB;
  --star:#F5A623;
  --shadow-sm:0 1px 2px rgba(15,17,32,.05), 0 1px 1px rgba(15,17,32,.04);
  --shadow-md:0 12px 30px -12px rgba(15,17,32,.18), 0 4px 10px -6px rgba(15,17,32,.10);
  --radius:16px;
  --radius-sm:11px;
  --maxw:1180px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',system-ui,sans-serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:'Space Grotesk',sans-serif;line-height:1.12;letter-spacing:-.02em;color:var(--ink)}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.mono{font-family:'JetBrains Mono',monospace}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 26px}
/* Screen-reader-only utility — used for headings that exist for accessibility structure
   but aren't part of the visual design. */
.screen-reader-text{
  border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);
  height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important
}
.eyebrow{
  font-family:'JetBrains Mono',monospace;
  font-size:11.5px;letter-spacing:.13em;text-transform:uppercase;
  color:var(--indigo);font-weight:500;
}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'Inter',sans-serif;font-weight:600;font-size:14.5px;
  padding:12px 20px;border-radius:11px;cursor:pointer;border:1px solid transparent;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
  line-height:normal; /* match browser <button> default so anchor-buttons don't inherit body's 1.6 */
}
.btn-primary{background:var(--indigo);color:#fff;box-shadow:0 6px 16px -6px rgba(79,70,229,.55)}
.btn-primary:hover{background:var(--indigo-deep);transform:translateY(-1px);box-shadow:0 10px 22px -8px rgba(79,70,229,.6)}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--line)}
.btn-ghost:hover{border-color:var(--indigo);color:var(--indigo);background:var(--surface)}
.btn-sm{padding:9px 15px;font-size:13.5px}
.btn svg{width:16px;height:16px}

/* ---------- top utility strip ---------- */
.demobar{
  background:linear-gradient(90deg,#1b1d33,#2a2750);
  color:#dfe0ee;font-size:12.5px;
  display:flex;align-items:center;justify-content:center;gap:10px;
  padding:7px 16px;position:relative;
}
.demobar .mono{color:#aeb0e8}
.demobar b{color:#fff;font-weight:600}
.demobar .x{position:absolute;right:14px;cursor:pointer;opacity:.6;font-size:16px;line-height:1}
.demobar .x:hover{opacity:1}

/* ---------- header ---------- */
header.site{
  position:sticky;top:0;z-index:50;
  background:rgba(251,251,253,.82);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;height:66px}
.brand{display:flex;align-items:center;gap:11px;cursor:pointer}
.brand .mark{
  width:34px;height:34px;border-radius:9px;
  background:linear-gradient(150deg,var(--indigo),#6C63FF);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px -3px rgba(79,70,229,.5);
}
.brand .mark svg{width:17px;height:17px}
.brand .custom-logo{max-height:38px;width:auto;display:block}
.brand .custom-logo-link{display:flex;align-items:center}
.brand .name{font-family:'Space Grotesk';font-weight:700;font-size:19px;letter-spacing:-.02em}
.brand .name span{color:var(--indigo)}
.menu{display:flex;align-items:center;gap:4px}
.menu ul,.menu ol,.menu .menu-list{list-style:none;display:flex;align-items:center;gap:4px;padding:0;margin:0}
.menu li{list-style:none;padding:0;margin:0}
.menu li::marker{content:none}
.menu a{
  font-size:14.5px;font-weight:500;color:var(--ink-soft);
  padding:8px 14px;border-radius:9px;transition:color .15s, background .15s;cursor:pointer;
  display:inline-block;
}
.menu a:hover{color:var(--ink);background:var(--indigo-tint)}
.menu a.active,.menu li.current-menu-item > a,.menu li.current-menu-parent > a,.menu li.current_page_item > a{color:var(--indigo);background:var(--indigo-tint);font-weight:600}
.nav-right{display:flex;align-items:center;gap:14px}
.hamb{display:none;background:none;border:1px solid var(--line);border-radius:9px;width:40px;height:38px;cursor:pointer;align-items:center;justify-content:center}
.hamb svg{width:20px;height:20px}

/* Archive toolbar — wraps the chip row + optional scoped search input */
.archive-toolbar{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  flex-wrap:wrap;margin-bottom:26px;
}
.archive-toolbar .chips{margin-bottom:0;flex:1;min-width:0}
.archive-search{position:relative;flex-shrink:0}
.archive-search > svg{
  position:absolute;left:12px;top:50%;transform:translateY(-50%);
  width:15px;height:15px;color:var(--muted);pointer-events:none;
}
.archive-search input[type=search]{
  font-family:'Inter';font-size:13.5px;color:var(--ink);
  padding:8px 14px 8px 34px;min-width:220px;
  border:1px solid var(--line);background:var(--surface);border-radius:20px;
  outline:none;transition:border-color .15s,box-shadow .15s;
  -webkit-appearance:none;appearance:none;
}
.archive-search input[type=search]::-webkit-search-cancel-button{display:none}
.archive-search input[type=search]::placeholder{color:var(--muted-2)}
.archive-search input[type=search]:focus{border-color:var(--indigo);box-shadow:0 0 0 3px var(--indigo-tint)}
.archive-search--wide{display:block;width:100%}
.archive-search--wide input[type=search]{width:100%}

/* Search results — separate blocks for reviews vs. articles when scope=all */
.search-block{margin-bottom:34px}
.search-block:last-child{margin-bottom:0}
.search-block .post-related-h{margin-top:8px}

@media (max-width:640px){
  .archive-toolbar{flex-direction:column;align-items:stretch}
  .archive-search input[type=search]{width:100%;min-width:0}
}

/* ---------- hero ---------- */
.hero{padding:70px 0 56px;position:relative;overflow:hidden}
.hero:before{
  content:"";position:absolute;top:-180px;right:-160px;width:520px;height:520px;
  background:radial-gradient(circle,rgba(79,70,229,.10),transparent 62%);pointer-events:none;
}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:54px;align-items:center;min-height:420px} /* reserved height stops CLS on cold load */
.hero h1{font-size:50px;font-weight:700;margin:18px 0 18px;max-width:14ch}
.hero p.lead{font-size:18.5px;color:var(--muted);max-width:44ch;margin-bottom:28px}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap}
.hero-trust{display:flex;gap:22px;margin-top:30px;flex-wrap:wrap}
.hero-trust .ht{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--muted)}
.hero-trust svg{width:16px;height:16px;color:var(--pro)}

/* ---------- scorecard (signature) ---------- */
.scorecard{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow-md);overflow:hidden;
  contain:layout style; /* isolate internal font-swap reflows so they don't shift the hero grid */
}
.sc-top{display:flex;gap:0}
.sc-scoreblock{
  background:linear-gradient(160deg,var(--indigo),#5b53ee 55%,#6f67f2);
  color:#fff;padding:22px 22px 20px;min-width:128px;text-align:center;
  display:flex;flex-direction:column;justify-content:center;
}
.sc-scoreblock .num{font-family:'JetBrains Mono';font-weight:700;font-size:40px;line-height:1}
.sc-scoreblock .out{font-family:'JetBrains Mono';font-size:12px;opacity:.8;margin-top:2px}
.sc-stars{display:flex;gap:2px;justify-content:center;margin-top:9px}
.sc-stars svg{width:13px;height:13px;color:#FFD27A}
.sc-meta{padding:18px 20px;flex:1}
.sc-meta .label{font-family:'JetBrains Mono';font-size:10.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--muted-2)}
.sc-meta .verdict{font-family:'Space Grotesk';font-weight:600;font-size:16.5px;margin:4px 0 8px;color:var(--ink)}
.sc-meta .tool{display:flex;align-items:center;gap:9px;margin-bottom:2px}
.sc-meta .tool .logo{width:30px;height:30px;border-radius:8px;background:var(--indigo-tint);display:flex;align-items:center;justify-content:center;font-family:'Space Grotesk';font-weight:700;color:var(--indigo);font-size:14px;overflow:hidden;flex-shrink:0}
.sc-meta .tool .logo img{width:100%;height:100%;object-fit:cover;display:block}
.sc-meta .tool .tn{font-family:'Space Grotesk';font-weight:600;font-size:16px}
.sc-bars{padding:0 20px 18px;display:grid;gap:9px}
.sc-bar{display:grid;grid-template-columns:96px 1fr 34px;align-items:center;gap:10px}
.sc-bar .bn{font-size:12px;color:var(--muted)}
.sc-bar .track{height:6px;background:var(--line-soft);border-radius:6px;overflow:hidden}
.sc-bar .fill{height:100%;background:linear-gradient(90deg,var(--indigo),#7a72f0);border-radius:6px;width:0;transition:width 1s cubic-bezier(.2,.7,.2,1)}
.sc-bar .bv{font-family:'JetBrains Mono';font-size:12px;font-weight:500;text-align:right;color:var(--ink-soft)}
.sc-foot{border-top:1px solid var(--line);padding:13px 20px;display:flex;gap:10px;align-items:center;background:#FCFCFE}
.sc-foot .btn{flex:1;justify-content:center}

/* ---------- section shells ---------- */
.section{padding:62px 0}
.section-head{max-width:620px;margin-bottom:34px}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.section-head h2{font-size:33px;font-weight:700;margin:12px 0 10px}
.section-head p{color:var(--muted);font-size:16px}
.alt{background:#fff;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}

/* ---------- trust band ---------- */
.trustband{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.trustcard{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm);padding:22px 22px}
.trustcard .ic{width:38px;height:38px;border-radius:10px;background:var(--indigo-tint);display:flex;align-items:center;justify-content:center;margin-bottom:13px}
.trustcard .ic svg{width:19px;height:19px;color:var(--indigo)}
.trustcard h3{font-size:16.5px;font-weight:600;margin-bottom:6px}
.trustcard p{font-size:14px;color:var(--muted)}

/* ---------- category grid ---------- */
.catgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.catcard{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm);
  padding:22px;cursor:pointer;transition:transform .18s ease, box-shadow .2s ease, border-color .2s;
  display:flex;flex-direction:column;gap:12px;position:relative;
}
.catcard:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:var(--indigo-tint-2)}
.catcard .cic{width:44px;height:44px;border-radius:11px;background:var(--indigo-tint);display:flex;align-items:center;justify-content:center}
.catcard .cic svg{width:22px;height:22px;color:var(--indigo)}
.catcard h3{font-size:17px;font-weight:600}
.catcard p{font-size:13.5px;color:var(--muted);flex:1}
.catcard .more{font-family:'JetBrains Mono';font-size:12px;color:var(--indigo);font-weight:500;display:flex;align-items:center;gap:5px}
.catcard .more svg{width:13px;height:13px;transition:transform .2s}
.catcard:hover .more svg{transform:translateX(3px)}

/* ---------- review cards (list) ---------- */
.revgrid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.revgrid-empty{
  grid-column:1/-1;
  margin:24px 0 0;padding:32px 20px;
  color:var(--muted);text-align:center;
  background:var(--surface);border:1px dashed var(--line-soft);border-radius:14px;
}
.revgrid-empty[hidden]{display:none}
.revcard{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;cursor:pointer;transition:transform .18s, box-shadow .2s, border-color .2s;display:flex;flex-direction:column;
}
.revcard:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:var(--indigo-tint-2)}
.rc-head{display:flex;align-items:center;gap:13px;padding:18px 20px 14px}
.rc-logo{width:46px;height:46px;border-radius:11px;background:var(--indigo-tint);display:flex;align-items:center;justify-content:center;font-family:'Space Grotesk';font-weight:700;color:var(--indigo);font-size:18px;flex-shrink:0;overflow:hidden}
.rc-logo img{width:100%;height:100%;object-fit:cover}
.rc-head .rc-name{font-family:'Space Grotesk';font-weight:600;font-size:18px}
.rc-cat{font-family:'JetBrains Mono';font-size:11px;color:var(--muted);letter-spacing:.04em}
.rc-score{margin-left:auto;text-align:center;flex-shrink:0}
.rc-score .n{font-family:'JetBrains Mono';font-weight:700;font-size:22px;color:var(--indigo);line-height:1}
.rc-score .s{display:flex;gap:1px;justify-content:center;margin-top:3px}
.rc-score .s svg{width:10px;height:10px;color:var(--star)}
.rc-body{padding:0 20px 16px}
.rc-verdict{font-size:14.5px;color:var(--ink-soft);margin-bottom:14px}
.rc-pc{display:grid;grid-template-columns:1fr 1fr;gap:8px 16px;font-size:12.8px}
.rc-pc .row{display:flex;gap:7px;align-items:flex-start;color:var(--muted)}
.rc-pc .row svg{width:14px;height:14px;flex-shrink:0;margin-top:2px}
.rc-pc .pro svg{color:var(--pro)}
.rc-pc .con svg{color:var(--con)}
.rc-foot{margin-top:auto;border-top:1px solid var(--line-soft);padding:13px 20px;display:flex;align-items:center;justify-content:space-between}
.rc-foot .read{font-family:'JetBrains Mono';font-size:12.5px;color:var(--indigo);font-weight:500;display:flex;align-items:center;gap:6px}
.rc-foot .read svg{width:13px;height:13px;transition:transform .2s}
.revcard:hover .rc-foot .read svg{transform:translateX(3px)}
.rc-foot .price{font-size:12.5px;color:var(--muted)}

/* ---------- filter chips ---------- */
.chips{display:flex;gap:9px;flex-wrap:wrap;margin-bottom:26px}
.chip{
  font-family:'Inter';font-size:13px;font-weight:500;color:var(--muted);
  border:1px solid var(--line);background:var(--surface);border-radius:30px;
  padding:7px 15px;cursor:pointer;transition:all .15s;
  line-height:1.6;
  display:inline-block;text-decoration:none;
}
a.chip{color:var(--muted)}
a.chip:hover{color:var(--indigo);text-decoration:none}
a.chip.active{color:#fff}
.chip:hover{border-color:var(--indigo);color:var(--indigo)}
.chip.active{background:var(--ink);color:#fff;border-color:var(--ink)}

/* ---------- page intro ---------- */
.pintro{padding-top:52px;padding-bottom:8px} /* per-axis so horizontal gutter from .wrap survives */
.pintro .eyebrow{margin-bottom:12px;display:inline-block}
.pintro h1{font-size:40px;font-weight:700;margin-bottom:12px}
.pintro p{color:var(--muted);font-size:17px;max-width:60ch}

/* ---------- single review ---------- */
.rv{padding-top:34px;padding-bottom:70px}
.breadcrumb{font-family:'JetBrains Mono';font-size:12px;color:var(--muted-2);margin-bottom:18px;display:flex;gap:8px;flex-wrap:wrap}
.breadcrumb a{cursor:pointer}
.breadcrumb a:hover{color:var(--indigo)}
.rv-head{display:flex;align-items:flex-start;gap:18px;flex-wrap:wrap;margin-bottom:8px}
.rv-head .biglogo{width:62px;height:62px;border-radius:14px;background:var(--indigo-tint);display:flex;align-items:center;justify-content:center;font-family:'Space Grotesk';font-weight:700;color:var(--indigo);font-size:26px;flex-shrink:0;overflow:hidden}
.rv-head .biglogo img{width:100%;height:100%;object-fit:cover}
.rv-head h1{font-size:34px;font-weight:700;margin-bottom:6px}
.rv-tags{display:flex;gap:8px;flex-wrap:wrap;align-items:center}
.tag{font-family:'JetBrains Mono';font-size:11px;letter-spacing:.04em;padding:4px 10px;border-radius:20px;background:var(--indigo-tint);color:var(--indigo-deep);font-weight:500}
.tag.neutral{background:var(--line-soft);color:var(--muted)}
.rv-meta{font-size:12.5px;color:var(--muted-2);margin-left:auto;text-align:right}
.rv-disclosure{
  display:flex;gap:10px;align-items:flex-start;
  background:#FFFBF2;border:1px solid #F3E4C5;border-radius:11px;
  padding:11px 15px;font-size:12.8px;color:#9a7a3a;margin:18px 0 26px;
}
.rv-disclosure svg{width:16px;height:16px;flex-shrink:0;margin-top:2px;color:#D9A441}
.rv-disclosure a{color:#B8860B;text-decoration:underline}

.rv-layout{display:grid;grid-template-columns:1fr 332px;gap:40px;align-items:start}
.rv-main{min-width:0}
.rv-side{position:sticky;top:88px}

.rv-block{margin-bottom:38px;scroll-margin-top:80px} /* room for sticky header when Jump To links scroll to a section */
.rv-block > h2{font-size:23px;font-weight:600;margin-bottom:14px;display:flex;align-items:center;gap:10px}
.rv-block > h2 .bar{width:4px;height:20px;background:var(--indigo);border-radius:3px;display:inline-block}
.rv-block p{color:var(--ink-soft);margin-bottom:13px;font-size:15.5px}
.rv-block p:last-child{margin-bottom:0}

/* best / worst */
.bw{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.bw .card{border-radius:13px;padding:18px 20px;border:1px solid}
.bw .best{background:var(--pro-tint);border-color:#BFE7D5}
.bw .worst{background:var(--con-tint);border-color:#F2CACA}
.bw .card .h{font-family:'JetBrains Mono';font-size:11px;letter-spacing:.08em;text-transform:uppercase;display:flex;align-items:center;gap:7px;margin-bottom:8px;font-weight:500}
.bw .best .h{color:#0B7A53}
.bw .worst .h{color:#B22}
.bw .card .h svg{width:15px;height:15px}
.bw .card p{font-size:14px;margin:0;color:var(--ink-soft)}

/* sub-ratings (detail) */
.subratings{display:grid;grid-template-columns:1fr 1fr;gap:16px 34px;background:var(--surface);border:1px solid var(--line);border-radius:14px;padding:22px 24px}
.subrow .top{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:6px}
.subrow .top .name{font-size:14px;font-weight:500;color:var(--ink-soft)}
.subrow .top .val{font-family:'JetBrains Mono';font-weight:700;font-size:14px;color:var(--indigo)}
.subrow .track{height:7px;background:var(--line-soft);border-radius:7px;overflow:hidden}
.subrow .fill{height:100%;background:linear-gradient(90deg,var(--indigo),#7a72f0);border-radius:7px;width:0;transition:width 1.1s cubic-bezier(.2,.7,.2,1)}

/* pros cons */
.proscons{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.pc-col{border:1px solid var(--line);border-radius:14px;overflow:hidden}
.pc-col .pch{padding:13px 18px;font-family:'JetBrains Mono';font-size:12.5px;letter-spacing:.06em;text-transform:uppercase;font-weight:600;display:flex;align-items:center;gap:8px}
.pc-col.pros .pch{background:var(--pro-tint);color:#0B7A53}
.pc-col.cons .pch{background:var(--con-tint);color:#B22}
.pc-col .pch svg{width:16px;height:16px}
.pc-col ul{list-style:none;padding:14px 18px;display:grid;gap:11px}
.pc-col li{display:flex;gap:10px;font-size:14px;color:var(--ink-soft);align-items:flex-start}
.pc-col li svg{width:16px;height:16px;flex-shrink:0;margin-top:2px}
.pc-col.pros li svg{color:var(--pro)}
.pc-col.cons li svg{color:var(--con)}

/* pricing */
.ptable{border:1px solid var(--line);border-radius:14px;overflow:hidden}
.ptable .prow{display:grid;grid-template-columns:1.1fr .9fr 2fr;align-items:center;padding:15px 20px;border-bottom:1px solid var(--line-soft)}
.ptable .prow:last-child{border-bottom:none}
.ptable .prow.h{background:#FAFAFD;font-family:'JetBrains Mono';font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted-2);font-weight:500}
.ptable .plan{font-family:'Space Grotesk';font-weight:600;font-size:15.5px}
.ptable .cost{font-family:'JetBrains Mono';font-weight:700;font-size:15px;color:var(--ink)}
.ptable .cost small{font-weight:400;color:var(--muted-2);font-size:12px}
.ptable .desc{font-size:13.5px;color:var(--muted)}
.ptable .prow.featured{background:var(--indigo-tint)}

/* screenshots */
.shots{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.shot-figure{margin:0;display:flex;flex-direction:column;gap:8px}
.shot{aspect-ratio:16/10;border-radius:12px;border:1px solid var(--line);overflow:hidden;position:relative;background:linear-gradient(135deg,#EEF0FB,#F6F4FF);text-decoration:none;color:inherit;cursor:pointer;transition:transform .18s,box-shadow .2s;display:block}
a.shot:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
.shot img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.shot .chrome{height:22px;background:#fff;border-bottom:1px solid var(--line);display:flex;align-items:center;gap:5px;padding:0 9px;position:relative;z-index:1}
.shot .chrome i{width:7px;height:7px;border-radius:50%;background:#D7D9E6}
.shot .body{position:absolute;inset:22px 0 0 0;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:8px;color:var(--muted-2)}
.shot .body svg{width:30px;height:30px;opacity:.5}
.shot-caption{font-size:13px;line-height:1.45;color:var(--muted);text-align:left;padding:0 2px}

/* best for / recommendation */
.bestfor{display:grid;gap:12px}
.bf-row{display:grid;grid-template-columns:170px 1fr;gap:18px;align-items:start;padding:16px 18px;border:1px solid var(--line);border-radius:13px;background:var(--surface)}
.bf-row .who{font-family:'Space Grotesk';font-weight:600;font-size:15px;color:var(--indigo-deep)}
.bf-row .why{font-size:14px;color:var(--ink-soft)}

/* alternatives */
.alts{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.altcard{border:1px solid var(--line);border-radius:13px;padding:16px 18px;cursor:pointer;transition:transform .16s, box-shadow .2s,border-color .2s;background:var(--surface);display:block}
.altcard:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);border-color:var(--indigo-tint-2)}
.altcard .at{display:flex;align-items:center;gap:10px;margin-bottom:8px}
.altcard .al{width:34px;height:34px;border-radius:9px;background:var(--indigo-tint);display:flex;align-items:center;justify-content:center;font-family:'Space Grotesk';font-weight:700;color:var(--indigo);font-size:15px}
.altcard .an{font-family:'Space Grotesk';font-weight:600;font-size:15px}
.altcard .as{font-family:'JetBrains Mono';font-size:12px;color:var(--indigo);font-weight:500}
.altcard .ad{font-size:13px;color:var(--muted)}

/* faq */
.faq{border:1px solid var(--line);border-radius:14px;overflow:hidden;background:var(--surface)}
.faq-item{border-bottom:1px solid var(--line-soft)}
.faq-item:last-child{border-bottom:none}
.faq-q{padding:17px 20px;display:flex;justify-content:space-between;align-items:center;gap:14px;cursor:pointer;font-family:'Space Grotesk';font-weight:600;font-size:15.5px}
.faq-q .ico{width:22px;height:22px;border-radius:6px;background:var(--indigo-tint);color:var(--indigo);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:transform .25s}
.faq-q .ico svg{width:13px;height:13px}
.faq-item.open .faq-q .ico{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease;padding:0 20px}
.faq-a p{font-size:14.5px;color:var(--muted);padding-bottom:18px;margin:0}
.faq-item.open .faq-a{max-height:800px}

/* conclusion */
.conclusion{background:linear-gradient(150deg,#1b1d33,#2a2750);border-radius:18px;padding:34px 36px;color:#e9eaf5;position:relative;overflow:hidden}
.conclusion:before{content:"";position:absolute;top:-90px;right:-60px;width:300px;height:300px;background:radial-gradient(circle,rgba(124,114,255,.35),transparent 62%)}
.conclusion h2{color:#fff;font-size:24px;margin-bottom:12px;position:relative}
.conclusion p{color:#c3c5e0;font-size:15px;position:relative;margin-bottom:18px;max-width:62ch}
.conclusion .cscore{display:inline-flex;align-items:center;gap:12px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:12px;padding:12px 18px;margin-bottom:20px;position:relative}
.conclusion .cscore .n{font-family:'JetBrains Mono';font-weight:700;font-size:28px;color:#fff}
.conclusion .cscore .t{font-size:12.5px;color:#b9bbe0;line-height:1.3}

/* comments */
.comments .clogin{
  border:1px dashed var(--line);border-radius:14px;padding:22px;text-align:center;background:#FCFCFE;margin-bottom:22px;
}
.comments .clogin .lock{width:42px;height:42px;border-radius:11px;background:var(--indigo-tint);display:inline-flex;align-items:center;justify-content:center;margin-bottom:12px}
.comments .clogin .lock svg{width:20px;height:20px;color:var(--indigo)}
.comments .clogin h3{font-size:16px;font-weight:600;margin-bottom:5px}
.comments .clogin p{font-size:13.5px;color:var(--muted);margin-bottom:14px}
.comments .clogin .cbtns{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.comments .note{font-size:12.5px;color:var(--indigo);font-family:'JetBrains Mono';margin-top:12px}
/* Comment thread: each comment is its own subtle card so the whole section
   doesn't look like unstructured text floating on the paper background. */
.cthread{display:grid;gap:12px}
.cmt{
  display:flex;gap:13px;padding:16px 18px;
  background:var(--surface);border:1px solid var(--line-soft);border-radius:12px;
}
.cmt:last-child{border-bottom:1px solid var(--line-soft)} /* keep card border on final item */
/* Nested (reply) comments indent + inherit the card treatment */
.commentlist .children{padding-left:44px;margin-top:12px;display:grid;gap:12px}
.cmt .av{width:38px;height:38px;border-radius:50%;background:var(--indigo-tint);color:var(--indigo);display:flex;align-items:center;justify-content:center;font-family:'Space Grotesk';font-weight:600;font-size:14px;flex-shrink:0;overflow:hidden}
.cmt .av img{width:100%;height:100%;object-fit:cover}
.cmt .cb{flex:1}
.cmt .ch{display:flex;align-items:center;gap:9px;margin-bottom:3px}
.cmt .ch .cn{font-weight:600;font-size:14px}
.cmt .ch .cd{font-family:'JetBrains Mono';font-size:11px;color:var(--muted-2)}
.cmt .ct{font-size:14px;color:var(--ink-soft)}
.cmt .reply-link a{font-family:'JetBrains Mono';font-size:11px;color:var(--indigo)}

/* WP core comment-list adjustments so nested comments look right */
.commentlist,.commentlist ol{list-style:none;padding:0;margin:22px 0 0;display:grid;gap:0}
.commentlist .children{padding-left:52px;margin-top:16px}
/* Comment form (logged-in state): render inline with the review column, no card.
   The prototype only shows the log-in gate (with dashed border); the actual form is
   for logged-in users and should visually match the inline comment thread — no
   floating card treatment. */
.comment-respond{margin-top:22px;padding:0;border:0;background:transparent}
.comment-respond h3{font-size:19px;font-weight:600;margin-bottom:14px;font-family:'Space Grotesk',sans-serif}
.comment-form p{margin-bottom:12px}
/* Hide the "Required fields are marked *" line + the * next to labels (matches Fluent Forms treatment) */
.comment-form .comment-notes,
.comment-form label .required{display:none}
.comment-form label{display:block;font-size:13px;font-weight:500;color:var(--ink-soft);margin-bottom:6px}
.comment-form input[type=text],.comment-form input[type=email],.comment-form input[type=url],.comment-form textarea{width:100%;border:1px solid var(--line);border-radius:10px;padding:11px 13px;font-family:'Inter';font-size:14.5px;color:var(--ink);background:#FCFCFE}
.comment-form textarea{resize:vertical;min-height:120px}
.comment-form .form-submit input{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'Inter',sans-serif;font-weight:600;font-size:14.5px;
  padding:12px 20px;border-radius:11px;cursor:pointer;border:1px solid transparent;
  background:var(--indigo);color:#fff;box-shadow:0 6px 16px -6px rgba(79,70,229,.55);
}

/* ---------- blog ---------- */
.bloggrid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.blogcard{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;cursor:pointer;transition:transform .18s,box-shadow .2s,border-color .2s;display:flex;flex-direction:column}
.blogcard:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:var(--indigo-tint-2)}
.blogcard .thumb{aspect-ratio:16/9;background:linear-gradient(135deg,#EEF0FB,#E9E6FF);position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}
.blogcard .thumb img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.blogcard .thumb .glyph{opacity:.45}
.blogcard .thumb .glyph svg{width:46px;height:46px;color:var(--indigo)}
.blogcard .thumb .catpill{position:absolute;top:12px;left:12px;font-family:'JetBrains Mono';font-size:10.5px;letter-spacing:.04em;background:rgba(255,255,255,.92);color:var(--indigo-deep);padding:4px 10px;border-radius:20px;font-weight:500;backdrop-filter:blur(4px);z-index:2}
.blogcard .bc{padding:18px 20px 20px;display:flex;flex-direction:column;flex:1}
.blogcard h3{font-size:18px;font-weight:600;line-height:1.25;margin-bottom:8px}
.blogcard p{font-size:13.8px;color:var(--muted);flex:1;margin-bottom:14px}
.blogcard .bm{font-family:'JetBrains Mono';font-size:11.5px;color:var(--muted-2);display:flex;gap:10px;align-items:center}
.blogcard .bm .dot{width:3px;height:3px;border-radius:50%;background:var(--muted-2)}

/* feature blog */
.featblog{display:grid;grid-template-columns:1fr 1.15fr;gap:0;background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;margin-bottom:30px;cursor:pointer;transition:box-shadow .2s,border-color .2s}
.featblog:hover{box-shadow:var(--shadow-md);border-color:var(--indigo-tint-2)}
.featblog .fthumb{background:linear-gradient(140deg,#4F46E5,#6b63f5 60%,#8b84ff);position:relative;min-height:260px;display:flex;align-items:center;justify-content:center;overflow:hidden}
.featblog .fthumb img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.featblog .fthumb:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 70% 30%,rgba(255,255,255,.18),transparent 55%)}
.featblog .fthumb .fg{color:rgba(255,255,255,.85);position:relative}
.featblog .fthumb .fg svg{width:64px;height:64px}
.featblog .fb{padding:40px 44px;display:flex;flex-direction:column;justify-content:center;gap:14px}
.featblog .fb .featured-badge{
  font-family:'JetBrains Mono';font-size:10.5px;letter-spacing:.08em;
  color:var(--indigo);text-transform:uppercase;font-weight:500;
  display:flex;align-items:center;gap:8px;
}
.featblog .fb .featured-badge::before{
  content:"";width:22px;height:1.5px;background:var(--indigo);display:inline-block;
}
.featblog .fb .catpill{align-self:flex-start;font-family:'JetBrains Mono';font-size:11px;letter-spacing:.04em;background:var(--indigo-tint);color:var(--indigo-deep);padding:5px 12px;border-radius:20px;font-weight:500;margin:0}
.featblog .fb h2{font-size:32px;font-weight:700;line-height:1.15;margin:0;color:var(--ink)}
.featblog .fb p{color:var(--muted);font-size:15.5px;line-height:1.55;margin:0}
.featblog .fb .bm{font-family:'JetBrains Mono';font-size:12px;color:var(--muted-2);display:flex;gap:10px;align-items:center;margin-top:4px}
.featblog .fb .read-more{
  font-family:'JetBrains Mono';font-size:12.5px;color:var(--indigo);
  margin-top:8px;display:inline-flex;align-items:center;gap:6px;
}

/* ---------- single post ---------- */
.post-hero{padding-bottom:22px}
.post-hero .eyebrow a{color:inherit;text-decoration:none}
.post-hero .eyebrow a:hover{color:var(--indigo)}
.post-hero h1{margin-bottom:16px;max-width:900px}
.post-hero .post-lede{
  font-size:19px;line-height:1.55;color:var(--muted);
  margin:0 0 20px;max-width:720px;
}
.post-hero .post-meta{
  display:flex;flex-wrap:wrap;gap:8px;
  font-family:'JetBrains Mono';font-size:12.5px;color:var(--muted-2);
}

.post-body-section{padding-top:8px}

/* Two-column layout for the article + sidebar */
.post-layout{display:grid;grid-template-columns:1fr 300px;gap:44px}
.post-main{min-width:0;align-self:start}
.post-side{display:grid;gap:18px;align-content:start;align-self:stretch}
/* Only the Jump-To TOC pins on scroll. When no TOC renders (post has no H2/H3
   headings) nothing sticks — the newsletter and featured cards scroll normally
   with the article body. */
.post-side .side-toc{position:sticky;top:88px;align-self:start;z-index:2}

/* Sidebar card shell — reused by newsletter + featured reviews cards */
.side-card{
  background:var(--surface);border:1px solid var(--line);border-radius:14px;
  padding:20px 22px;
}
.side-h{
  font-family:'Space Grotesk';font-weight:600;font-size:16px;color:var(--ink);
  margin-bottom:10px;display:flex;align-items:center;gap:8px;
}

/* Homepage subscribe band — full-width Fluent CRM signup near the bottom of front-page */
.home-subscribe{padding:64px 0}
.home-subscribe-card{
  background:linear-gradient(135deg,var(--indigo) 0%,var(--indigo-deep) 100%);
  border-radius:20px;padding:56px 64px;color:#fff;
  display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:center;
  box-shadow:0 24px 60px -30px rgba(79,70,229,.55);
  position:relative;overflow:hidden;
}
.home-subscribe-card::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(circle at 100% 0%,rgba(255,255,255,.15) 0%,transparent 55%);
}
.home-subscribe-copy{position:relative;z-index:1}
.home-subscribe-copy .eyebrow{color:rgba(255,255,255,.7);font-family:'JetBrains Mono';font-size:11px;letter-spacing:.08em;text-transform:uppercase;display:block;margin-bottom:14px}
.home-subscribe-copy h2{font-family:'Space Grotesk';font-size:34px;font-weight:700;line-height:1.15;margin:0 0 14px;color:#fff;letter-spacing:-0.02em}
.home-subscribe-copy p{font-size:15.5px;line-height:1.55;color:rgba(255,255,255,.85);margin:0}
.home-subscribe-form{position:relative;z-index:1}
.home-subscribe-inline{display:grid;grid-template-columns:1fr auto;gap:10px;align-items:center}
.home-subscribe-inline input{
  font-family:'Inter';font-size:15px;padding:14px 16px;
  border:1px solid rgba(255,255,255,.25);border-radius:11px;background:rgba(255,255,255,.14);
  color:#fff;outline:none;transition:border-color .15s,background .15s;min-width:0;
}
.home-subscribe-inline input::placeholder{color:rgba(255,255,255,.55)}
.home-subscribe-inline input:focus{border-color:#fff;background:rgba(255,255,255,.22)}
.home-subscribe-inline button{
  font-family:'Inter';font-size:14px;font-weight:600;
  background:#fff;color:var(--indigo-deep);border:0;border-radius:11px;padding:14px 22px;
  cursor:pointer;transition:transform .12s,box-shadow .18s;white-space:nowrap;
}
.home-subscribe-inline button:hover{transform:translateY(-1px);box-shadow:0 8px 20px -8px rgba(0,0,0,.25)}
.home-subscribe-note{font-size:11.5px;color:rgba(255,255,255,.65);margin-top:12px;letter-spacing:.02em}
/* Fluent CRM / Fluent Forms injected form — soften built-in styles so it sits inside our card */
.home-subscribe-form .fluentform,
.home-subscribe-form .fluentcrm-signup-form-wrapper,
.home-subscribe-form form{color:#fff}
.home-subscribe-form input[type="email"],
.home-subscribe-form input[type="text"],
.home-subscribe-form .ff-el-input--content input{
  background:rgba(255,255,255,.14) !important;
  border:1px solid rgba(255,255,255,.25) !important;
  color:#fff !important;border-radius:11px !important;
}
.home-subscribe-form input::placeholder,
.home-subscribe-form .ff-el-input--content input::placeholder{color:rgba(255,255,255,.55) !important}
.home-subscribe-form button,
.home-subscribe-form .ff-btn-submit{
  background:#fff !important;color:var(--indigo-deep) !important;
  border:0 !important;border-radius:11px !important;font-weight:600 !important;
}
.home-subscribe-form .ff-el-group>label,
.home-subscribe-form .ff-t-label{color:rgba(255,255,255,.85)}
.home-subscribe-form .ff-message-success{color:#fff}

/* Newsletter card */
.side-newsletter{background:linear-gradient(160deg,var(--indigo-tint) 0%,var(--surface) 60%);border-color:var(--indigo-tint-2)}
.side-newsletter .side-blurb{color:var(--muted);font-size:14px;line-height:1.55;margin-bottom:14px}
.side-newsletter-form{display:grid;gap:8px}
.side-newsletter-form input{
  font-family:'Inter';font-size:14px;padding:10px 13px;
  border:1px solid var(--line);border-radius:9px;background:#fff;color:var(--ink);
  outline:none;transition:border-color .15s,box-shadow .15s;
}
.side-newsletter-form input:focus{border-color:var(--indigo);box-shadow:0 0 0 3px var(--indigo-tint)}
.side-newsletter-form button{
  font-family:'Inter';font-size:14px;font-weight:500;
  background:var(--indigo);color:#fff;border:0;border-radius:9px;padding:10px 16px;
  cursor:pointer;transition:background .15s;
}
.side-newsletter-form button:hover{background:var(--indigo-deep)}
.side-note{font-size:11px;color:var(--muted-2);margin-top:10px}

/* Featured reviews list */
.side-review-list{list-style:none;margin:0;padding:0;display:grid;gap:2px}
.side-review-list li{margin:0}
.side-review{
  display:grid;grid-template-columns:36px 1fr auto;gap:11px;align-items:center;
  padding:9px 10px;margin:0 -10px;border-radius:9px;
  color:var(--ink);text-decoration:none;transition:background .12s;
}
.side-review:hover{background:var(--indigo-tint)}
.side-review-logo{
  width:36px;height:36px;border-radius:8px;overflow:hidden;
  background:var(--indigo-tint);color:var(--indigo-deep);
  display:flex;align-items:center;justify-content:center;font-weight:600;font-size:14px;
}
.side-review-logo img{width:100%;height:100%;object-fit:cover}
.side-review-body{min-width:0}
.side-review-name{font-size:13.5px;font-weight:500;color:var(--ink);line-height:1.3;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.side-review-cat{font-size:10.5px;color:var(--muted-2);letter-spacing:.02em;margin-top:1px}
.side-review-score{font-family:'Space Grotesk';font-weight:700;font-size:15px;color:var(--indigo)}
.side-view-all{
  display:block;margin-top:12px;font-size:12px;color:var(--indigo);
  text-decoration:none;letter-spacing:.02em;
}
.side-view-all:hover{color:var(--indigo-deep)}

/* Jump-To TOC card */
.side-toc{padding:16px 18px}
.side-toc-eyebrow{
  font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted-2);
  margin-bottom:10px;
}
.side-toc-list{list-style:none;margin:0;padding:0;display:grid;gap:2px;
  max-height:60vh;overflow-y:auto;
}
.side-toc-item{margin:0}
.side-toc-item a{
  display:block;padding:6px 10px;margin:0 -10px;
  font-size:13.5px;line-height:1.4;color:var(--ink-soft);text-decoration:none;
  border-left:2px solid transparent;border-radius:6px;
  transition:background .12s,color .12s,border-color .12s;
}
.side-toc-item a:hover{background:var(--indigo-tint);color:var(--ink)}
.side-toc-l3 a{padding-left:22px;font-size:13px;color:var(--muted)}
.side-toc-item.is-active > a{
  color:var(--indigo);background:var(--indigo-tint);
  border-left-color:var(--indigo);border-radius:0 6px 6px 0;
}

/* Anchor offset so headings don't hide under the sticky header on scroll */
.post-prose h2,.post-prose h3{scroll-margin-top:96px}

@media (max-width:900px){
  .post-layout{grid-template-columns:1fr;gap:32px}
  .post-side{max-width:520px}
  .post-side .side-toc{position:static;top:auto}
  .side-toc{display:none}
}

.post-hero-img{
  max-width:820px;height:340px;border-radius:16px;overflow:hidden;
  margin:0 0 32px;background:var(--indigo-tint);
  display:flex;align-items:center;justify-content:center;
}
.post-hero-img img{width:100%;height:100%;object-fit:cover;display:block}
.post-hero-img--glyph{background:linear-gradient(135deg,var(--indigo) 0%,var(--indigo-deep) 100%);color:#fff}
.post-hero-img--glyph svg{width:64px;height:64px;stroke:#fff;opacity:.85}

.post-prose{max-width:760px;font-size:16.5px;color:var(--ink-soft);line-height:1.7}
.post-prose > p:first-child::first-letter{
  font-family:'Space Grotesk';font-weight:700;font-size:52px;line-height:.9;
  color:var(--ink);float:left;margin:6px 10px 0 0;
}
.post-prose p{margin-bottom:18px}
.post-prose h2{font-family:'Space Grotesk';font-weight:700;font-size:26px;margin:38px 0 12px;color:var(--ink)}
.post-prose h3{font-family:'Space Grotesk';font-weight:600;font-size:20px;margin:28px 0 10px;color:var(--ink)}
.post-prose ul,.post-prose ol{margin:0 0 18px 22px}
.post-prose li{margin-bottom:8px}
.post-prose li strong{color:var(--ink)}
.post-prose a{color:var(--indigo);text-decoration:underline;text-underline-offset:2px}
.post-prose a:hover{color:var(--indigo-deep)}
.post-prose blockquote{border-left:3px solid var(--indigo);padding:8px 18px;margin:22px 0;color:var(--muted);font-style:italic}
.post-prose img{border-radius:12px;margin:22px 0;max-width:100%}
.post-prose code{font-family:'JetBrains Mono';background:var(--line-soft);padding:2px 6px;border-radius:5px;font-size:.9em}

/* Related posts row */
.post-related{padding-top:44px;border-top:1px solid var(--line-soft);margin-top:12px}
.post-related-h{
  font-size:23px;font-weight:600;margin-bottom:18px;
  display:flex;align-items:center;gap:10px;
}
.post-related-h .bar{width:4px;height:20px;background:var(--indigo);border-radius:3px;display:inline-block}

.post-comments-section{padding-top:12px}

@media (max-width:720px){
  .post-hero-img{height:220px}
  .post-prose > p:first-child::first-letter{font-size:42px}
}

/* ---------- about ---------- */
.about-hero{padding-top:60px;padding-bottom:40px;text-align:center}
.about-hero .eyebrow{margin-bottom:14px;display:inline-block}
.about-hero h1{font-size:44px;font-weight:700;max-width:18ch;margin:0 auto 16px}
.about-hero p{font-size:18px;color:var(--muted);max-width:56ch;margin:0 auto}
.statband{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border:1px solid var(--line);border-radius:16px;overflow:hidden;background:var(--surface);margin:38px 0 8px}
.statband .st{padding:24px 22px;text-align:center;border-right:1px solid var(--line)}
.statband .st:last-child{border-right:none}
.statband .st .n{font-family:'JetBrains Mono';font-weight:700;font-size:30px;color:var(--indigo);line-height:1}
.statband .st .l{font-size:13px;color:var(--muted);margin-top:6px}
.howgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;counter-reset:step}
.howcard{background:var(--surface);border:1px solid var(--line);border-radius:14px;padding:22px 20px;position:relative}
.howcard .step{font-family:'JetBrains Mono';font-weight:700;font-size:13px;color:var(--indigo);background:var(--indigo-tint);width:30px;height:30px;border-radius:8px;display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.howcard h3{font-size:16px;font-weight:600;margin-bottom:7px}
.howcard p{font-size:13.5px;color:var(--muted)}
.valuesgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.valuecard{background:var(--surface);border:1px solid var(--line);border-radius:14px;padding:24px}
.valuecard .vic{width:40px;height:40px;border-radius:10px;background:var(--indigo-tint);display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.valuecard .vic svg{width:20px;height:20px;color:var(--indigo)}
.valuecard h3{font-size:17px;font-weight:600;margin-bottom:7px}
.valuecard p{font-size:14px;color:var(--muted)}

/* ---------- contact ---------- */
.contactgrid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start}
.cform{background:var(--surface);border:1px solid var(--line);border-radius:16px;padding:28px}
.cform p{margin-bottom:14px}
.field{margin-bottom:16px}
.field label{display:block;font-size:13px;font-weight:500;color:var(--ink-soft);margin-bottom:6px}
/* Form-plugin polish: make Contact Form 7 / WPForms / Fluent Forms output
   look like the prototype's static form. All three drop inputs/labels/buttons
   inside the .cform wrapper. */
.field input,.field textarea,
.cform input[type=text],.cform input[type=email],.cform input[type=url],
.cform input[type=tel],.cform input[type=number],.cform textarea,.cform select,
.wpcf7 input[type=text],.wpcf7 input[type=email],.wpcf7 input[type=url],
.wpcf7 input[type=tel],.wpcf7 input[type=number],.wpcf7 textarea,.wpcf7 select,
.wpforms-container input[type=text],.wpforms-container input[type=email],
.wpforms-container input[type=tel],.wpforms-container input[type=url],
.wpforms-container textarea,.wpforms-container select,
.fluentform input[type=text],.fluentform input[type=email],
.fluentform input[type=tel],.fluentform input[type=url],
.fluentform textarea,.fluentform select{
  width:100%;border:1px solid var(--line);border-radius:10px;padding:11px 13px;
  font-family:'Inter';font-size:14.5px;color:var(--ink);background:#FCFCFE
}
/* Focus state — indigo glow, matches the static form */
.cform input:focus,.cform textarea:focus,.cform select:focus,
.wpcf7 input:focus,.wpcf7 textarea:focus,.wpcf7 select:focus,
.wpforms-container input:focus,.wpforms-container textarea:focus,
.fluentform input:focus,.fluentform textarea:focus{
  outline:none;border-color:var(--indigo);box-shadow:0 0 0 3px rgba(79,70,229,.12)
}
/* Labels */
.cform label,.wpcf7 label,.wpforms-container label,.fluentform label{
  display:block;font-size:13px;font-weight:500;color:var(--ink-soft);margin-bottom:6px
}
/* Submit buttons — use the same indigo primary button */
.cform input[type=submit],.cform button[type=submit],
.wpcf7 input[type=submit],.wpcf7 button[type=submit],
.wpforms-container input[type=submit],.wpforms-container button[type=submit],
.fluentform input[type=submit],.fluentform button[type=submit]{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:'Inter',sans-serif;font-weight:600;font-size:14.5px;
  padding:12px 20px;border-radius:11px;cursor:pointer;border:1px solid transparent;
  background:var(--indigo);color:#fff;
  box-shadow:0 6px 16px -6px rgba(79,70,229,.55);
  transition:background .2s,transform .15s,box-shadow .2s;
  line-height:normal;width:100%
}
.cform input[type=submit]:hover,.cform button[type=submit]:hover,
.wpcf7 input[type=submit]:hover,.wpcf7 button[type=submit]:hover,
.wpforms-container button[type=submit]:hover,
.fluentform button[type=submit]:hover{
  background:var(--indigo-deep);transform:translateY(-1px)
}
/* CF7 inline validation + response messages */
.wpcf7 form .wpcf7-response-output{
  border:1px solid var(--line);border-radius:10px;padding:11px 15px;font-size:14px;
  margin-top:14px
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output{border-color:var(--con);color:var(--con)}
.wpcf7 form.sent .wpcf7-response-output{border-color:var(--pro);color:var(--pro)}
.wpcf7-not-valid-tip{color:var(--con);font-size:12.5px;margin-top:4px;display:block}
/* Spacing between fields */
.wpcf7 p,.wpforms-container .wpforms-field,.fluentform .ff-el-group{margin-bottom:16px}

/* ==========================================================================
   Fluent Forms — specific overrides for its actual class structure so its
   default output blends into the prototype's contact form design.
   ==========================================================================*/

/* Form container: strip its default padding, we style via .cform */
.cform .frm-fluent-form,.cform form.frm-fluent-form{
  padding:0;background:transparent;box-shadow:none
}

/* Field wrappers */
.cform .frm-fluent-form .ff-el-group{margin-bottom:16px}
.cform .frm-fluent-form .ff-t-container{gap:16px}

/* Labels */
.cform .frm-fluent-form .ff-el-input--label label,
.cform .frm-fluent-form .ff-el-group-title,
.cform .frm-fluent-form label{
  display:block;font-family:'Inter',sans-serif;font-size:13px;font-weight:500;
  color:var(--ink-soft);margin-bottom:6px;padding:0
}

/* All input types + textarea + select — the .ff-el-form-control class covers them */
.cform .frm-fluent-form .ff-el-form-control,
.cform .frm-fluent-form input[type=text],
.cform .frm-fluent-form input[type=email],
.cform .frm-fluent-form input[type=url],
.cform .frm-fluent-form input[type=tel],
.cform .frm-fluent-form input[type=number],
.cform .frm-fluent-form textarea,
.cform .frm-fluent-form select{
  width:100%;border:1px solid var(--line);border-radius:10px;padding:11px 13px;
  font-family:'Inter',sans-serif;font-size:14.5px;color:var(--ink);
  background:#FCFCFE;line-height:1.5;box-shadow:none;outline:none;
  min-height:auto;height:auto
}
.cform .frm-fluent-form textarea{min-height:120px;resize:vertical}
.cform .frm-fluent-form .ff-el-form-control:focus,
.cform .frm-fluent-form input:focus,
.cform .frm-fluent-form textarea:focus,
.cform .frm-fluent-form select:focus{
  outline:none;border-color:var(--indigo);
  box-shadow:0 0 0 3px rgba(79,70,229,.12)
}

/* Submit button — .ff-btn.ff-btn-submit — override the plugin's default */
.cform .frm-fluent-form .ff-btn,
.cform .frm-fluent-form .ff-btn.ff-btn-submit,
.cform .frm-fluent-form button[type=submit]{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:'Inter',sans-serif;font-weight:600;font-size:14.5px;
  padding:12px 20px;border-radius:11px;cursor:pointer;border:1px solid transparent;
  background:var(--indigo);color:#fff;
  box-shadow:0 6px 16px -6px rgba(79,70,229,.55);
  transition:background .2s,transform .15s,box-shadow .2s;
  line-height:normal;width:100%;text-transform:none;letter-spacing:normal;
  min-height:auto;height:auto
}
.cform .frm-fluent-form .ff-btn:hover,
.cform .frm-fluent-form .ff-btn.ff-btn-submit:hover,
.cform .frm-fluent-form button[type=submit]:hover{
  background:var(--indigo-deep);transform:translateY(-1px);
  box-shadow:0 10px 22px -8px rgba(79,70,229,.6)
}

/* Prototype design doesn't show required-field asterisks — hide them.
   Fluent Forms marks required labels with the .asterisk-right class and injects
   a red * via pseudo-element. Suppress the whole indicator to match the design. */
.cform .frm-fluent-form .ff-el-is-required.asterisk-right::after,
.cform .frm-fluent-form .asterisk-right::after,
.cform .frm-fluent-form label.asterisk-right::after,
.cform .frm-fluent-form .ff-el-input--label .required{display:none}

/* Inline error text */
.cform .frm-fluent-form .error,
.cform .frm-fluent-form .ff-el-input--content .error,
.cform .frm-fluent-form .text-danger{
  color:var(--con);font-size:12.5px;margin-top:4px;font-family:'Inter',sans-serif
}
.cform .frm-fluent-form .ff-el-form-control.error{border-color:var(--con)}

/* Success message */
.cform .ff-message-success,
.cform .frm-fluent-form + .ff-message-success{
  border:1px solid #BFE7D5;background:var(--pro-tint);color:#0B7A53;
  border-radius:11px;padding:14px 18px;font-size:14px;margin-top:14px
}

/* Radio + checkbox — style if the form uses them */
.cform .frm-fluent-form input[type=radio],
.cform .frm-fluent-form input[type=checkbox]{
  accent-color:var(--indigo);margin-right:6px
}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--indigo);box-shadow:0 0 0 3px rgba(79,70,229,.12)}
.field textarea{resize:vertical;min-height:120px}
.cinfo .ci-item{display:flex;gap:14px;align-items:flex-start;padding:18px 0;border-bottom:1px solid var(--line-soft)}
.cinfo .ci-item:last-child{border-bottom:none}
.cinfo .ci-ic{width:42px;height:42px;border-radius:11px;background:var(--indigo-tint);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.cinfo .ci-ic svg{width:20px;height:20px;color:var(--indigo)}
.cinfo .ci-item h3{font-size:15.5px;font-weight:600;margin-bottom:3px}
.cinfo .ci-item p{font-size:14px;color:var(--muted)}

/* generic prose page (disclosure / privacy) */
.prose{max-width:760px}
.prose h2{font-size:21px;font-weight:600;margin:28px 0 10px}
.prose p{color:var(--ink-soft);font-size:15.5px;margin-bottom:14px}
.prose .updated{font-family:'JetBrains Mono';font-size:12px;color:var(--muted-2);margin-bottom:8px}
.prose ul,.prose ol{margin:0 0 16px 22px;color:var(--ink-soft)}
.prose li{margin-bottom:6px;font-size:15.5px}
.prose a{color:var(--indigo);text-decoration:underline}

/* ---------- footer ---------- */
footer.site{background:#13152a;color:#aeb0c8;padding:54px 0 30px;margin-top:20px}
.footgrid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:34px;padding-bottom:34px;border-bottom:1px solid rgba(255,255,255,.08)}
.footbrand .brand .name{color:#fff}
.footbrand .brand .name span{color:#a094ff} /* lighter indigo so "Playbook" clears 3:1 contrast on the dark footer */
.footbrand p{font-size:13.5px;color:#8f92ad;margin-top:14px;max-width:34ch}
.footcol h4{font-family:'JetBrains Mono';font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:#7d80a0;margin-bottom:14px;font-weight:500}
.footcol a{display:block;font-size:14px;color:#b9bbd2;padding:5px 0;cursor:pointer;transition:color .15s}
.footcol a:hover{color:#fff}
.footcol ul{list-style:none;padding:0;margin:0}
.footcol li{list-style:none;padding:0;margin:0}
.footcol li::marker{content:none}
.footcol li a{display:block}
.footdisc{display:flex;gap:11px;align-items:flex-start;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);border-radius:11px;padding:14px 17px;margin:26px 0 20px;font-size:12.5px;color:#9092ad}
.footdisc svg{width:16px;height:16px;flex-shrink:0;margin-top:2px;color:#7c74ff}
.footbottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px;font-size:12.5px;color:#7d80a0}

/* ---------- lightbox (for screenshot enlarge) ---------- */
.tpb-lightbox{
  position:fixed;inset:0;background:rgba(15,17,32,.88);display:flex;
  align-items:center;justify-content:center;z-index:9999;padding:40px;
  opacity:0;pointer-events:none;transition:opacity .2s ease;cursor:zoom-out;
}
.tpb-lightbox.open{opacity:1;pointer-events:auto}
.tpb-lightbox img{max-width:100%;max-height:100%;border-radius:12px;box-shadow:0 40px 80px -20px rgba(0,0,0,.6)}
.tpb-lightbox .tpb-lb-close{
  position:absolute;top:22px;right:22px;width:40px;height:40px;border-radius:50%;
  background:rgba(255,255,255,.15);border:none;color:#fff;font-size:24px;line-height:1;
  cursor:pointer;transition:background .15s;display:flex;align-items:center;justify-content:center;
}
.tpb-lightbox .tpb-lb-close:hover{background:rgba(255,255,255,.28)}
.tpb-lightbox .tpb-lb-nav{
  position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;
  border-radius:50%;background:rgba(255,255,255,.15);border:none;color:#fff;
  font-size:22px;cursor:pointer;transition:background .15s;
  display:flex;align-items:center;justify-content:center;
}
.tpb-lightbox .tpb-lb-nav:hover{background:rgba(255,255,255,.28)}
.tpb-lightbox .tpb-lb-prev{left:22px}
.tpb-lightbox .tpb-lb-next{right:22px}
@media(max-width:720px){
  .tpb-lightbox{padding:20px}
  .tpb-lightbox .tpb-lb-nav{width:36px;height:36px}
}

/* ---------- pagination ---------- */
.pagination{display:flex;gap:8px;justify-content:center;margin-top:34px;flex-wrap:wrap}
.pagination .page-numbers{
  font-family:'Inter';font-size:13.5px;font-weight:500;color:var(--muted);
  border:1px solid var(--line);background:var(--surface);border-radius:9px;
  padding:8px 13px;transition:all .15s;
}
.pagination .page-numbers:hover{border-color:var(--indigo);color:var(--indigo)}
.pagination .page-numbers.current{background:var(--ink);color:#fff;border-color:var(--ink)}

/* ---------- responsive ---------- */
@media(max-width:1000px){
  .hero-grid{grid-template-columns:1fr;gap:36px}
  .rv-layout{grid-template-columns:1fr;gap:0}
  .rv-side{position:static;margin-bottom:34px;max-width:420px}
  .featblog{grid-template-columns:1fr}
  .featblog .fthumb{min-height:180px}
  .statband,.howgrid{grid-template-columns:repeat(2,1fr)}
  .bloggrid,.catgrid,.shots,.alts,.valuesgrid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:720px){
  .menu{
    display:none;position:fixed;top:66px;left:0;right:0;
    height:calc(100vh - 66px);height:calc(100dvh - 66px);
    flex-direction:column;background:var(--surface);border-top:1px solid var(--line);
    padding:14px 16px 24px;gap:4px;box-shadow:var(--shadow-md);
    overflow-y:auto;z-index:60;
  }
  .menu ul{flex-direction:column;align-items:stretch;width:100%}
  .menu li{width:100%}
  .menu.open{display:flex}
  .menu a{display:block;padding:14px 14px;border-radius:10px;text-align:left;font-size:16px}
  body.tpb-menu-open{overflow:hidden}
  .hamb{display:flex}
  .nav-right .btn{display:none}
  .hero h1{font-size:36px}
  .pintro h1,.about-hero h1{font-size:31px}
  .section-head h2{font-size:26px}
  .revgrid,.bloggrid,.catgrid,.trustband,.shots,.bw,.proscons,.subratings,.alts,.statband,.howgrid,.valuesgrid,.contactgrid{grid-template-columns:1fr}
  .rc-pc{grid-template-columns:1fr}
  .bf-row{grid-template-columns:1fr;gap:6px}
  .ptable .prow{grid-template-columns:1fr;gap:6px;text-align:left}
  .ptable .prow.h{display:none}
  .footgrid{grid-template-columns:1fr 1fr;gap:26px}
  .footbrand{grid-column:1/-1}
  .section{padding:46px 0}
  .conclusion{padding:26px 22px}
  .rv-meta{margin-left:0;text-align:left}
  .home-subscribe{padding:40px 0}
  .home-subscribe-card{grid-template-columns:1fr;gap:28px;padding:36px 26px;border-radius:16px}
  .home-subscribe-copy h2{font-size:26px}
  .home-subscribe-copy p{font-size:14.5px}
  .home-subscribe-inline{grid-template-columns:1fr}
  .home-subscribe-inline button{padding:14px 20px}
}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}
