﻿:root {
  --blue: #18a56f;
  --blue-2: #0d8b5e;
  --sky: #f6fbf8;
  --bg: #ffffff;
  --card: #ffffff;
  --text: #101828;
  --muted: #667085;
  --line: #e8edf2;
  --soft-line: #edf1f5;
  --shadow: 0 12px 28px rgba(16, 24, 40, .06);
  --radius: 14px;
  --side: 0px;
  --top: 80px;
  font-family: Inter, "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: var(--top);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: -.03em;
}
.brand img { width: 42px; height: 42px; border-radius: 14px; }
.brand span { font-size: 28px; }
.brand i {
  padding-left: 14px;
  border-left: 1px solid rgba(24,165,111,.35);
  color: var(--blue);
  font-style: normal;
  font-size: 20px;
  font-weight: 800;
}
.topnav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.topnav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 10px;
  color: #344054;
  font-size: 15px;
  font-weight: 700;
}
.topnav a:hover, .topnav a.active { color: var(--blue); background: #edf9f3; }
.login-btn {
  min-width: 112px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  border: 1px solid rgba(24,165,111,.42);
  color: var(--blue);
  background: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.login-btn::before {
  content: "+";
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  line-height: 1;
}
.login-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(24,165,111,.36);
  background: #f8fcfa;
  box-shadow: 0 10px 22px rgba(24, 165, 111, .09);
}
.theme-toggle {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #475467;
  cursor: pointer;
  transition: transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease;
}
.theme-toggle:hover {
  transform: translateY(-1px);
  color: var(--blue);
  border-color: rgba(24,165,111,.34);
}
.theme-toggle span {
  width: 18px;
  height: 18px;
  overflow: hidden;
  text-indent: -999px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 64% 36%, #fff 0 6px, transparent 6.5px),
    currentColor;
}

.sidebar {
  display: none;
}
.side-title {
  margin: 0 0 14px 12px;
  color: #98a2b3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav-item {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  padding: 0 12px;
  border-radius: 8px;
  color: #344054;
  font-size: 15px;
  font-weight: 750;
}
.nav-item span {
  width: 22px;
  display: inline-flex;
  justify-content: center;
  color: #475467;
  font-weight: 900;
}
.nav-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-item b { font-weight: 750; }
.nav-item:hover { background: #f8faf9; color: var(--blue); }
.nav-item.active { background: #f4faf7; color: var(--blue); }
.nav-item.active span { color: var(--blue); }

.workspace {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: calc(var(--top) + 20px) 60px 40px;
  background: #fff;
}
.hero-card {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0;
  padding: 44px 22px 30px;
  border: 0;
  border-radius: 0;
  background: #fff;
}
.hero-card span {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-card h1 {
  margin: 0 0 8px;
  color: #020617;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.hero-card h1::after {
  content: ".";
  color: var(--blue);
}
.hero-card p {
  max-width: 760px;
  margin: 0;
  color: #475467;
  font-size: 16px;
  line-height: 1.7;
}
.hero-art {
  display: none;
}
.hero-art div {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(from 160deg, #18a56f, #8fdc77, #c8f5dd, #18a56f);
  opacity: .22;
}
.hero-art b { position: relative; color: var(--blue); font-size: 42px; letter-spacing: -.08em; }
.hero-art small { position: absolute; bottom: 15px; color: var(--muted); font-size: 12px; font-weight: 900; }

.filter-panel {
  margin: 22px 0;
  padding: 16px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.filter-panel div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  min-height: 44px;
}
.filter-panel strong {
  width: 88px;
  color: #667085;
  font-size: 14px;
  font-weight: 800;
}
.filter-panel button {
  height: 32px;
  padding: 0 12px;
  border: 1px solid #dde4ec;
  border-radius: 999px;
  background: transparent;
  color: #1d2939;
  cursor: pointer;
}
.filter-panel button:hover, .filter-panel button.active {
  color: var(--blue);
  border-color: var(--blue);
  background: #fff;
}

.content-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin: 20px 0 14px;
}
.content-head h2 { margin: 0 0 5px; font-size: 24px; letter-spacing: -.03em; }
.content-head p { margin: 0; color: var(--muted); }
.featured-head {
  position: relative;
  align-items: center;
  padding: 18px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
}
.section-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.section-overline::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(24,165,111,.12);
}
.collection-stat {
  min-width: 128px;
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.collection-stat b {
  color: var(--blue);
  font-size: 25px;
  line-height: 1;
}
.collection-stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.filter-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}
.filter-summary a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(24,165,111,.22);
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  font-size: 13px;
  font-weight: 850;
}
.filter-summary a:hover { background: #f1faf5; }
.filter-summary a[hidden] { display: none; }
.search-box {
  width: min(100%, 340px);
  display: grid;
  gap: 6px;
  color: #667085;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.search-box input {
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 650;
}
.search-box input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(24,165,111,.1); }

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.tool-card {
  content-visibility: auto;
  contain-intrinsic-size: 0 240px;
  position: relative;
  min-height: 350px;
  padding: 16px;
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  background: var(--card);
  box-shadow: none;
  animation: cardIn .36s ease both;
  animation-delay: var(--delay);
  overflow: hidden;
}
.tool-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(24,165,111,.05), transparent 46%);
  opacity: 0;
  transition: opacity .18s ease;
}
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d8e3dc; }
.tool-card:hover::after { opacity: 1; }
.tool-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
}

