:root {
  --ink: #0f172a;
  --muted: #64748b;
  --line: #dbe3ef;
  --surface: #ffffff;
  --soft: #f8fafc;
  --blue: #2563eb;
  --blue-dark: #1e40af;
  --lime: #84cc16;
  --orange: #f97316;
  --cyan: #06b6d4;
  --red: #dc2626;
  --amber: #d97706;
  --green: #059669;
  --shadow: 0 18px 50px rgba(15, 23, 42, .10);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 227, 239, .85);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan) 50%, var(--lime));
  box-shadow: 0 10px 25px rgba(37, 99, 235, .25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .95rem;
  color: #334155;
}

.nav-links a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(249, 115, 22, .22);
}

.button-secondary {
  color: var(--blue-dark);
  background: #eff6ff;
  border-color: #bfdbfe;
}

.hero {
  padding: 64px 0 42px;
  background:
    radial-gradient(circle at 86% 18%, rgba(132, 204, 22, .28), transparent 34%),
    radial-gradient(circle at 14% 8%, rgba(37, 99, 235, .18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #eff6ff;
  font-size: .85rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.25rem, 4vw, 4.35rem);
}

h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  max-width: 690px;
  margin: 18px 0 0;
  font-size: 1.08rem;
  color: #475569;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.stats-bar div {
  padding: 14px;
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
}

.stats-bar strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.stats-bar span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}

.hero-panel {
  border: 1px solid rgba(219, 227, 239, .9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
  padding: 18px;
}

.score-board {
  display: grid;
  gap: 12px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-header span {
  color: var(--muted);
  font-size: .88rem;
}

.score-row {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  background: #fff;
}

.logo-tile {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.rating {
  color: #065f46;
  padding: 4px 9px;
  border-radius: 999px;
  font-weight: 900;
  background: #dcfce7;
}

.toolbar {
  margin: 28px 0;
  padding: 14px;
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(15, 23, 42, .06);
}

.input,
.select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.section {
  padding: 48px 0;
}

.section-tight {
  padding-top: 28px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-heading p {
  margin: 8px 0 0;
  max-width: 690px;
  color: var(--muted);
}

.category-grid,
.project-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.project-card,
.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.category-card {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.category-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--lime), var(--orange));
}

.category-card p,
.project-card p,
.content-card p {
  color: var(--muted);
}

.category-count {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #ecfeff;
  color: #155e75;
  font-weight: 900;
  font-size: .78rem;
}

.project-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
}

.project-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.project-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-title {
  align-items: flex-start;
  margin-bottom: 16px;
}

.logo-large {
  width: 58px;
  height: 58px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  color: #1e3a8a;
  background: #dbeafe;
  font-size: .82rem;
  font-weight: 800;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.status {
  display: inline-flex;
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
}

.status-ok {
  color: #065f46;
  background: #dcfce7;
}

.status-warn {
  color: #92400e;
  background: #fef3c7;
}

.status-risk {
  color: #991b1b;
  background: #fee2e2;
}

.deal {
  color: #9a3412;
  background: #ffedd5;
  border-radius: var(--radius);
  padding: 10px;
  font-weight: 900;
}

.project-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.project-actions .button {
  flex: 1;
}

.full {
  width: 100%;
  margin-top: 10px;
}

.review-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 22px;
  align-items: start;
}

.review-main,
.review-side {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.review-side {
  position: sticky;
  top: 92px;
}

.review-main h2 {
  margin-top: 28px;
}

.review-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  margin-bottom: 16px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.metric {
  padding: 14px;
  border-radius: var(--radius);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.metric strong {
  display: block;
  font-size: 1.35rem;
}

.check-list {
  padding-left: 20px;
}

.check-list li {
  margin: 8px 0;
}

.alert-list {
  padding: 14px 14px 14px 34px;
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  background: #fff7ed;
}

.side-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.side-note p,
.side-note ul {
  color: var(--muted);
  font-size: .92rem;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: #fff;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: top;
}

th {
  color: #334155;
  background: #f8fafc;
  font-size: .86rem;
}

tr:last-child td {
  border-bottom: 0;
}

td a {
  color: var(--blue-dark);
  font-weight: 900;
}

.text-page {
  max-width: 840px;
}

.content-card {
  padding: 28px;
}

.footer {
  margin-top: 48px;
  padding: 34px 0;
  color: #cbd5e1;
  background: #0f172a;
}

.footer a {
  color: #e0f2fe;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.empty {
  padding: 28px;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
}

@media (max-width: 900px) {
  .hero-grid,
  .review-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .project-grid,
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .toolbar {
    grid-template-columns: 1fr;
  }

  .review-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .category-grid,
  .project-grid,
  .metric-grid,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-actions {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* ========================================================================== */
/* Premium interaction layer — v3                                               */
/* ========================================================================== */
:root {
  --navy-950: #07111f;
  --navy-900: #0b1729;
  --electric: #3b82f6;
  --violet: #7c3aed;
  --aqua: #22d3ee;
  --sun: #fb923c;
  --glass: rgba(255, 255, 255, .74);
  --glass-strong: rgba(255, 255, 255, .88);
  --premium-shadow: 0 24px 70px rgba(15, 23, 42, .13), 0 5px 18px rgba(37, 99, 235, .06);
  --pointer-x: 50vw;
  --pointer-y: 24vh;
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 10%, rgba(59, 130, 246, .10), transparent 27rem),
    radial-gradient(circle at 93% 25%, rgba(124, 58, 237, .08), transparent 25rem),
    linear-gradient(180deg, #f9fbff 0%, #f8fafc 43%, #f4f7fb 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  z-index: -2;
  width: 520px;
  height: 520px;
  left: var(--pointer-x);
  top: var(--pointer-y);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(59, 130, 246, .09), rgba(34, 211, 238, .035) 34%, transparent 69%);
  filter: blur(8px);
  transition: opacity .35s ease;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(15, 23, 42, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .032) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}

::selection {
  background: rgba(59, 130, 246, .2);
  color: #0f172a;
}

.site-header {
  border-bottom-color: rgba(203, 213, 225, .62);
  background: rgba(248, 250, 252, .72);
  backdrop-filter: blur(22px) saturate(155%);
  transition: box-shadow .28s ease, background .28s ease, border-color .28s ease;
}

.has-scrolled .site-header {
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 35px rgba(15, 23, 42, .08);
  border-bottom-color: rgba(203, 213, 225, .88);
}

.scroll-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--electric), var(--aqua), var(--violet), var(--sun));
  box-shadow: 0 0 18px rgba(59, 130, 246, .45);
}

.brand {
  position: relative;
  font-size: .97rem;
}

.brand-mark {
  border-radius: 13px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 35%, #06b6d4 70%, #84cc16 100%);
  transform: translateZ(0);
  box-shadow: 0 13px 30px rgba(37, 99, 235, .28), inset 0 1px 0 rgba(255,255,255,.45);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}

.brand:hover .brand-mark {
  transform: translateY(-2px) rotate(-4deg) scale(1.04);
  box-shadow: 0 18px 38px rgba(37, 99, 235, .34), inset 0 1px 0 rgba(255,255,255,.55);
}

.nav-links a:not(.button) {
  position: relative;
  padding: 8px 1px;
  transition: color .2s ease;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 3px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--electric), var(--aqua));
  transition: left .24s ease, right .24s ease;
}

.nav-links a:not(.button):hover::after,
.nav-links a:not(.button):focus-visible::after {
  left: 0;
  right: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, .42);
  border-radius: 13px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: #0f172a;
  transition: transform .25s ease, opacity .2s ease;
}

.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 78px 0 54px;
  background:
    radial-gradient(circle at 84% 22%, rgba(132, 204, 22, .16), transparent 29rem),
    radial-gradient(circle at 11% 0%, rgba(37, 99, 235, .18), transparent 29rem),
    radial-gradient(circle at 58% 64%, rgba(124, 58, 237, .07), transparent 32rem),
    linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(248,250,252,.78) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.hero::before {
  width: 280px;
  height: 280px;
  right: -78px;
  top: -88px;
  background: linear-gradient(145deg, rgba(59,130,246,.16), rgba(34,211,238,.03));
  box-shadow: inset 28px 22px 60px rgba(255,255,255,.45), 0 40px 80px rgba(59,130,246,.08);
}

.hero::after {
  width: 170px;
  height: 170px;
  left: 43%;
  bottom: -105px;
  background: linear-gradient(145deg, rgba(124,58,237,.12), rgba(251,146,60,.04));
  box-shadow: inset -18px -15px 40px rgba(255,255,255,.65), 0 35px 70px rgba(124,58,237,.09);
}

.eyebrow {
  border-color: rgba(96, 165, 250, .34);
  background: rgba(239, 246, 255, .72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 8px 24px rgba(37,99,235,.07);
  backdrop-filter: blur(12px);
}

.hero h1 {
  color: #0f172a;
  background: linear-gradient(105deg, #0f172a 5%, #1d4ed8 42%, #0f766e 69%, #0f172a 96%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headline-shimmer 9s ease-in-out infinite alternate;
  text-wrap: balance;
}

@keyframes headline-shimmer {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

.lead { color: #52627a; }

.button {
  position: relative;
  overflow: hidden;
  min-height: 44px;
  border-radius: 13px;
  transform: translateZ(0);
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-115%) skewX(-18deg);
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transition: transform .55s ease;
}

.button:hover::before { transform: translateX(235%) skewX(-18deg); }
.button:hover { transform: translateY(-2px) scale(1.015); }
.button:active { transform: translateY(0) scale(.985); }

.button-primary {
  background: linear-gradient(135deg, #f97316, #fb923c 62%, #f59e0b);
  box-shadow: 0 14px 34px rgba(249, 115, 22, .25), inset 0 1px 0 rgba(255,255,255,.35);
}

.button-primary:hover { box-shadow: 0 18px 42px rgba(249, 115, 22, .32), inset 0 1px 0 rgba(255,255,255,.4); }

.button-secondary {
  color: #1d4ed8;
  background: rgba(239,246,255,.74);
  border-color: rgba(147,197,253,.58);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.button-ripple {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255,255,255,.6);
  pointer-events: none;
  animation: button-ripple .62s ease-out forwards;
}

@keyframes button-ripple {
  to { transform: translate(-50%, -50%) scale(18); opacity: 0; }
}

.stats-bar div,
.hero-panel,
.toolbar,
.category-card,
.project-card,
.content-card,
.review-main,
.review-side,
.metric {
  backdrop-filter: blur(15px) saturate(130%);
}

.stats-bar div {
  position: relative;
  overflow: hidden;
  border-color: rgba(191,219,254,.72);
  border-radius: 15px;
  background: rgba(255,255,255,.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 10px 28px rgba(37,99,235,.05);
  transition: transform .22s ease, box-shadow .22s ease;
}

.stats-bar div:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 15px 32px rgba(37,99,235,.10);
}

.hero-panel {
  position: relative;
  border-color: rgba(203,213,225,.76);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.89), rgba(248,250,252,.72));
  box-shadow: var(--premium-shadow), inset 0 1px 0 rgba(255,255,255,.92);
  transform-style: preserve-3d;
}

.hero-panel::after,
.tilt-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255,255,255,.75), transparent 36%);
  transition: opacity .25s ease;
}