.tool-head[role="link"] { cursor: pointer; }
.tool-head[role="link"] h3 { transition: color .18s ease; }
.tool-head[role="link"]:hover h3,
.tool-head[role="link"]:focus-visible h3 { color: var(--blue); }
.tool-head[role="link"]:focus-visible { outline: 3px solid rgba(24, 165, 111, .22); outline-offset: 5px; border-radius: 18px; }

.tool-logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(24,165,111,.26), rgba(143,220,119,.16)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 6px 14px rgba(16, 24, 40, .06);
}
.tool-logo img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}
.tool-head h3 { margin: 0 0 3px; font-size: 18px; }
.tool-head p { margin: 0; color: var(--muted); font-size: 13px; }
.tool-head span {
  align-self: start;
  padding: 5px 8px;
  border-radius: 0 0 0 10px;
  color: var(--blue);
  background: #f2faf6;
  font-size: 12px;
  font-weight: 850;
}
.tool-desc {
  position: relative;
  z-index: 1;
  min-height: 58px;
  margin: 16px 0 12px;
  color: #475467;
  font-size: 14px;
  line-height: 1.55;
}
.tool-shot {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(135deg, #f8fafc, #ffffff);
}
.tool-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent),
    #f4f7f5;
  transform: translateX(-100%);
  animation: shotLoading 1.6s ease-in-out infinite;
}
.tool-shot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.tag-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.tag-row em {
  color: #344054;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
}
.tag-row em::before { content: "#"; color: var(--blue); }
.tool-card a {
  position: relative;
  z-index: 1;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 850;
}
.tool-card a:hover { background: var(--blue-2); }
.tool-card[hidden] { display: none; }
.url-card {
  min-height: 286px;
}
.url-card .tool-desc {
  min-height: 62px;
  margin-bottom: 14px;
}
.research-dimension-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 26px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.research-dimension-filter button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #dde4ec;
  border-radius: 999px;
  background: #fff;
  color: #344054;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}
.research-dimension-filter button:hover,
.research-dimension-filter button.active {
  color: var(--blue);
  border-color: var(--blue);
}
.research-dimension-section {
  margin-top: 34px;
}
.research-dimension-section[hidden] {
  display: none;
}
.research-dimension-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.research-dimension-head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.research-dimension-head h2 {
  margin: 0 0 6px;
  font-size: 25px;
  letter-spacing: -.03em;
}
.research-dimension-head p {
  margin: 0;
  color: var(--muted);
}
.research-tool-card {
  min-height: 270px;
}
.research-tool-card .tool-desc {
  min-height: 86px;
}
body.theme-dark .research-dimension-filter {
  background: var(--card);
  border-color: var(--line);
}
body.theme-dark .research-dimension-filter button {
  background: var(--card);
  color: var(--muted);
  border-color: #293932;
}
body.theme-dark .research-dimension-filter button:hover,
body.theme-dark .research-dimension-filter button.active {
  color: #72d7aa;
  border-color: #399e70;
}
body.theme-dark .research-dimension-head h2 {
  color: var(--text);
}
body.theme-dark .research-dimension-head p {
  color: var(--muted);
}
.nav-tools-section {
  margin-top: 26px;
}
.section-mini-head {
  margin-bottom: 14px;
}
.section-mini-head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.section-mini-head h2 {
  margin: 0 0 6px;
  font-size: 24px;
  letter-spacing: -.03em;
}
.section-mini-head p {
  margin: 0;
  color: var(--muted);
}
.nav-tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.nav-tool-card {
  position: relative;
  min-height: 178px;
  padding: 20px;
  border: 1px solid var(--soft-line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  animation: cardIn .36s ease both;
  animation-delay: var(--delay);
}
.nav-tool-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(24,165,111,.08);
}
.nav-tool-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #f3faf6;
  font-size: 12px;
  font-weight: 900;
}
.nav-tool-card h3 {
  position: relative;
  z-index: 1;
  margin: 18px 0 8px;
  font-size: 20px;
  letter-spacing: -.03em;
}
.nav-tool-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.nav-tool-card b {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-size: 13px;
}
.nav-tool-card:hover {
  transform: translateY(-3px);
  border-color: #d8e3dc;
  box-shadow: var(--shadow);
}
.nav-content-section {
  margin-top: 28px;
}
.home-category-section {
  margin-top: 34px;
}
.home-category-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding-top: 8px;
}
.home-category-head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.home-category-head h2 {
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: -.035em;
}
.home-category-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.home-category-head a {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(24,165,111,.28);
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  font-size: 13px;
  font-weight: 850;
}
.home-category-head a:hover {
  background: #f8fcfa;
}
.home-category-grid {
  margin-top: 0;
}
body.theme-dark .home-category-head h2 {
  color: var(--text);
}
body.theme-dark .home-category-head p {
  color: var(--muted);
}
body.theme-dark .home-category-head a {
  color: #72d7aa;
  background: var(--card);
  border-color: #2a4439;
}
.nav-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.nav-content-card {
  padding: 20px;
  border: 1px solid var(--soft-line);
  border-radius: 16px;
  background: #fff;
}
.nav-content-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.nav-content-head h3 {
  margin: 0 0 7px;
  font-size: 20px;
  letter-spacing: -.03em;
}
.nav-content-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.nav-content-head a {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(24,165,111,.24);
  border-radius: 999px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}
.mini-tool-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.mini-tool-list span {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}
.mini-tool-list img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}
body.theme-dark .nav-content-card,
body.theme-dark .mini-tool-list span {
  background: var(--card);
  border-color: var(--line);
}
body.theme-dark .nav-content-head h3,
body.theme-dark .mini-tool-list span {
  color: var(--text);
}
body.theme-dark .nav-content-head p {
  color: var(--muted);
}
body.theme-dark .nav-content-head a {
  color: #72d7aa;
  border-color: #2a4439;
}