.tilt-surface:hover::after { opacity: .42; }

.score-row {
  border-color: rgba(226,232,240,.9);
  border-radius: 15px;
  background: rgba(255,255,255,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.score-row:hover {
  transform: translateX(4px);
  border-color: rgba(96,165,250,.45);
  box-shadow: 0 12px 28px rgba(37,99,235,.08);
}

.logo-tile {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb 42%, #06b6d4);
  box-shadow: 0 9px 20px rgba(37,99,235,.2), inset 0 1px 0 rgba(255,255,255,.28);
}

.logo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255,255,255,.35), transparent 43%);
  pointer-events: none;
}

.rating {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.68);
  border: 1px solid rgba(52,211,153,.24);
}

.section { position: relative; }

.section-heading h2 {
  text-wrap: balance;
  letter-spacing: -.025em;
}

.toolbar {
  position: relative;
  z-index: 4;
  grid-template-columns: minmax(220px, 1.75fr) repeat(4, minmax(135px, .78fr));
  margin-bottom: 12px;
  padding: 12px;
  border-color: rgba(203,213,225,.72);
  border-radius: 20px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 50px rgba(15,23,42,.08), inset 0 1px 0 rgba(255,255,255,.92);
}

.input,
.select {
  border-color: rgba(148,163,184,.42);
  border-radius: 13px;
  background: rgba(255,255,255,.88);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.input:focus,
.select:focus {
  border-color: rgba(59,130,246,.75);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59,130,246,.10), 0 10px 25px rgba(37,99,235,.07);
  transform: translateY(-1px);
}

.category-quicknav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 2px 1px 9px;
  -webkit-overflow-scrolling: touch;
}

.category-quicknav::-webkit-scrollbar { display: none; }

.filter-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(148,163,184,.36);
  border-radius: 999px;
  color: #475569;
  background: rgba(255,255,255,.72);
  font: inherit;
  font-size: .84rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.filter-chip:hover {
  transform: translateY(-1px);
  color: #1d4ed8;
  border-color: rgba(96,165,250,.55);
}

.filter-chip.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #2563eb, #3b82f6 55%, #06b6d4);
  box-shadow: 0 9px 22px rgba(37,99,235,.2), inset 0 1px 0 rgba(255,255,255,.28);
}

.filter-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 3px 0 23px;
  color: #64748b;
  font-size: .86rem;
}

.filter-meta strong {
  color: #0f172a;
  font-size: .96rem;
}

.reset-filter {
  border: 0;
  padding: 6px 2px;
  color: #2563eb;
  background: transparent;
  font: inherit;
  font-size: .84rem;
  font-weight: 900;
  cursor: pointer;
}

.reset-filter:hover { text-decoration: underline; text-underline-offset: 3px; }

.category-grid,
.project-grid { gap: 20px; }

.category-card,
.project-card,
.content-card,
.review-main,
.review-side {
  position: relative;
  overflow: hidden;
  border-color: rgba(203,213,225,.72);
  background: linear-gradient(145deg, rgba(255,255,255,.91), rgba(248,250,252,.74));
  box-shadow: 0 14px 36px rgba(15,23,42,.07), inset 0 1px 0 rgba(255,255,255,.9);
}

.category-card,
.project-card {
  border-radius: 20px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .16s ease-out, box-shadow .24s ease, border-color .24s ease;
}

.tilt-surface {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0);
}

.tilt-surface:hover {
  border-color: rgba(96,165,250,.46);
  box-shadow: 0 25px 60px rgba(15,23,42,.12), 0 10px 25px rgba(37,99,235,.08), inset 0 1px 0 rgba(255,255,255,.95);
}

.tilt-surface.is-pressed {
  transform: perspective(900px) rotateX(0) rotateY(0) scale(.985);
  transition-duration: .08s;
}

.category-card { padding: 23px; }
.category-card::before {
  height: 5px;
  background: linear-gradient(90deg, #2563eb, #22d3ee, #84cc16, #fb923c);
  background-size: 180% 100%;
  animation: gradient-track 7s ease infinite alternate;
}

@keyframes gradient-track {
  to { background-position: 100% 50%; }
}

.category-card h3,
.project-card h3 { letter-spacing: -.02em; }
.category-card strong { color: #1d4ed8; }
.category-card:hover strong { color: #0f766e; }

.project-card { padding: 20px; }
.project-card[hidden] { display: none !important; }
.project-card p { margin-top: 0; }
.project-card .deal {
  border: 1px solid rgba(251,146,60,.2);
  background: linear-gradient(135deg, rgba(255,237,213,.88), rgba(255,247,237,.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.badge,
.status,
.deal,
.rating { transition: transform .2s ease, box-shadow .2s ease; }
.project-card:hover .badge,
.project-card:hover .rating { transform: translateY(-1px); }

.content-card,
.review-main,
.review-side { border-radius: 22px; }
.review-side { box-shadow: 0 22px 55px rgba(15,23,42,.09), inset 0 1px 0 rgba(255,255,255,.92); }

.metric {
  position: relative;
  overflow: hidden;
  border-color: rgba(203,213,225,.72);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(248,250,252,.93), rgba(255,255,255,.85));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.metric:hover {
  transform: translateY(-3px);
  border-color: rgba(96,165,250,.42);
  box-shadow: 0 12px 26px rgba(37,99,235,.08), inset 0 1px 0 rgba(255,255,255,.95);
}

.table-wrap {
  border-radius: 17px;
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
}

th { background: linear-gradient(180deg, #f8fafc, #f1f5f9); }
tbody tr { transition: background .18s ease, transform .18s ease; }
tbody tr:hover { background: #f8fbff; }

.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(59,130,246,.20), transparent 26rem),
    radial-gradient(circle at 90% 100%, rgba(34,211,238,.10), transparent 22rem),
    #07111f;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px) scale(.992);
  transition: opacity .62s ease var(--reveal-delay, 0ms), transform .62s cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1120px) {
  .toolbar { grid-template-columns: 1.5fr repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1180px); }

  .nav {
    min-height: 68px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .brand { max-width: calc(100% - 60px); }
  .menu-toggle { display: block; margin-left: auto; }

  .nav-links {
    display: none;
    width: 100%;
    padding: 8px 0 4px;
    overflow: visible;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .menu-open .nav-links { display: grid; }

  .nav-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(203,213,225,.66);
    border-radius: 12px;
    background: rgba(255,255,255,.72);
  }

  .nav-links .button { min-height: 42px; }

  .hero { padding: 43px 0 34px; }
  .hero::before { width: 200px; height: 200px; }
  .hero::after { width: 130px; height: 130px; }

  .score-board {
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 86%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 5px;
  }
  .score-board::-webkit-scrollbar { display: none; }
  .score-row { scroll-snap-align: start; }

  .toolbar { grid-template-columns: 1fr; border-radius: 18px; }
  .category-quicknav { margin-inline: -2px; }

  .filter-meta { margin-bottom: 18px; }
  .category-card,
  .project-card,
  .content-card,
  .review-main,
  .review-side,
  .hero-panel { border-radius: 18px; }

  .project-actions { flex-direction: row; }
  .project-actions .button { min-width: 0; padding-inline: 12px; }
}

@media (max-width: 460px) {
  .brand > span:last-child { font-size: .88rem; }
  .brand-mark { width: 36px; height: 36px; }
  .nav-links { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.05rem, 11vw, 2.65rem); }
  .project-actions { flex-direction: column; }
  .filter-meta { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal-item { opacity: 1 !important; transform: none !important; }
  .tilt-surface { transform: none !important; }
}

/* Taxonomy + category profile */
.category-label {
  display: inline-flex;
  width: fit-content;
  padding: 4px 9px;
  border: 1px solid rgba(94, 234, 212, .25);
  border-radius: 999px;
  color: #0f766e;
  background: linear-gradient(135deg, rgba(204,251,241,.86), rgba(236,254,255,.9));
  font-size: .78rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.category-profile-card { padding: 28px; }
.category-profile-card .section-heading { margin-bottom: 20px; }
.category-profile-card .eyebrow { margin-bottom: 10px; }

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

.category-insight {
  position: relative;
  min-height: 148px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(203,213,225,.72);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(248,250,252,.96), rgba(255,255,255,.82));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.category-insight::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -34px;
  bottom: -37px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.12), transparent 67%);
}

.category-insight:hover {
  transform: translateY(-3px);
  border-color: rgba(96,165,250,.45);
  box-shadow: 0 14px 30px rgba(37,99,235,.07), inset 0 1px 0 rgba(255,255,255,.95);
}

.category-insight span {
  display: block;
  margin-bottom: 9px;
  color: #64748b;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.category-insight strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #172033;
  line-height: 1.5;
}

.category-note {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(251,191,36,.24);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255,251,235,.86), rgba(255,247,237,.78));
}

.category-note strong { color: #92400e; }
.category-note p { margin: 0; color: #6b5a43; }

/* Keep reveal animation and 3D tilt composable on the same element. */
.reveal-item.tilt-surface {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(18px) scale(.992);
}

.reveal-item.tilt-surface.is-visible {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0) scale(1);
}

.reveal-item.tilt-surface.is-visible.is-pressed {
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateY(0) scale(.985);
}

@media (max-width: 800px) {
  .category-insight-grid { grid-template-columns: 1fr; }
  .category-insight { min-height: auto; }
  .category-note { grid-template-columns: 1fr; gap: 5px; }
}

/* =========================================================
   V4.1 PREMIUM FOOTER
   ========================================================= */
.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 72px;
  padding: 0;
  color: #cbd5e1;
  background:
    radial-gradient(circle at 9% 8%, rgba(37,99,235,.24), transparent 31rem),
    radial-gradient(circle at 92% 86%, rgba(6,182,212,.16), transparent 30rem),
    linear-gradient(145deg, #07111f 0%, #09182b 52%, #071421 100%);
  border-top: 1px solid rgba(148,163,184,.15);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.025), transparent 22%);
}

.footer-glow {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
  opacity: .42;
  animation: footerFloat 10s ease-in-out infinite alternate;
}

.footer-glow-a {
  left: -210px;
  top: 40px;
  background: radial-gradient(circle, rgba(59,130,246,.32), transparent 68%);
}

.footer-glow-b {
  right: -210px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(34,211,238,.22), transparent 68%);
  animation-delay: -4s;
}

@keyframes footerFloat {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(18px,-12px,0) scale(1.08); }
}