.detail-workspace {
  width: 100%;
  max-width: none;
  margin: 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.breadcrumb a {
  color: #475467;
}
.breadcrumb a:hover {
  color: var(--blue);
}
.breadcrumb strong {
  color: var(--text);
}
.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
  margin-bottom: 24px;
}
.detail-hero-main,
.detail-facts,
.detail-section,
.sticky-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.detail-hero-main {
  position: relative;
  overflow: hidden;
  padding: 34px;
}
.detail-hero-main::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,165,111,.14), transparent 68%);
  pointer-events: none;
}
.detail-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}
.detail-kicker span,
.detail-kicker em {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.detail-kicker span {
  color: var(--blue);
  background: #eefaf4;
}
.detail-kicker em {
  color: #475467;
  border: 1px solid var(--line);
  background: #fff;
}
.detail-title-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.detail-title-row img {
  width: 74px;
  height: 74px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(16,24,40,.08);
}
.detail-title-row h1 {
  margin: -2px 0 10px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .95;
  letter-spacing: -.06em;
}
.detail-title-row p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}
.detail-tags span {
  padding: 9px 12px;
  border: 1px solid #dcefe6;
  border-radius: 999px;
  color: #167a55;
  background: #f6fbf8;
  font-size: 13px;
  font-weight: 800;
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.detail-site-shot {
  position: relative;
  z-index: 1;
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f8faf9;
  box-shadow: 0 18px 38px rgba(16,24,40,.08);
}
.detail-site-shot::before {
  content: "";
  display: block;
  height: 42px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18px 21px, #ff6b6b 0 5px, transparent 5.5px),
    radial-gradient(circle at 38px 21px, #f4c542 0 5px, transparent 5.5px),
    radial-gradient(circle at 58px 21px, #18a56f 0 5px, transparent 5.5px),
    linear-gradient(90deg, #fff, #f7fbf9);
}
.detail-site-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  background: #eef4f1;
}
.detail-site-shot figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.detail-site-shot figcaption span {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}
.detail-site-shot figcaption em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}
.primary-action,
.secondary-action,
.sticky-panel a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
}
.primary-action {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(24,165,111,.18);
}
.primary-action:hover {
  background: var(--blue-2);
  transform: translateY(-1px);
}
.secondary-action {
  color: #344054;
  border: 1px solid var(--line);
  background: #fff;
}
.secondary-action:hover {
  color: var(--blue);
  border-color: rgba(24,165,111,.32);
}
.detail-facts {
  padding: 24px;
}
.detail-facts h2,
.sticky-panel h2 {
  margin: 0 0 18px;
  font-size: 19px;
  letter-spacing: -.03em;
}
.detail-facts dl {
  display: grid;
  gap: 12px;
  margin: 0;
}
.detail-facts div {
  padding: 13px 0;
  border-bottom: 1px solid var(--soft-line);
}
.detail-facts div:last-child {
  border-bottom: 0;
}
.detail-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.detail-facts dd {
  margin: 5px 0 0;
  color: var(--text);
  font-weight: 850;
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
  align-items: start;
}
.detail-content {
  display: grid;
  gap: 18px;
}
.detail-section {
  padding: 28px;
}
.detail-section h2 {
  margin: 4px 0 14px;
  font-size: 28px;
  letter-spacing: -.04em;
}
.detail-section p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.feature-grid article {
  padding: 18px;
  border: 1px solid var(--soft-line);
  border-radius: 18px;
  background: #fbfdfc;
}
.feature-grid b {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}
.feature-grid p {
  margin: 0;
  font-size: 14px;
}
.detail-list,
.sticky-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.detail-list li {
  padding: 14px 16px;
  border: 1px solid var(--soft-line);
  border-radius: 16px;
  color: var(--muted);
  line-height: 1.6;
  background: #fff;
}
.detail-list strong {
  color: var(--text);
}
.workflow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}
.workflow-list li {
  position: relative;
  padding: 16px 16px 16px 58px;
  border: 1px solid var(--soft-line);
  border-radius: 18px;
  background: #fbfdfc;
  counter-increment: workflow;
}
.workflow-list li::before {
  content: counter(workflow);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}
.workflow-list b {
  display: block;
  margin-bottom: 5px;
}
.workflow-list span {
  color: var(--muted);
  line-height: 1.6;
}
.related-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.related-tools a {
  padding: 16px;
  border: 1px solid var(--soft-line);
  border-radius: 18px;
  background: #fff;
}
.related-tools a:hover {
  border-color: rgba(24,165,111,.3);
  box-shadow: 0 10px 24px rgba(24,165,111,.08);
}
.related-tools span {
  display: block;
  margin-bottom: 7px;
  font-weight: 900;
}
.related-tools em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}
.faq-section details {
  border-top: 1px solid var(--soft-line);
  padding: 15px 0;
}
.faq-section details:last-child {
  padding-bottom: 0;
}
.faq-section summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}
.faq-section details p {
  margin: 10px 0 0;
  font-size: 15px;
}
.detail-sidebar {
  position: sticky;
  top: 104px;
}
.sticky-panel {
  padding: 22px;
}
.sticky-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.sticky-panel li {
  padding: 9px 11px;
  border-radius: 10px;
  color: #475467;
  background: #f8faf9;
  font-size: 13px;
  font-weight: 800;
}
.sticky-panel a {
  width: 100%;
  margin-top: 18px;
  color: var(--blue);
  border: 1px solid rgba(24,165,111,.3);
}
body.theme-dark .nav-tool-card {
  background: var(--card);
  border-color: var(--line);
}
body.theme-dark .nav-tool-card span {
  color: #72d7aa;
  background: rgba(24,165,111,.12);
}
body.theme-dark .nav-tool-card h3 { color: var(--text); }
body.theme-dark .nav-tool-card p { color: var(--muted); }
body.theme-dark .nav-tool-card b { color: #72d7aa; }
body.theme-dark .nav-tool-card::after { background: rgba(24,165,111,.12); }
.check-line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid #e4efe8;
  border-radius: 12px;
  background: #fbfefd;
}
.check-line i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(24,165,111,.1);
}
.check-line b {
  color: var(--blue);
  font-size: 13px;
}
.check-line span {
  justify-self: end;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}
.check-line time {
  color: #344054;
  font-weight: 850;
}
body.theme-dark .check-line {
  border-color: var(--line);
  background: #0d1512;
}
body.theme-dark .check-line time {
  color: var(--text);
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(24,165,111,.25);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: .18s ease;
}
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
}
body.theme-dark {
  --bg: #0b1210;
  --card: #111b17;
  --text: #eef7f2;
  --muted: #9aa9a3;
  --line: #21312b;
  --soft-line: #1d2a25;
  --shadow: 0 14px 34px rgba(0, 0, 0, .28);
  background: #0b1210;
  color: var(--text);
}
body.theme-dark .topbar {
  background: rgba(11, 18, 16, .94);
  border-bottom-color: var(--line);
}
body.theme-dark .sidebar {
  display: none;
}
body.theme-dark .workspace,
body.theme-dark .hero-card {
  background: #0b1210;
}
body.theme-dark .topnav a,
body.theme-dark .nav-item,
body.theme-dark .hero-card p,
body.theme-dark .content-head p,
body.theme-dark .tool-desc,
body.theme-dark .tool-head p,
body.theme-dark .search-box,
body.theme-dark .filter-summary,
body.theme-dark .filter-panel strong {
  color: var(--muted);
}
body.theme-dark .hero-card h1,
body.theme-dark .content-head h2,
body.theme-dark .tool-head h3,
body.theme-dark .brand span {
  color: var(--text);
}
body.theme-dark .topnav a:hover,
body.theme-dark .topnav a.active,
body.theme-dark .nav-item:hover,
body.theme-dark .nav-item.active {
  background: rgba(24,165,111,.1);
  color: #72d7aa;
}
body.theme-dark .nav-item.active span { color: #72d7aa; }
body.theme-dark .filter-panel,
body.theme-dark .featured-head,
body.theme-dark .collection-stat,
body.theme-dark .tool-card,
body.theme-dark .search-box input,
body.theme-dark .tool-logo,
body.theme-dark .filter-summary a,
body.theme-dark .theme-toggle,
body.theme-dark .login-btn {
  background: var(--card);
  border-color: var(--line);
}
body.theme-dark .theme-toggle,
body.theme-dark .login-btn,
body.theme-dark .collection-stat b,
body.theme-dark .section-overline,
body.theme-dark .filter-summary a {
  color: #72d7aa;
}
body.theme-dark .theme-toggle span {
  background:
    radial-gradient(circle, currentColor 0 4px, transparent 4.5px),
    conic-gradient(from 0deg, transparent 0 12%, currentColor 12% 20%, transparent 20% 32%, currentColor 32% 40%, transparent 40% 52%, currentColor 52% 60%, transparent 60% 72%, currentColor 72% 80%, transparent 80%);
}
body.theme-dark .filter-panel button {
  color: var(--muted);
  border-color: #293932;
}
body.theme-dark .filter-panel button:hover,
body.theme-dark .filter-panel button.active {
  color: #72d7aa;
  border-color: #399e70;
  background: rgba(24,165,111,.08);
}
body.theme-dark .search-box input {
  color: var(--text);
}
body.theme-dark .tool-card:hover {
  border-color: #315344;
}
body.theme-dark .tool-head span {
  color: #72d7aa;
  background: rgba(24,165,111,.12);
}
body.theme-dark .tag-row em {
  color: #d8e5df;
}
body.theme-dark .tool-shot {
  border-color: var(--line);
  background: #0d1512;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shotLoading { to { transform: translateX(100%); } }
*:focus-visible { outline: 3px solid rgba(24,165,111,.22); outline-offset: 3px; }

@media (max-width: 1280px) {
  .tool-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nav-tool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-content-grid { grid-template-columns: 1fr; }
  .brand { min-width: 260px; }
  .brand i { display: none; }
}
@media (min-width: 1600px) {
  .tool-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .nav-tool-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  :root { --side: 0px; --top: 72px; }
  .topbar { padding: 0 16px; gap: 12px; }
  .brand { min-width: auto; }
  .brand span { font-size: 22px; }
  .topnav { display: none; }
  .sidebar { display: none; }
  .side-title { display: none; }
  .nav-item { flex: 0 0 auto; margin: 0; }
  .workspace { width: 100%; margin-left: 0; padding: 18px 12px 36px; }
  .hero-card { margin-top: 0; }
  .tool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .login-btn { display: none; }
  .hero-card { display: block; padding: 22px; }
  .hero-art { display: none; }
  .filter-panel strong { width: 100%; }
  .content-head { display: block; }
  .search-box { margin-top: 14px; width: 100%; }
  .tool-grid { grid-template-columns: 1fr; }
  .nav-tool-grid { grid-template-columns: 1fr; }
  .mini-tool-list { grid-template-columns: 1fr; }
}

body.theme-dark .breadcrumb a,
body.theme-dark .detail-section p,
body.theme-dark .detail-title-row p,
body.theme-dark .detail-facts dt,
body.theme-dark .workflow-list span,
body.theme-dark .related-tools em,
body.theme-dark .sticky-panel p,
body.theme-dark .detail-list li {
  color: var(--muted);
}
body.theme-dark .breadcrumb strong,
body.theme-dark .detail-title-row h1,
body.theme-dark .detail-section h2,
body.theme-dark .detail-facts h2,
body.theme-dark .detail-facts dd,
body.theme-dark .detail-list strong,
body.theme-dark .workflow-list b,
body.theme-dark .related-tools span,
body.theme-dark .faq-section summary,
body.theme-dark .sticky-panel h2 {
  color: var(--text);
}
body.theme-dark .detail-hero-main,
body.theme-dark .detail-facts,
body.theme-dark .detail-section,
body.theme-dark .sticky-panel,
body.theme-dark .detail-title-row img,
body.theme-dark .detail-site-shot,
body.theme-dark .detail-site-shot figcaption,
body.theme-dark .detail-kicker em,
body.theme-dark .secondary-action,
body.theme-dark .feature-grid article,
body.theme-dark .detail-list li,
body.theme-dark .workflow-list li,
body.theme-dark .related-tools a {
  background: var(--card);
  border-color: var(--line);
}
body.theme-dark .detail-tags span,
body.theme-dark .detail-kicker span {
  color: #72d7aa;
  border-color: #2a4439;
  background: rgba(24,165,111,.09);
}
body.theme-dark .detail-site-shot::before {
  border-color: var(--line);
  background:
    radial-gradient(circle at 18px 21px, #ff6b6b 0 5px, transparent 5.5px),
    radial-gradient(circle at 38px 21px, #f4c542 0 5px, transparent 5.5px),
    radial-gradient(circle at 58px 21px, #18a56f 0 5px, transparent 5.5px),
    linear-gradient(90deg, #17231d, #101a15);
}
body.theme-dark .detail-site-shot figcaption span {
  color: var(--text);
}
body.theme-dark .detail-site-shot figcaption em {
  color: var(--muted);
}
body.theme-dark .secondary-action,
body.theme-dark .sticky-panel li {
  color: var(--muted);
  background: rgba(255,255,255,.03);
}

@media (max-width: 1280px) {
  .detail-hero,
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .related-tools { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .detail-hero-main,
  .detail-facts,
  .detail-section,
  .sticky-panel {
    border-radius: 18px;
    padding: 20px;
  }
  .detail-title-row { display: block; }
  .detail-title-row img { margin-bottom: 16px; }
  .detail-title-row h1 { font-size: 38px; }
  .detail-title-row p { font-size: 16px; }
  .detail-actions a { width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
}