.footer-shell {
  position: relative;
  z-index: 2;
  padding-top: 34px;
  padding-bottom: 24px;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 42px;
  padding: 26px 28px;
  border: 1px solid rgba(147,197,253,.20);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(30,64,175,.19), rgba(8,47,73,.20)),
    rgba(255,255,255,.035);
  box-shadow:
    0 24px 70px rgba(2,8,23,.25),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.footer-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: #7dd3fc;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-cta h2 {
  max-width: 720px;
  margin: 0 0 8px;
  color: #f8fafc;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.16;
  letter-spacing: -.025em;
}

.footer-cta p {
  max-width: 720px;
  margin: 0;
  color: #aebed2;
  line-height: 1.7;
}

.footer-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: .9rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
}

.footer-btn-primary {
  color: #fff !important;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  box-shadow: 0 10px 26px rgba(37,99,235,.28), inset 0 1px 0 rgba(255,255,255,.2);
}

.footer-btn-primary:hover {
  box-shadow: 0 14px 32px rgba(37,99,235,.38), inset 0 1px 0 rgba(255,255,255,.22);
}

.footer-btn-ghost {
  color: #e5eef9 !important;
  border-color: rgba(148,163,184,.23);
  background: rgba(255,255,255,.05);
}

.footer-btn-ghost:hover {
  border-color: rgba(125,211,252,.42);
  background: rgba(255,255,255,.085);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.42fr) repeat(3, minmax(155px, .72fr));
  gap: 42px;
  align-items: start;
  padding: 8px 0 34px;
}

.footer-brand-block {
  padding-right: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f8fafc !important;
  font-weight: 900;
  font-size: 1.02rem;
  text-decoration: none;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(186,230,253,.28);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #2563eb, #0891b2);
  box-shadow: 0 9px 25px rgba(37,99,235,.25), inset 0 1px 0 rgba(255,255,255,.22);
}

.footer-brand-copy {
  max-width: 390px;
  margin: 17px 0 16px;
  color: #9eafc4;
  font-size: .93rem;
  line-height: 1.75;
}

.footer-trust-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 999px;
  color: #b8c8da;
  background: rgba(255,255,255,.035);
  font-size: .78rem;
  font-weight: 750;
}

.footer-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 0 4px rgba(34,211,238,.10), 0 0 18px rgba(34,211,238,.48);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  position: relative;
  margin: 0 0 8px;
  padding-bottom: 11px;
  color: #f8fafc;
  font-size: .88rem;
  letter-spacing: .02em;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
}

.footer-column a {
  position: relative;
  color: #9eb0c5 !important;
  font-size: .88rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.footer-column a::before {
  content: "";
  position: absolute;
  left: -12px;
  top: .62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #38bdf8;
  opacity: 0;
  transform: translateX(-4px) scale(.7);
  transition: opacity .18s ease, transform .18s ease;
}

.footer-column a:hover {
  color: #e6f4ff !important;
  transform: translateX(4px);
}

.footer-column a:hover::before {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.footer-disclosure {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 15px;
  background: rgba(255,255,255,.028);
}

.footer-disclosure-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(125,211,252,.27);
  border-radius: 9px;
  color: #7dd3fc;
  background: rgba(14,165,233,.08);
  font-size: .8rem;
  font-weight: 900;
}

.footer-disclosure p {
  margin: 1px 0 0;
  color: #8fa2b8;
  font-size: .78rem;
  line-height: 1.65;
}

.footer-disclosure strong {
  color: #bccbda;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  padding-top: 18px;
  border-top: 1px solid rgba(148,163,184,.12);
  color: #71849b;
  font-size: .78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-bottom-links a {
  color: #8196ad !important;
  text-decoration: none;
  transition: color .18s ease;
}

.footer-bottom-links a:hover {
  color: #d7efff !important;
}

@media (max-width: 980px) {
  .footer-cta { grid-template-columns: 1fr; }
  .footer-cta-actions { justify-content: flex-start; }
  .footer-main-grid { grid-template-columns: 1.25fr 1fr 1fr; gap: 34px; }
  .footer-brand-block { grid-column: 1 / -1; padding-right: 0; }
  .footer-brand-copy { max-width: 620px; }
}

@media (max-width: 680px) {
  .footer { margin-top: 54px; }
  .footer-shell { padding-top: 22px; }
  .footer-cta { margin-bottom: 30px; padding: 21px; border-radius: 20px; }
  .footer-cta-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .footer-btn { width: 100%; }
  .footer-main-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 18px 0 4px; }
}

@media (max-width: 440px) {
  .footer-main-grid { grid-template-columns: 1fr; }
  .footer-column:last-child { grid-column: auto; }
  .footer-disclosure { grid-template-columns: 1fr; }
}


/* =========================================================
   V4.9 EDITORIAL HOMEPAGE + GLOBAL HEADER/FOOTER
   Inspired by the user-approved editorial mockup while retaining
   Global Review Catalog routes, D1 rendering and Cloudflare runtime.
   ========================================================= */
:root{
  --ed-ink:#101a35;--ed-muted:#5d6a86;--ed-line:#e6eaf3;--ed-indigo:#5146ff;
  --ed-indigo-2:#6d5cff;--ed-soft:#f7f8fc;--ed-lilac:#f2efff;--ed-card:#fff;
}
.editorial-site-header{position:sticky;top:0;z-index:90;background:rgba(255,255,255,.93);border-bottom:1px solid rgba(222,226,239,.95);backdrop-filter:blur(18px);box-shadow:0 8px 34px rgba(49,46,129,.04)}
.editorial-nav{min-height:72px;display:grid;grid-template-columns:auto 1fr minmax(220px,320px) auto;align-items:center;gap:18px}
.editorial-brand{display:flex;gap:10px;align-items:center;text-decoration:none;color:var(--ed-ink)}
.editorial-brand-mark{width:34px;height:34px;border-radius:11px;background:linear-gradient(135deg,#5146ff,#7c5cff 56%,#1bc7a3);box-shadow:0 10px 24px rgba(81,70,255,.23);font-size:.76rem}
.editorial-brand-copy{display:flex;flex-direction:column;line-height:1.05}.editorial-brand-copy strong{font-size:.93rem}.editorial-brand-copy small{margin-top:4px;color:#8a94aa;font-size:.62rem;font-weight:700}
.editorial-nav-links{display:flex;justify-content:center;align-items:center;gap:18px}.editorial-nav-links a{color:#3d4761!important;font-weight:750;font-size:.82rem;white-space:nowrap}.editorial-nav-links a:hover{color:#5146ff!important}
.header-search{height:38px;display:flex;align-items:center;gap:7px;padding:0 11px;border:1px solid #e1e5ee;border-radius:12px;background:#fafbfe;color:#96a0b6}.header-search input{width:100%;border:0;outline:0;background:transparent;font:inherit;color:#25304a;font-size:.76rem}.header-search input::placeholder{color:#a6afc1}
.partner-button{display:inline-flex;align-items:center;justify-content:center;min-height:38px;padding:0 15px;border-radius:10px;background:linear-gradient(135deg,#4e46e5,#6655ff);color:#fff!important;text-decoration:none;font-size:.76rem;font-weight:850;box-shadow:0 10px 24px rgba(81,70,255,.2);transition:.2s ease}.partner-button:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(81,70,255,.28)}

.editorial-home{background:#fff;color:var(--ed-ink)}
.editorial-hero{padding:50px 0 44px;background:radial-gradient(circle at 12% 28%,rgba(108,92,255,.08),transparent 27rem),radial-gradient(circle at 88% 18%,rgba(255,196,120,.12),transparent 24rem),#fff}
.editorial-hero-grid{display:grid;grid-template-columns:minmax(0,1.03fr) minmax(430px,.97fr);gap:34px;align-items:stretch}
.editorial-hero-copy{padding:12px 0}.editorial-overline{margin:0 0 11px;color:#606d8a;font-weight:900;letter-spacing:.09em;font-size:.72rem}.editorial-hero h1{margin:0;color:#131b36;font-size:clamp(3.1rem,5.15vw,5.7rem);line-height:.93;letter-spacing:-.065em;max-width:780px}.editorial-lead{max-width:690px;margin:18px 0 21px;color:#586783;font-size:1.06rem;line-height:1.65}
.editorial-proof-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:21px 0}.editorial-proof-grid>div{display:grid;grid-template-columns:34px 1fr;align-items:center;column-gap:9px;padding:12px 13px;border:1px solid #ebeef5;border-radius:13px;background:#fff;box-shadow:0 9px 26px rgba(37,45,73,.045)}.proof-icon{grid-row:1/3;display:grid;place-items:center;width:30px;height:30px;border-radius:10px;background:#f0efff;color:#5146ff;font-weight:950}.editorial-proof-grid strong{font-size:.76rem}.editorial-proof-grid small{color:#8893a9;font-size:.64rem;margin-top:2px}
.editorial-search{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:10px;max-width:690px;height:54px;padding:0 7px 0 15px;border:1px solid #dde2ee;border-radius:15px;background:#fff;box-shadow:0 16px 36px rgba(44,53,88,.08)}.editorial-search>span{font-size:1.2rem;color:#7a879f}.editorial-search input{min-width:0;border:0;outline:0;background:transparent;font:inherit;font-size:.9rem;color:#1f2a44}.editorial-search button{height:40px;padding:0 22px;border:0;border-radius:10px;background:linear-gradient(135deg,#5146ff,#6757ff);color:white;font-weight:850;cursor:pointer;box-shadow:0 8px 20px rgba(81,70,255,.22)}
.editorial-popular{display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin-top:12px;color:#7a859d;font-size:.7rem}.editorial-popular a{padding:5px 9px;border:1px solid #e6eaf2;border-radius:999px;background:#fff;color:#66728d!important;text-decoration:none;font-weight:750}.editorial-popular a:hover{border-color:#cfc9ff;color:#5146ff!important}
.editorial-hero-visual{position:relative;display:grid;grid-template-columns:1.35fr .85fr;grid-template-rows:1fr 1fr;gap:12px;min-height:500px}.visual-card{position:relative;overflow:hidden;border-radius:22px;border:1px solid rgba(219,224,235,.88);text-decoration:none;box-shadow:0 22px 55px rgba(35,42,70,.11);transition:transform .24s ease,box-shadow .24s ease}.visual-card:hover{transform:translateY(-4px) scale(1.01);box-shadow:0 28px 66px rgba(35,42,70,.16)}.visual-card strong{position:absolute;left:22px;bottom:20px;z-index:3;color:#fff;font-size:1.25rem;line-height:1.08;letter-spacing:-.03em;text-shadow:0 2px 10px rgba(0,0,0,.25)}.visual-card-main{grid-row:1/3;background:linear-gradient(160deg,#ececff,#c9d0ff 42%,#5e67af)}.visual-card-home{background:linear-gradient(150deg,#f9efe1,#d9c3a5 55%,#8d795c)}.visual-card-outdoor{background:linear-gradient(165deg,#d8e7ec,#8baeb2 52%,#315965)}.visual-orb{position:absolute;border-radius:50%;filter:blur(2px)}.visual-orb-blue{width:260px;height:260px;right:-70px;top:35px;background:radial-gradient(circle at 35% 35%,#fff,rgba(105,111,225,.65) 33%,rgba(53,59,126,.18) 70%)}.visual-orb-warm{width:160px;height:160px;right:-20px;top:-18px;background:radial-gradient(circle,#fff6e7,#d8b187 62%,transparent 64%)}.visual-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.2) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.2) 1px,transparent 1px);background-size:36px 36px;mask-image:linear-gradient(to bottom,rgba(0,0,0,.85),transparent 82%)}.visual-mountain{position:absolute;left:-30px;right:-30px;bottom:-15px;height:75%;background:linear-gradient(140deg,transparent 0 20%,rgba(41,78,85,.88) 20% 48%,transparent 48%),linear-gradient(220deg,transparent 0 26%,rgba(56,104,106,.9) 26% 53%,transparent 53%)}.visual-note{position:absolute;right:-6px;bottom:-2px;z-index:5;padding:14px 12px;color:#273148;font:800 1.1rem/1.05 Georgia,serif;transform:rotate(-7deg);text-align:center;text-shadow:0 1px 0 #fff}

.editorial-discovery{padding:42px 0 52px;background:#fbfbfe;border-top:1px solid #f0f2f7}.editorial-section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:22px;margin-bottom:20px}.editorial-section-head h2,.editorial-how-head h2{margin:0 0 4px;font-size:1.55rem;letter-spacing:-.035em}.editorial-section-head p,.editorial-how-head p{margin:0;color:#7a859d;font-size:.82rem}.editorial-section-head>a,.editorial-how-head>a{color:#5146ff!important;text-decoration:none;font-size:.76rem;font-weight:850}.editorial-category-strip{display:grid;grid-template-columns:repeat(10,1fr);gap:12px;padding:2px 0 33px}.editorial-category-item{display:flex;min-width:0;flex-direction:column;align-items:center;gap:8px;text-decoration:none;color:#26314c!important;text-align:center;font-size:.69rem;font-weight:850}.category-round{display:grid;place-items:center;width:48px;height:48px;border-radius:16px;background:#fff;border:1px solid #e5e9f2;color:#5146ff;font-weight:900;box-shadow:0 8px 22px rgba(33,42,70,.06);transition:.2s ease}.editorial-category-item:nth-child(3n+2) .category-round{color:#0f9f89;background:#f1fffb}.editorial-category-item:nth-child(3n) .category-round{color:#ff6f6f;background:#fff5f3}.editorial-category-item:hover .category-round{transform:translateY(-4px);box-shadow:0 14px 28px rgba(81,70,255,.13)}
.editorial-latest-head{margin-top:4px}.editorial-latest-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.editorial-review-card{display:grid;grid-template-columns:112px 1fr;min-height:170px;border:1px solid #e2e6f0;border-radius:15px;background:#fff;overflow:hidden;box-shadow:0 8px 24px rgba(35,42,70,.055);transition:.2s ease}.editorial-review-card:hover{transform:translateY(-3px);box-shadow:0 15px 34px rgba(35,42,70,.1)}.editorial-review-thumb{display:grid;place-items:center;position:relative;color:#fff;font-size:1.65rem;font-weight:950}.editorial-review-thumb::after{content:"";position:absolute;width:90px;height:90px;border:14px solid rgba(255,255,255,.15);border-radius:50%}.editorial-review-thumb-1{background:linear-gradient(145deg,#5c68f0,#293382)}.editorial-review-thumb-2{background:linear-gradient(145deg,#0c9d86,#174d55)}.editorial-review-thumb-3{background:linear-gradient(145deg,#c8994d,#70552d)}.editorial-review-thumb-4{background:linear-gradient(145deg,#8792aa,#343b4e)}.editorial-review-thumb span{position:relative;z-index:2}.editorial-review-copy{padding:14px 13px}.editorial-card-label{display:inline-flex;margin-bottom:6px;padding:3px 6px;border-radius:999px;background:#eeeaff;color:#5146ff;font-size:.56rem;font-weight:900;letter-spacing:.05em}.editorial-review-copy h3{margin:0 0 5px;font-size:.92rem}.editorial-review-copy p{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;margin:0;color:#78849c;font-size:.68rem;line-height:1.45}.editorial-review-meta{display:flex;justify-content:space-between;gap:8px;margin:9px 0 7px;color:#9aa3b5;font-size:.59rem}.editorial-review-copy>a{color:#5146ff!important;text-decoration:none;font-size:.67rem;font-weight:900}
.editorial-feature-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:26px;margin-top:34px}.editorial-section-head.compact{align-items:center;margin-bottom:13px}.editorial-section-head.compact h2{font-size:1.2rem}.editorial-pick-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.editorial-pick-card{display:flex;flex-direction:column;min-height:205px;padding:11px;border:1px solid #e3e7f0;border-radius:14px;background:#fff;text-decoration:none;color:#26314c!important;box-shadow:0 8px 22px rgba(35,42,70,.05)}.pick-art{display:grid;place-items:end start;height:112px;padding:10px;border-radius:10px;color:#fff;font-weight:950;letter-spacing:.09em;font-size:.72rem}.pick-art-ai{background:linear-gradient(145deg,#6a5cff,#212a67)}.pick-art-home{background:linear-gradient(145deg,#d38d54,#815a35)}.pick-art-camp{background:linear-gradient(145deg,#6da58c,#355c49)}.editorial-pick-card strong{margin:9px 2px 3px;font-size:.76rem;line-height:1.3}.editorial-pick-card small{margin:auto 2px 0;color:#9aa3b5;font-size:.62rem}.editorial-guide-list{display:grid;gap:10px}.editorial-guide-list>a{display:grid;grid-template-columns:44px 1fr auto;align-items:center;gap:11px;min-height:60px;padding:9px 12px;border:1px solid #e4e8f1;border-radius:12px;background:#fff;text-decoration:none;color:#28334c!important}.guide-icon{display:grid;place-items:center;width:40px;height:40px;border-radius:10px;background:#f2f0ff;color:#5146ff;font-weight:900}.editorial-guide-list strong{display:block;font-size:.73rem}.editorial-guide-list small{display:block;margin-top:4px;color:#9aa3b5;font-size:.6rem}.editorial-guide-list b{color:#5146ff;font-size:1.2rem}

.editorial-trust{padding:42px 0 26px;background:#fff}.editorial-trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;padding:18px 0 34px;border-bottom:1px solid #eceff5}.editorial-trust-grid article{display:grid;grid-template-columns:42px 1fr;gap:11px}.editorial-trust-grid article>span{display:grid;place-items:center;width:40px;height:40px;border-radius:13px;background:#f1efff;color:#5146ff;font-weight:950}.editorial-trust-grid h3{margin:1px 0 5px;font-size:.78rem}.editorial-trust-grid p{margin:0;color:#8490a7;font-size:.66rem;line-height:1.5}.editorial-how-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin:29px 0 18px}.editorial-how-head h2{font-size:1.18rem}.editorial-steps{display:grid;grid-template-columns:repeat(5,1fr);gap:8px;position:relative}.editorial-steps::before{content:"";position:absolute;left:7%;right:7%;top:18px;height:1px;background:#dfe3ef}.editorial-steps article{position:relative;text-align:center;padding:0 10px}.editorial-steps article>span{position:relative;z-index:2;display:grid;place-items:center;width:36px;height:36px;margin:0 auto 9px;border:1px solid #cfc9ff;border-radius:50%;background:#fff;color:#5146ff;font-weight:950}.editorial-steps h3{margin:0 0 5px;font-size:.75rem}.editorial-steps p{margin:0;color:#8792a7;font-size:.62rem;line-height:1.48}.editorial-newsletter{display:grid;grid-template-columns:1.1fr 1.2fr 1fr;gap:24px;align-items:center;margin-top:32px;padding:22px 0 2px;border-top:1px solid #edf0f5}.editorial-newsletter h2{margin:0 0 5px;font-size:1.05rem}.editorial-newsletter p{margin:0;color:#8792a7;font-size:.7rem}.editorial-newsletter form{display:grid;grid-template-columns:1fr auto;gap:7px}.editorial-newsletter input{height:39px;padding:0 12px;border:1px solid #dfe3ed;border-radius:9px;background:#fafbfe;outline:0}.editorial-newsletter button{height:39px;padding:0 15px;border:0;border-radius:9px;background:#5146ff;color:#fff;font-weight:850}.editorial-newsletter small{grid-column:1/3;color:#a0a9bb;font-size:.54rem}.editorial-growth-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}.editorial-growth-stats span{display:flex;flex-direction:column;color:#8994aa;font-size:.57rem}.editorial-growth-stats strong{color:#17213d;font-size:.95rem}

.editorial-footer{margin-top:0!important;padding:34px 0 0!important;background:#08182b!important;border-top:0!important;color:#aab7cb}.editorial-footer::before,.editorial-footer::after{display:none!important}.editorial-footer-grid{display:grid;grid-template-columns:1.5fr repeat(6,1fr);gap:28px;padding-bottom:28px}.editorial-footer-brand{padding-right:20px}.editorial-footer-logo{display:flex;gap:10px;align-items:center;color:#fff!important;text-decoration:none}.editorial-footer-logo>span:last-child{display:flex;flex-direction:column}.editorial-footer-logo strong{font-size:.88rem}.editorial-footer-logo small{margin-top:3px;color:#7f91aa;font-size:.57rem}.editorial-footer-brand p{max-width:260px;margin:15px 0;color:#94a4ba;font-size:.7rem;line-height:1.6}.editorial-socials{display:flex;gap:8px}.editorial-socials span{display:grid;place-items:center;width:26px;height:26px;border:1px solid rgba(255,255,255,.12);border-radius:50%;color:#d3deeb;font-size:.59rem;font-weight:850}.editorial-footer nav{display:flex;flex-direction:column;gap:7px}.editorial-footer nav h3{margin:0 0 5px;color:#fff;font-size:.7rem}.editorial-footer nav a{color:#8fa0b7!important;text-decoration:none;font-size:.62rem}.editorial-footer nav a:hover{color:#fff!important}.editorial-footer-bottom{display:flex;justify-content:space-between;gap:20px;align-items:center;min-height:48px;border-top:1px solid rgba(255,255,255,.08);color:#71839b;font-size:.59rem}.editorial-footer-bottom p{margin:0}.editorial-footer-bottom div{display:flex;gap:8px;align-items:center}.editorial-footer-bottom a{color:#8fa0b7!important;text-decoration:none}

@media (max-width:1120px){.editorial-nav{grid-template-columns:auto 1fr auto}.header-search{display:none}.editorial-hero-grid{grid-template-columns:1fr}.editorial-hero-visual{min-height:420px}.editorial-category-strip{grid-template-columns:repeat(5,1fr)}.editorial-latest-grid{grid-template-columns:repeat(2,1fr)}.editorial-footer-grid{grid-template-columns:1.4fr repeat(3,1fr)}.editorial-footer-brand{grid-row:span 2}}
@media (max-width:820px){.editorial-nav{display:flex}.editorial-nav-links{position:absolute;left:14px;right:14px;top:64px;display:none;flex-direction:column;align-items:stretch;padding:14px;border:1px solid #e5e9f1;border-radius:14px;background:#fff;box-shadow:0 20px 44px rgba(28,35,60,.14)}.editorial-nav.menu-open .editorial-nav-links{display:flex}.partner-button{margin-left:auto}.editorial-hero{padding-top:28px}.editorial-hero-visual{grid-template-columns:1fr 1fr;min-height:360px}.visual-card-main{grid-row:1/3}.editorial-proof-grid{grid-template-columns:1fr}.editorial-feature-grid{grid-template-columns:1fr}.editorial-trust-grid{grid-template-columns:repeat(2,1fr)}.editorial-steps{grid-template-columns:1fr}.editorial-steps::before{display:none}.editorial-steps article{text-align:left;display:grid;grid-template-columns:36px 1fr;column-gap:10px}.editorial-steps article>span{grid-row:1/3;margin:0}.editorial-newsletter{grid-template-columns:1fr}.editorial-footer-grid{grid-template-columns:repeat(2,1fr)}.editorial-footer-brand{grid-column:1/-1;grid-row:auto}}
@media (max-width:560px){.partner-button{display:none}.editorial-brand-copy small{display:none}.editorial-hero h1{font-size:clamp(2.6rem,15vw,4rem)}.editorial-search{grid-template-columns:auto 1fr;height:auto;padding:9px}.editorial-search button{grid-column:1/3;width:100%}.editorial-category-strip{grid-template-columns:repeat(2,1fr)}.editorial-latest-grid{grid-template-columns:1fr}.editorial-review-card{grid-template-columns:100px 1fr}.editorial-pick-grid{grid-template-columns:1fr}.editorial-pick-card{min-height:160px}.editorial-trust-grid{grid-template-columns:1fr}.editorial-growth-stats{grid-template-columns:repeat(2,1fr)}.editorial-section-head,.editorial-how-head{align-items:flex-start;flex-direction:column}.editorial-footer-grid{grid-template-columns:1fr 1fr;gap:24px 18px}.editorial-footer-bottom{align-items:flex-start;flex-direction:column;padding:14px 0}.editorial-hero-visual{display:none}}

/* =========================================================
   V4.9.1 — restored data-backed homepage modules
   ========================================================= */
.editorial-hero-aside{
  display:grid;
  grid-template-rows:auto auto;
  gap:14px;
  align-self:stretch;
  min-width:0;
}
.editorial-top-rated-panel{
  padding:16px;
  border-radius:22px;
  background:linear-gradient(145deg,rgba(255,255,255,.94),rgba(248,250,255,.86));
  box-shadow:0 22px 55px rgba(35,42,70,.11),inset 0 1px 0 rgba(255,255,255,.95);
}
.editorial-top-rated-panel .panel-header{margin-bottom:10px}
.editorial-top-rated-panel .panel-header strong{font-size:.98rem;color:#141d36}
.editorial-top-rated-panel .panel-header span{font-size:.72rem}
.editorial-top-rated-panel .score-board{gap:8px}
.editorial-top-rated-panel .score-row{
  min-height:58px;
  grid-template-columns:42px minmax(0,1fr) auto;
  gap:10px;
  padding:9px 10px;
  text-decoration:none;
  color:#18223c;
}
.editorial-top-rated-panel .score-row .logo-tile{width:42px;height:42px;border-radius:13px;font-size:.78rem}
.editorial-top-rated-panel .score-row strong{font-size:.79rem}
.editorial-top-rated-panel .score-row small{display:inline-block;max-width:260px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#6f7b95;font-size:.64rem}
.editorial-top-rated-panel .score-row .rating{font-size:.73rem;padding:4px 8px}
.editorial-theme-mini-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:10px;
  min-height:122px;
}
.editorial-theme-mini-grid .visual-card{min-height:122px;border-radius:17px;box-shadow:0 12px 32px rgba(35,42,70,.09)}
.editorial-theme-mini-grid .visual-card strong{left:14px;right:12px;bottom:13px;font-size:.82rem;line-height:1.15}
.editorial-theme-mini-grid .visual-orb-blue{width:130px;height:130px;right:-38px;top:0}
.editorial-theme-mini-grid .visual-orb-warm{width:95px;height:95px;right:-15px;top:-16px}

/* Medium-sized category icons: larger than V4.9, still balanced with the editorial strip. */
.category-round{
  width:62px;
  height:62px;
  border-radius:20px;
  font-size:1.08rem;
  box-shadow:0 10px 26px rgba(33,42,70,.075);
}
.editorial-category-item{gap:10px;font-size:.72rem}
.editorial-category-strip{gap:14px;padding-bottom:38px}

/* Restore the original full project-card module, while keeping the V4.9 editorial shell. */
.editorial-featured-websites{
  position:relative;
  padding:56px 0 62px;
  background:linear-gradient(180deg,#fbfbfe 0%,#f7f9fd 100%);
  border-top:1px solid #eef1f7;
}
.editorial-featured-websites .section-heading{margin-bottom:24px}
.editorial-featured-websites .section-heading h2{margin:0;font-size:1.72rem;letter-spacing:-.04em;color:#151f37}
.editorial-featured-websites .section-heading p{font-size:.86rem;line-height:1.6}
.editorial-featured-websites .project-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.editorial-featured-websites .project-card{
  min-height:100%;
  border-color:#dfe6f1;
  background:linear-gradient(155deg,rgba(255,255,255,.97),rgba(247,250,255,.91));
  box-shadow:0 12px 34px rgba(35,42,70,.075),inset 0 1px 0 #fff;
}
.editorial-featured-websites .project-card:hover{
  transform:translateY(-4px);
  border-color:rgba(96,165,250,.5);
  box-shadow:0 20px 42px rgba(37,99,235,.11),inset 0 1px 0 #fff;
}
.editorial-featured-websites .project-card .deal{margin-top:auto}
.editorial-featured-websites .project-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.editorial-featured-websites .project-actions .button{width:100%;justify-content:center}

@media (max-width:1120px){
  .editorial-hero-aside{grid-template-columns:minmax(0,1fr);}
  .editorial-featured-websites .project-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .category-round{width:60px;height:60px}
}
@media (max-width:820px){
  .editorial-theme-mini-grid{grid-template-columns:1fr 1fr 1fr;min-height:108px}
  .editorial-theme-mini-grid .visual-card{min-height:108px}
}
@media (max-width:640px){
  .editorial-featured-websites .project-grid{grid-template-columns:1fr}
  .editorial-theme-mini-grid{grid-template-columns:1fr;}
  .editorial-theme-mini-grid .visual-card{min-height:112px}
  .editorial-top-rated-panel .score-row small{max-width:180px}
  .category-round{width:58px;height:58px;border-radius:18px}
}


/* ============================================================
   V5.0 PRODUCTION MERGE — EDITORIAL + MOCK TRUSTPILOT FRAME
   Trustpilot values are visually disclosed as demo data.
   ============================================================ */
.v5-home .editorial-theme-mini-grid,.v5-home .editorial-newsletter{display:none!important}.v5-hero .editorial-hero-aside{display:flex;align-items:stretch}.v5-hero .editorial-top-rated-panel{width:100%}.demo-disclosure{font-size:.78rem;color:#73809a;background:#f4f7fb;border:1px solid rgba(69,90,139,.12);border-radius:12px;padding:9px 12px}.panel-header>div{display:flex;flex-direction:column;gap:3px}.panel-header .demo-disclosure{background:none;border:0;padding:0;font-size:.72rem}.v5-score-row{grid-template-columns:auto 1fr auto!important}.trustpilot-inline{display:inline-flex;align-items:center;gap:7px;color:#118757;white-space:nowrap}.trustpilot-inline>span{font-size:.68rem;letter-spacing:.09em;color:#00a868}.trustpilot-inline strong{font-size:.98rem}.trustpilot-inline small{font-size:.66rem;text-transform:uppercase;letter-spacing:.07em;color:#73809a;background:#eef2f7;padding:3px 5px;border-radius:6px}.trustpilot-badge{display:flex;flex-direction:column;align-items:flex-end;gap:2px;min-width:118px;padding:10px 12px;border-radius:17px;background:#f3fcf7;border:1px solid rgba(17,135,87,.18)}.trustpilot-badge.compact{min-width:102px;padding:8px 10px}.trustpilot-badge small{font-size:.66rem;letter-spacing:.08em;color:#00a868}.trustpilot-badge strong{font-size:1.05rem;color:#116b49}.trustpilot-badge em{font-style:normal;font-size:.66rem;color:#73809a}.v5-category-strip .category-round{width:62px;height:62px;font-size:1.28rem;border-radius:19px}.v5-latest{padding-top:22px}.v5-project-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.v5-project-card{display:flex;flex-direction:column;gap:16px;border-radius:24px;padding:20px}.v5-project-card .project-top{align-items:flex-start}.v5-project-body{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(165px,.9fr);gap:18px;align-items:stretch}.v5-project-copy{display:flex;flex-direction:column;gap:14px}.v5-project-copy>p{margin:0;color:#60708f;line-height:1.7}.project-product{min-height:190px;border-radius:20px;border:1px solid rgba(73,94,145,.13);background:linear-gradient(180deg,#f7faff,#eef4ff);display:flex;align-items:center;justify-content:center;overflow:hidden}.project-product img{width:100%;height:100%;object-fit:contain;padding:12px}.project-product-large{min-height:280px}.product-placeholder{padding:18px;flex-direction:column;align-items:flex-start;gap:10px;background:radial-gradient(circle at 75% 18%,rgba(255,173,54,.32),transparent 26%),radial-gradient(circle at 15% 15%,rgba(75,98,255,.20),transparent 32%),linear-gradient(180deg,#f7faff,#eef4ff)}.product-placeholder span{font-size:.72rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:#657292}.product-placeholder strong{font-size:1.08rem;color:#14213c}.product-placeholder small{padding:7px 10px;border-radius:999px;background:#fff;color:#3056dd;font-weight:800;border:1px solid rgba(73,94,145,.12)}.v5-deal{display:flex;flex-direction:column;gap:5px}.v5-deal span{font-size:.72rem;text-transform:uppercase;letter-spacing:.08em;color:#c16e0a;font-weight:800}.v5-deal strong{line-height:1.45}.toolbar-demo{margin:-4px 0 18px}.v5-category-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.v5-category-card{padding:24px;border-radius:22px}.v5-category-icon{display:grid;place-items:center;width:58px;height:58px;border-radius:18px;background:#eef3ff;color:#3056dd;font-size:1.35rem;font-weight:800;margin:16px 0}.comparison-card{overflow:auto;padding:10px 24px 24px}.compare-disclosure{margin:16px 0}.comparison-table{width:100%;border-collapse:collapse}.comparison-table th,.comparison-table td{padding:16px 14px;border-bottom:1px solid rgba(73,94,145,.12);text-align:left;vertical-align:top}.comparison-table th{font-size:.76rem;text-transform:uppercase;letter-spacing:.08em;color:#6b7792}.comparison-table td small{display:block;color:#73809a;margin-top:3px}.table-link{color:#3056dd;font-weight:700;white-space:nowrap}.guide-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.guide-feature-card{display:flex;flex-direction:column;gap:14px;padding:26px;background:#fff;border:1px solid rgba(73,94,145,.12);border-radius:24px;box-shadow:0 16px 38px rgba(26,39,73,.07);transition:.2s ease}.guide-feature-card:hover{transform:translateY(-4px);box-shadow:0 20px 44px rgba(26,39,73,.10)}.guide-card-kicker{font-size:.72rem;text-transform:uppercase;letter-spacing:.1em;color:#6272e8;font-weight:800}.guide-feature-card h2{margin:0;font-size:1.25rem;line-height:1.4}.guide-feature-card p{margin:0;color:#60708f;line-height:1.7}.guide-feature-card strong{color:#3056dd}.about-metric-grid{margin-bottom:24px}.about-story-card{padding:28px}.about-stack{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:22px}.about-stack span{padding:14px 16px;border-radius:16px;background:#f6f9ff;border:1px solid rgba(73,94,145,.11);color:#3e506f;font-weight:700}.about-steps{margin-top:24px}.trustpilot-demo-section{padding-top:22px}.trustpilot-demo-carousel{display:grid;grid-template-columns:auto 1fr auto;gap:16px;align-items:center}.trustpilot-demo-track{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(350px,1fr);gap:18px;overflow:auto;scrollbar-width:none;padding-bottom:6px}.trustpilot-demo-track::-webkit-scrollbar{display:none}.carousel-arrow{width:48px;height:48px;border-radius:50%;border:1px solid rgba(73,94,145,.14);background:#fff;color:#3056dd;font-size:1.65rem;box-shadow:0 12px 30px rgba(26,39,73,.08);cursor:pointer}.trustpilot-demo-card{min-height:350px;border-radius:26px;background:#090f1d;color:#fff;padding:26px;display:flex;flex-direction:column;gap:18px;box-shadow:0 20px 44px rgba(9,15,29,.16)}.trustpilot-demo-head{display:flex;justify-content:space-between;gap:16px}.trustpilot-demo-head h3{margin:6px 0 2px;font-size:1.2rem}.trustpilot-demo-head p{margin:0;color:#aeb9cf}.demo-kicker{font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;color:#f074ff;font-weight:800}.demo-pill{height:max-content;padding:7px 9px;border-radius:999px;background:rgba(240,116,255,.13);border:1px solid rgba(240,116,255,.25);color:#f5a7ff;font-size:.68rem;text-transform:uppercase;letter-spacing:.08em;font-weight:800}.trustpilot-demo-body{display:grid;grid-template-columns:150px 1fr;gap:18px;align-items:start}.demo-score strong{display:block;font-size:3rem;line-height:1}.demo-score span{display:block;color:#e764f4;letter-spacing:.12em;font-weight:800;margin-top:7px}.demo-score small{display:block;color:#b7c0d2;margin-top:5px}.demo-bars{display:grid;gap:8px}.demo-bars>div{display:grid;grid-template-columns:28px 1fr 34px;gap:8px;align-items:center}.demo-bars label,.demo-bars em{font-size:.72rem;color:#cbd3e3;font-style:normal}.demo-bars>div>span{height:6px;background:#2c2f38;border-radius:999px;overflow:hidden}.demo-bars b{display:block;height:100%;background:linear-gradient(90deg,#e764f4,#9664ff)}.trustpilot-demo-card blockquote{margin:0;color:#e7ebf5;line-height:1.75}.demo-note{margin-top:auto;font-size:.72rem;color:#9da9c1;border-top:1px solid rgba(255,255,255,.1);padding-top:12px}.v5-review-side{display:flex;flex-direction:column;gap:16px}.trustpilot-side .trustpilot-badge{align-items:flex-start;margin-bottom:12px}.review-demo-disclosure{margin:18px 0}.v5-footer-cta{display:flex;justify-content:space-between;gap:24px;align-items:center;padding:32px;border-radius:26px;background:linear-gradient(135deg,#071426,#0e2b4f);color:#fff;margin-bottom:28px}.v5-footer-kicker{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:#62d9ff;font-weight:800}.v5-footer-cta h2{margin:8px 0 10px;font-size:1.9rem}.v5-footer-cta p{margin:0;color:#bad0e6;max-width:700px;line-height:1.65}.v5-footer-actions{display:flex;gap:12px}.v5-footer-pill{display:inline-flex;margin-top:10px;padding:9px 12px;border-radius:999px;background:rgba(86,217,255,.1);border:1px solid rgba(86,217,255,.18);color:#75e5ff;font-weight:700;font-size:.76rem}.admin-form-section{padding:14px 16px;border-radius:14px;background:#f3f7ff;border:1px solid #dbe6fb}.admin-form-section strong{display:block;color:#1d3c70}.admin-form-section p{margin:6px 0 0;color:#6b7891;font-size:.9rem;line-height:1.5}
@media(max-width:1050px){.v5-project-grid,.v5-category-grid,.guide-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.v5-project-body{grid-template-columns:1fr}.trustpilot-demo-carousel{grid-template-columns:1fr}.carousel-arrow{display:none}.trustpilot-demo-track{grid-auto-columns:minmax(300px,88%)}.v5-footer-cta{flex-direction:column;align-items:flex-start}.about-stack{grid-template-columns:1fr}}
@media(max-width:720px){.v5-project-grid,.v5-category-grid,.guide-card-grid{grid-template-columns:1fr}.trustpilot-demo-track{grid-auto-columns:100%}.trustpilot-demo-body{grid-template-columns:1fr}.trustpilot-badge{align-items:flex-start}.v5-project-card .project-top{flex-wrap:wrap}.v5-footer-actions{flex-direction:column;width:100%}.v5-footer-actions .button{width:100%}}


/* V5.1 homepage balance, Trustpilot source treatment, latest carousel, pagination */
.trustpilot-brand{display:inline-flex;align-items:center;gap:6px;font-weight:850;color:#0b7d58;line-height:1}.trustpilot-brand.compact{font-size:.72rem}.trustpilot-star-logo{display:grid;place-items:center;width:18px;height:18px;border-radius:4px;background:#00b67a;color:#fff;font-size:.72rem}.trustpilot-brand:not(.compact) .trustpilot-star-logo{width:22px;height:22px;font-size:.85rem}.trustpilot-section-source{display:flex!important;align-items:center;gap:8px;color:#6e7d99!important;font-size:.72rem!important}.top-rated-trust{display:flex;flex-direction:column;align-items:flex-end;gap:3px;min-width:160px}.top-rated-trust>small{font-size:.62rem;color:#8a96ad;text-transform:uppercase;letter-spacing:.06em}.trustpilot-inline{gap:6px!important}.trustpilot-inline-stars{font-size:.66rem;letter-spacing:.08em;color:#00a868}.trustpilot-inline .trustpilot-brand{margin-right:2px}.trustpilot-badge{min-width:132px!important}.trustpilot-badge .trustpilot-brand{margin-bottom:3px}.trustpilot-badge-stars{font-size:.68rem;letter-spacing:.09em;color:#00a868}.trustpilot-badge em{font-size:.68rem!important}.latest-trust-source{display:flex;align-items:center}.trustpilot-source-line{display:block;margin-top:8px;color:#aeb9cf;font-size:.72rem}.trustpilot-source-badge{height:max-content;padding:8px 11px;border-radius:999px;background:rgba(0,182,122,.12);border:1px solid rgba(0,182,122,.28);color:#62e7b5;font-size:.7rem;letter-spacing:.06em;font-weight:800}.trustpilot-demo-head .trustpilot-brand{color:#fff}.trustpilot-demo-head .trustpilot-star-logo{background:#00b67a;color:#fff}.demo-note{color:#9ca8bf!important}

.latest-carousel{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:14px;align-items:center}.latest-carousel-track{display:grid;grid-auto-flow:column;grid-auto-columns:calc((100% - 54px)/4);gap:18px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;padding:4px 2px 16px}.latest-carousel-track::-webkit-scrollbar{display:none}.v51-latest-card{scroll-snap-align:start;height:100%;min-width:0}.latest-arrow{position:relative;z-index:2}.v51-latest .editorial-review-card{grid-template-columns:110px minmax(0,1fr)}

.v51-featured .v5-project-grid{align-items:stretch}.v51-featured .v5-project-card{height:100%;display:grid;grid-template-rows:auto auto 1fr auto}.v51-featured .v5-project-body{height:100%}.v51-featured .v5-project-copy{min-width:0}.v51-featured .v5-project-copy>p{display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;overflow:hidden;min-height:8.5em;max-height:8.5em}.v51-featured .project-product{height:230px;min-height:230px}.v51-featured .project-product img{object-fit:contain}.v51-featured .v5-deal{min-height:82px;justify-content:center}.v51-featured .project-actions{align-self:end}.featured-pagination{display:flex;align-items:center;justify-content:center;gap:8px;padding-top:26px}.page-btn{min-width:42px;height:42px;padding:0 13px;border-radius:13px;border:1px solid rgba(73,94,145,.16);background:#fff;color:#405173;font-weight:800;cursor:pointer;box-shadow:0 8px 20px rgba(26,39,73,.06);transition:.18s ease}.page-btn:hover{transform:translateY(-2px);color:#3056dd;border-color:#a8bcff}.page-btn.is-active{background:linear-gradient(135deg,#5264ff,#5d45ff);color:#fff;border-color:transparent;box-shadow:0 10px 24px rgba(80,76,255,.24)}

.v51-footer-grid{grid-template-columns:1.35fr repeat(4,minmax(0,1fr))!important;gap:34px!important;align-items:start}.v51-footer-brand{padding-right:28px!important}.v51-footer-grid nav{min-width:0}.v51-footer-grid nav h3{font-size:.74rem!important;margin-bottom:8px!important}.v51-footer-grid nav a{font-size:.65rem!important;line-height:1.5}.v51-socials{margin:14px 0 6px;gap:9px!important}.v51-socials .social-icon{width:32px!important;height:32px!important;border-radius:10px!important;background:rgba(255,255,255,.045);font-size:.68rem!important;transition:.18s ease}.v51-socials .social-icon:hover{background:rgba(98,217,255,.12);border-color:rgba(98,217,255,.3);color:#fff;transform:translateY(-2px)}.v51-footer .editorial-footer-bottom{margin-top:4px}

@media(max-width:1120px){.latest-carousel-track{grid-auto-columns:calc((100% - 18px)/2)}.v51-footer-grid{grid-template-columns:1.35fr repeat(2,minmax(0,1fr))!important}.v51-footer-brand{grid-row:span 2!important}.top-rated-trust{min-width:145px}}
@media(max-width:760px){.latest-carousel{grid-template-columns:1fr}.latest-arrow{display:none}.latest-carousel-track{grid-auto-columns:88%;padding-right:12%}.v51-featured .v5-project-copy>p{min-height:auto;max-height:8.5em}.v51-featured .project-product{height:210px;min-height:210px}.v51-footer-grid{grid-template-columns:1fr 1fr!important}.v51-footer-brand{grid-column:1/-1!important;grid-row:auto!important;padding-right:0!important}.top-rated-trust{align-items:flex-start;min-width:0}.v5-score-row{grid-template-columns:auto 1fr!important}.v5-score-row .top-rated-trust{grid-column:2;margin-top:8px}.trustpilot-badge{align-items:flex-start!important}}


/* V5.2 — scoped homepage refinement only: top-rated note, latest rating, featured cards */
.v51-home .editorial-top-rated-panel{display:flex;flex-direction:column;min-height:100%}
.v52-score-row .top-rated-rating-only{display:inline-flex;align-items:center;justify-content:flex-end;gap:8px;white-space:nowrap;color:#0a9b65;font-weight:850;min-width:102px}
.v52-score-row .top-rated-rating-only>span{font-size:.68rem;letter-spacing:.09em}
.v52-score-row .top-rated-rating-only>strong{font-size:.95rem;color:#08754e}
.top-rated-reputation-note{margin-top:auto;display:grid;grid-template-columns:auto 1fr;gap:14px;align-items:start;padding:18px;border-radius:20px;border:1px solid rgba(63,92,150,.12);background:linear-gradient(135deg,rgba(245,249,255,.94),rgba(241,252,247,.88));box-shadow:inset 0 1px 0 rgba(255,255,255,.8)}
.reputation-note-icon{width:38px;height:38px;display:grid;place-items:center;border-radius:12px;background:#e7f8f0;color:#0a9b65;font-size:1.05rem;box-shadow:inset 0 0 0 1px rgba(10,155,101,.14)}
.top-rated-reputation-note strong{display:block;font-size:.84rem;color:#1c2944;margin-bottom:4px}
.top-rated-reputation-note p{margin:0;color:#657490;font-size:.72rem;line-height:1.55}
.top-rated-reputation-note small{display:block;margin-top:7px;color:#8a96ad;font-size:.64rem;letter-spacing:.02em}

.latest-rating-only{display:inline-flex;align-items:center;gap:7px;color:#0a9b65;white-space:nowrap;font-weight:850}
.latest-rating-only>span{font-size:.66rem;letter-spacing:.09em}
.latest-rating-only>strong{font-size:.9rem;color:#08754e}
.v52-latest-card .editorial-review-meta{align-items:center}

.v51-featured .v52-project-card{grid-template-rows:auto auto auto auto auto!important;gap:14px!important}
.v51-featured .v52-project-card .project-top{min-height:62px}
.featured-rating-only{display:flex;flex-direction:column;align-items:flex-end;gap:2px;min-width:96px;padding:8px 10px;border-radius:16px;background:#f4fbf7;border:1px solid rgba(10,155,101,.16)}
.featured-rating-stars{font-size:.66rem;letter-spacing:.08em;color:#0aaa6d}
.featured-rating-only strong{font-size:1.02rem;color:#08754e;line-height:1.05}
.featured-rating-only em{font-style:normal;font-size:.65rem;color:#75849e;white-space:nowrap}
.v51-featured .v52-project-body{grid-template-columns:minmax(0,1.28fr) minmax(145px,.82fr)!important;gap:16px!important;align-items:stretch!important;min-height:166px;height:166px!important}
.v51-featured .v52-project-copy{display:flex;align-items:flex-start!important;min-width:0}
.v51-featured .v52-project-copy>p{display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden;min-height:6.55em!important;max-height:6.55em!important;margin:0;line-height:1.64}
.v51-featured .v52-project-card .project-product{height:166px!important;min-height:166px!important;border-radius:18px}
.v51-featured .v52-project-card .project-product img{padding:9px}
.v51-featured .v52-offer-row{display:grid!important;grid-template-columns:98px minmax(0,1fr);align-items:center;gap:12px;min-height:58px!important;padding:11px 14px;margin:0!important;border-radius:16px}
.v51-featured .v52-offer-row span{margin:0;font-size:.65rem;line-height:1.3}
.v51-featured .v52-offer-row strong{font-size:.82rem;line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.v51-featured .v52-project-card .project-actions{margin-top:0;align-self:stretch}
.featured-pagination-shell{display:flex;align-items:center;justify-content:space-between;gap:18px;padding-top:24px;border-top:1px solid rgba(73,94,145,.08);margin-top:24px}
.featured-page-status{font-size:.76rem;color:#73809a;font-weight:700}
.featured-pagination{padding-top:0!important;margin-left:auto}

@media(max-width:1120px){
  .v51-featured .v52-project-body{grid-template-columns:minmax(0,1fr) 150px!important;height:168px!important;min-height:168px}
  .v51-featured .v52-project-card .project-product{height:168px!important;min-height:168px!important}
}
@media(max-width:760px){
  .top-rated-reputation-note{margin-top:14px}
  .v52-score-row .top-rated-rating-only{grid-column:2;justify-content:flex-start;margin-top:8px;min-width:0}
  .v51-featured .v52-project-body{grid-template-columns:1fr!important;height:auto!important;min-height:0}
  .v51-featured .v52-project-copy>p{min-height:auto!important;max-height:6.55em!important}
  .v51-featured .v52-project-card .project-product{height:190px!important;min-height:190px!important}
  .v51-featured .v52-offer-row{grid-template-columns:1fr;gap:5px}
  .featured-rating-only{align-items:flex-start}
  .featured-pagination-shell{flex-direction:column;align-items:flex-start}
  .featured-pagination{margin-left:0}
}

/* =========================================================
   V5.3 — Reader reviews, scalable project reviews, category fix
   Scoped to the newly introduced sections. Existing approved
   header, hero, latest carousel, featured cards and footer stay intact.
   ========================================================= */
.v53-home .editorial-hero + .v5-latest{padding-top:42px;border-top:1px solid #f0f2f7;background:#fbfbfe}

.reader-review-section{padding-top:50px;padding-bottom:16px;background:linear-gradient(180deg,#fff,#fbfcff)}
.reader-review-heading{align-items:flex-start}
.reader-review-heading>div{max-width:760px}
.reader-preview-label,.reader-live-label{display:inline-flex;align-items:center;justify-content:center;min-height:34px;padding:0 12px;border-radius:999px;font-size:.68rem;font-weight:850;letter-spacing:.04em;white-space:nowrap}
.reader-preview-label{background:#f3f1ff;border:1px solid #dcd6ff;color:#6254d7}.reader-live-label{background:#effbf5;border:1px solid #cceedd;color:#0a875a}
.reader-review-overview{display:grid;grid-template-columns:minmax(0,1.18fr) minmax(300px,.82fr);gap:18px;margin-bottom:22px}
.reader-summary-card,.reader-review-principles{border:1px solid #e2e7f1;border-radius:22px;background:#fff;box-shadow:0 13px 32px rgba(30,44,77,.055)}
.reader-summary-card{display:grid;grid-template-columns:220px 1fr auto;gap:22px;align-items:center;padding:22px}
.reader-summary-score strong{display:block;font-size:3.25rem;line-height:.95;color:#17213d;letter-spacing:-.055em}.reader-summary-score .reader-stars{display:block;margin:9px 0 6px}.reader-summary-score>span:last-child{color:#76839c;font-size:.72rem}
.reader-stars{color:#6558ff;font-size:.9rem;letter-spacing:.11em;white-space:nowrap}
.reader-summary-bars{display:grid;gap:7px}.reader-summary-bars>div{display:grid;grid-template-columns:26px minmax(100px,1fr) 34px;align-items:center;gap:8px;font-size:.67rem;color:#687792}.reader-summary-bars label,.reader-summary-bars em{font-style:normal}.reader-summary-bars>div>span{height:6px;border-radius:999px;background:#edf0f6;overflow:hidden}.reader-summary-bars b{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,#6758ff,#8d6dff)}
.reader-summary-note{max-width:170px;color:#8a96ad;font-size:.64rem;line-height:1.55}
.reader-review-principles{padding:22px;background:linear-gradient(135deg,#f8f9ff,#f3fbf8)}.reader-review-principles strong{display:block;margin-bottom:7px;color:#1b2945;font-size:.9rem}.reader-review-principles p{margin:0;color:#65748f;font-size:.76rem;line-height:1.65}.reader-review-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:15px}.reader-review-chips span{padding:6px 9px;border-radius:999px;border:1px solid rgba(85,101,146,.12);background:#fff;color:#5c6a85;font-size:.64rem;font-weight:750}
.reader-review-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.reader-review-card{display:flex;flex-direction:column;min-height:230px;padding:20px;border:1px solid #e2e7f1;border-radius:20px;background:#fff;box-shadow:0 10px 28px rgba(31,45,77,.052);transition:.18s ease}.reader-review-card:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(31,45,77,.09)}.reader-review-card:nth-child(5n){grid-column:1/-1;min-height:195px}.reader-review-card[hidden]{display:none!important}
.reader-review-top{display:flex;justify-content:space-between;align-items:center;gap:14px}.reader-review-top>div{display:flex;align-items:center;gap:8px}.reader-review-top strong{color:#5146ff;font-size:.88rem}.reader-review-source{font-size:.62rem;font-weight:800;color:#7d89a1;padding:5px 8px;border-radius:999px;background:#f6f7fb;border:1px solid #e8ebf2}
.reader-review-card h3{margin:14px 0 7px;font-size:1rem;color:#17213d}.reader-review-card>p{margin:0;color:#63728e;line-height:1.7;font-size:.77rem;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}.reader-review-footer{display:flex;align-items:center;gap:10px;margin-top:auto;padding-top:17px}.reader-avatar{width:34px;height:34px;border-radius:12px;display:grid;place-items:center;background:linear-gradient(135deg,#564aff,#7868ff);color:#fff;font-size:.65rem;font-weight:900}.reader-review-footer div{display:flex;flex-direction:column;line-height:1.25}.reader-review-footer strong{font-size:.72rem}.reader-review-footer small{font-size:.62rem;color:#929cb0;margin-top:3px}
.reader-review-pagination-shell{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-top:22px;padding-top:18px;border-top:1px solid rgba(73,94,145,.08)}.reader-review-pagination-shell>span{font-size:.74rem;color:#74819a;font-weight:700}.reader-review-pagination{display:flex;align-items:center;gap:8px}.reader-review-pagination .page-btn{min-width:38px;height:38px;border-radius:12px}
.site-reader-reviews{margin-top:0}.project-reader-reviews{margin-top:14px;border-top:1px solid #eef1f6}.project-reader-reviews .reader-summary-card{background:linear-gradient(135deg,#fff,#fbfcff)}

/* Trustpilot preview cards: project logo beside the brand name. */
.v53-trustpilot-demo-head{align-items:center}.trustpilot-project-brand{display:flex;align-items:center;gap:11px;min-width:0}.trustpilot-project-brand .logo-tile{width:42px;height:42px;border-radius:13px;flex:0 0 auto}.trustpilot-project-brand h3{margin:0 0 3px!important;font-size:1rem!important;color:#fff}.trustpilot-project-brand p{margin:0!important;color:#aeb9cf!important;font-size:.7rem!important}.v53-trustpilot-demo-card .trustpilot-source-badge{white-space:nowrap}

/* Dedicated categories directory: stable 3/2/1 column layout. */
.v53-categories-page .section{padding-top:22px}.v53-category-directory-head{display:grid;grid-template-columns:170px 170px minmax(280px,1fr);gap:14px;align-items:center;margin-bottom:20px}.v53-category-directory-head>div{display:flex;flex-direction:column;justify-content:center;min-height:72px;padding:13px 16px;border:1px solid #e3e8f1;border-radius:17px;background:#fff;box-shadow:0 9px 24px rgba(30,44,77,.045)}.v53-category-directory-head>div strong{font-size:1.35rem;color:#18233f}.v53-category-directory-head>div span{margin-top:2px;color:#7c89a0;font-size:.68rem}.v53-category-search{display:flex;align-items:center;gap:9px;min-height:50px;padding:0 15px;border:1px solid #dfe5ef;border-radius:15px;background:#fff;color:#8995aa;box-shadow:0 9px 24px rgba(30,44,77,.045)}.v53-category-search input{width:100%;border:0;outline:0;background:transparent;font:inherit;font-size:.78rem;color:#26324d}
.v53-category-directory{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;align-items:stretch}.v53-category-card{display:flex!important;flex-direction:column!important;height:100%;min-height:360px;padding:22px!important;border-radius:22px!important}.v53-category-card[hidden]{display:none!important}.v53-category-card-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px}.v53-category-card .v5-category-icon{margin:0!important;width:52px!important;height:52px!important}.v53-category-card .category-count{position:static!important;margin:0!important;white-space:nowrap}.v53-category-card h3{margin:0 0 9px;font-size:1.08rem}.v53-category-card>p{margin:0;color:#6d7b96;line-height:1.6;font-size:.73rem;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}.v53-category-meta{display:grid;gap:9px;margin:16px 0 18px;padding-top:14px;border-top:1px solid #edf0f5}.v53-category-meta span{display:grid;gap:3px;color:#697792;font-size:.67rem;line-height:1.45}.v53-category-meta b{font-size:.6rem;letter-spacing:.06em;text-transform:uppercase;color:#8a95aa}.v53-category-card>strong{margin-top:auto;color:#5146ff!important;font-size:.72rem}

@media(max-width:1000px){.reader-review-overview{grid-template-columns:1fr}.reader-summary-card{grid-template-columns:180px 1fr}.reader-summary-note{grid-column:1/-1;max-width:none}.v53-category-directory{grid-template-columns:repeat(2,minmax(0,1fr))}.v53-category-directory-head{grid-template-columns:1fr 1fr}.v53-category-search{grid-column:1/-1}}
@media(max-width:720px){.reader-review-grid{grid-template-columns:1fr}.reader-review-card:nth-child(5n){grid-column:auto}.reader-summary-card{grid-template-columns:1fr}.reader-review-pagination-shell{flex-direction:column;align-items:flex-start}.reader-review-pagination{flex-wrap:wrap}.v53-category-directory{grid-template-columns:1fr}.v53-category-directory-head{grid-template-columns:1fr 1fr}.v53-category-card{min-height:330px}.v53-trustpilot-demo-head{align-items:flex-start}.trustpilot-project-brand .logo-tile{width:38px;height:38px}}

/* V5.7 — dedicated Latest Reviews image */
.editorial-review-thumb-image{background:#eef3fb;overflow:hidden;padding:0!important}
.editorial-review-thumb-image::after{display:none!important}
.editorial-review-thumb-image img{width:100%;height:100%;min-height:170px;object-fit:cover;display:block}
@media(max-width:720px){.editorial-review-thumb-image img{min-height:150px}}

/* V5.10 — compact review detail + code-only coupon button with copy feedback */
.review-detail-page .review-detail-section{padding-top:34px}
.review-title .review-project-name{margin:8px 0 6px;font-size:clamp(1.65rem,2.4vw,2.15rem);line-height:1.08;color:#111a2f;letter-spacing:-.025em}
.visually-hidden{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.coupon-copy-btn{position:relative;isolation:isolate;min-height:58px;display:flex!important;align-items:center;justify-content:center;overflow:hidden;padding:12px 54px!important;border:1.5px dashed #9ab6f5!important;border-radius:15px!important;background:linear-gradient(135deg,#f8faff 0%,#edf4ff 55%,#f6f9ff 100%)!important;color:#174dc8!important;box-shadow:0 7px 20px rgba(48,86,221,.07)!important;transition:transform .2s cubic-bezier(.2,.8,.2,1),box-shadow .2s ease,border-color .2s ease,background .2s ease!important}
.coupon-copy-btn::before{content:"";position:absolute;z-index:-1;top:-45%;left:-45%;width:38%;height:190%;transform:rotate(22deg) translateX(-250%);background:linear-gradient(90deg,transparent,rgba(255,255,255,.86),transparent);transition:transform .55s ease;pointer-events:none}
.coupon-copy-btn::after{content:"✓";position:absolute;right:15px;top:50%;display:grid;place-items:center;width:28px;height:28px;border-radius:999px;background:#159765;color:#fff;font-size:.9rem;font-weight:950;box-shadow:0 7px 16px rgba(21,151,101,.25);opacity:0;transform:translateY(-50%) scale(.55) rotate(-14deg);transition:opacity .18s ease,transform .24s cubic-bezier(.2,1.4,.4,1);pointer-events:none}
.coupon-copy-btn:not(:disabled){cursor:copy}
.coupon-copy-btn:not(:disabled):hover{transform:translateY(-3px);border-color:#4e7df0!important;background:linear-gradient(135deg,#f4f8ff 0%,#e5efff 55%,#f3f7ff 100%)!important;box-shadow:0 15px 32px rgba(48,86,221,.18),0 0 0 4px rgba(78,125,240,.07)!important}
.coupon-copy-btn:not(:disabled):hover::before{transform:rotate(22deg) translateX(520%)}
.coupon-copy-btn:not(:disabled):focus-visible{outline:0;box-shadow:0 0 0 4px rgba(78,125,240,.18),0 15px 32px rgba(48,86,221,.16)!important;border-color:#3f70e6!important}
.coupon-copy-btn:not(:disabled):active{transform:translateY(0) scale(.985);box-shadow:0 7px 16px rgba(48,86,221,.12)!important}
.coupon-copy-btn .coupon-code-value{position:relative;z-index:1;display:block;max-width:100%;font:950 1.02rem/1.15 ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono",monospace;letter-spacing:.035em;color:#1849c6;text-align:center;overflow-wrap:anywhere;transition:color .2s ease,letter-spacing .2s ease,transform .2s ease}
.coupon-copy-btn:not(:disabled):hover .coupon-code-value{color:#103fae;letter-spacing:.055em;transform:scale(1.025)}
.coupon-copy-btn.is-copied{border-style:solid!important;border-color:#57c994!important;background:linear-gradient(135deg,#effff6,#e5faef)!important;box-shadow:0 14px 32px rgba(21,151,101,.18),0 0 0 4px rgba(21,151,101,.07)!important;animation:couponCopiedPulse .42s cubic-bezier(.2,.9,.3,1)}
.coupon-copy-btn.is-copied::after{opacity:1;transform:translateY(-50%) scale(1) rotate(0)}
.coupon-copy-btn.is-copied .coupon-code-value{color:#087047;transform:scale(1.02)}
.coupon-copy-btn.is-empty{opacity:.68;cursor:default!important;border-style:solid!important;border-color:#d9e0eb!important;background:#f6f8fb!important;box-shadow:none!important}
.coupon-copy-btn.is-empty::before,.coupon-copy-btn.is-empty::after{display:none}
.coupon-copy-btn.is-empty .coupon-code-value{color:#69758b;letter-spacing:.02em}
.coupon-copy-toast{position:fixed;z-index:9999;left:50%;bottom:28px;display:flex;align-items:center;gap:9px;max-width:min(92vw,480px);padding:11px 15px;border:1px solid rgba(21,151,101,.22);border-radius:999px;background:rgba(12,42,32,.96);color:#d7ffec;font-size:.78rem;font-weight:850;box-shadow:0 16px 42px rgba(4,29,20,.24);backdrop-filter:blur(12px);opacity:0;transform:translate(-50%,14px) scale(.97);pointer-events:none;transition:opacity .2s ease,transform .2s ease}
.coupon-copy-toast::before{content:"✓";display:grid;place-items:center;width:20px;height:20px;border-radius:50%;background:#28b67d;color:#fff;font-size:.72rem}.coupon-copy-toast.show{opacity:1;transform:translate(-50%,0) scale(1)}
@keyframes couponCopiedPulse{0%{transform:scale(.985)}55%{transform:scale(1.018)}100%{transform:scale(1)}}
@media(max-width:640px){.review-detail-page .review-detail-section{padding-top:22px}.coupon-copy-btn{min-height:56px;padding:11px 48px!important}.coupon-copy-btn .coupon-code-value{font-size:.91rem}.coupon-copy-btn::after{right:12px;width:26px;height:26px}.coupon-copy-toast{bottom:18px}}
