@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap");

:root {
  --bg: #f5f8fc;
  --bg-soft: #edf4fb;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-solid: #ffffff;
  --panel-strong: #eef8ff;
  --card: #ffffff;
  --text: #10213a;
  --muted: #4d617f;
  --muted-strong: #334155;
  --accent: #0c7bdc;
  --accent-strong: #0c5db6;
  --accent-2: #14b86c;
  --line: rgba(16, 33, 58, 0.11);
  --line-strong: rgba(12, 123, 220, 0.2);
  --shadow: 0 18px 48px rgba(42, 77, 124, 0.12);
  --shadow-soft: 0 10px 28px rgba(42, 77, 124, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

button,
input {
  font: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% 10%, rgba(12, 123, 220, 0.12), transparent 26%),
    radial-gradient(circle at 86% 2%, rgba(20, 184, 108, 0.14), transparent 24%),
    linear-gradient(180deg, #fafdff 0%, #f5f8fc 45%, #edf4fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(12, 123, 220, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 123, 220, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 70%);
}

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

a:hover {
  color: var(--accent-strong);
}

img {
  max-width: 100%;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.logo,
.avatar,
.goal-icon {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(12, 123, 220, 0.14), rgba(20, 184, 108, 0.14));
  border: 1px solid rgba(12, 123, 220, 0.18);
  box-shadow: var(--shadow-soft);
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 15px;
}

.logo span {
  font-size: 14px;
  font-weight: 800;
}

.navlinks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
}

.nav-summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: #fff;
  cursor: pointer;
  user-select: none;
}

.nav-summary::-webkit-details-marker {
  display: none;
}

.nav-summary::after {
  content: "▾";
  font-size: 12px;
}

.nav-dropdown[open] .nav-summary::after {
  content: "▴";
}

.nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 220px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-soft);
}

.nav-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: min(420px, 100%);
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.nav-search input {
  min-width: 0;
  width: 240px;
  border: 0;
  background: transparent;
  padding: 8px 12px;
  font: inherit;
  color: var(--text);
}

.nav-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(12, 123, 220, 0.16), rgba(20, 184, 108, 0.14));
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button,
.small-link,
.inline-filter,
.clear-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 12px 16px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.button:hover,
.small-link:hover,
.inline-filter:hover,
.clear-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(42, 77, 124, 0.12);
}

.button[disabled],
.clear-button[disabled] {
  opacity: 0.58;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.button {
  background: var(--panel-solid);
}

.button.primary,
.small-link.primary {
  background: linear-gradient(135deg, rgba(12, 123, 220, 0.16), rgba(20, 184, 108, 0.14));
  border-color: var(--line-strong);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  padding: 74px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-strong);
}

.kicker {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(12, 123, 220, 0.08);
  border: 1px solid rgba(12, 123, 220, 0.15);
}

.hero h1,
.section-head h2,
.cta h2,
.detail-main h1 {
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  max-width: 12ch;
}

.hero-copy {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-card,
.feature-card,
.card,
.company-card,
.goal-card,
.guide-card,
.trust-card,
.detail-main,
.detail-side,
.filter-shell,
.cta {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.search-panel {
  margin-top: 30px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.search-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.search-grid input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  font: inherit;
  font-size: 16px;
}

.search-grid input::placeholder {
  color: #71839d;
}

.helper {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.inline-filter {
  background: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  padding: 10px 14px;
}

.inline-filter.active {
  border-color: var(--line-strong);
  background: linear-gradient(135deg, rgba(12, 123, 220, 0.12), rgba(20, 184, 108, 0.12));
  color: var(--text);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.metric {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.metric strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.mini-list li:last-child {
  border-bottom: none;
}

.section {
  padding: 34px 0;
}

.section-tight {
  padding-bottom: 12px;
}

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

.section-head h2 {
  margin: 6px 0 0;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
}

.section-head p {
  margin: 8px 0 0;
  max-width: 64ch;
  color: var(--muted);
}

.goal-grid,
.guide-grid,
.comparison-grid,
.featured-grid,
.company-grid,
.match-grid,
.card-grid,
.trust-grid {
  display: grid;
  gap: 16px;
}

.goal-grid,
.guide-grid,
.comparison-grid,
.company-grid,
.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.match-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  align-items: start;
}

.match-panel,
.match-results,
.match-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.match-panel,
.match-results {
  border-radius: 28px;
  padding: 26px;
}

.match-intro h3,
.match-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.match-intro p,
.match-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.match-status {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(12, 123, 220, 0.12);
  background: rgba(12, 123, 220, 0.08);
  color: var(--muted-strong);
  font-weight: 700;
}

.match-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.match-card {
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 255, 0.92));
}

.match-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.match-actions .clear-button {
  visibility: visible;
  background: rgba(255, 255, 255, 0.88);
}

.goal-card,
.company-card,
.guide-card {
  border-radius: 24px;
  padding: 20px;
  text-align: left;
}

.comparison-card {
  border-radius: 24px;
  padding: 20px;
  text-align: left;
}

.goal-card {
  display: flex;
  gap: 16px;
}

.goal-card:hover,
.guide-card:hover,
.comparison-card:hover,
.company-card:hover,
.company-card.active {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.goal-icon,
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  font-weight: 800;
  color: var(--accent-strong);
  flex: 0 0 auto;
}

.goal-copy strong,
.feature-card h3,
.card h3,
.company-card h3,
.trust-card h3,
.detail-side h3 {
  font-size: 1.08rem;
  font-weight: 800;
}

.goal-copy p,
.guide-card p,
.feature-card p,
.card p,
.company-card p,
.trust-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.goal-meta,
.guide-meta,
.company-foot,
.micro-note,
.count,
.toolbar {
  color: var(--muted);
  font-size: 14px;
}

.guide-card {
  display: block;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 255, 0.9));
}

.guide-card h3 {
  margin: 8px 0 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.comparison-card {
  display: block;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 252, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.comparison-card h3 {
  margin: 8px 0 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.feature-card,
.card,
.trust-card {
  border-radius: 24px;
  padding: 22px;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 255, 0.92));
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 390px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 252, 0.96));
}

.card-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.meta,
.pills,
.tagrow,
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip,
.pill,
.active-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(91, 184, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 800;
  color: #d7e7fb;
}

.company-logo {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(16, 33, 58, 0.16);
  background: #fff;
  object-fit: cover;
  flex: 0 0 auto;
}

.company-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

.company-link:hover {
  color: var(--accent-strong);
}

.company-link-lg {
  font-size: 1.12rem;
}

.company-chip {
  text-decoration: none;
  padding-left: 9px;
}

.chip-accent,
.tag {
  background: rgba(91, 184, 255, 0.14);
  border-color: rgba(91, 184, 255, 0.24);
  color: #edf4ff;
}

.chip-link {
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.chip-link:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: linear-gradient(135deg, rgba(12, 123, 220, 0.12), rgba(20, 184, 108, 0.12));
  box-shadow: 0 8px 18px rgba(42, 77, 124, 0.1);
  color: var(--text);
}

.tag {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}

.pill {
  cursor: pointer;
  font-size: 13px;
}

.pill.active,
.pill:hover {
  border-color: rgba(91, 184, 255, 0.34);
  background: linear-gradient(135deg, rgba(91, 184, 255, 0.24), rgba(255, 179, 92, 0.18));
  color: #ffffff;
}

.filter-shell {
  border-radius: 28px;
  padding: 26px;
}

.filter-group + .filter-group {
  margin-top: 18px;
}

.filter-label {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.directory-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.directory-topnote {
  max-width: 64ch;
  color: var(--muted);
}

.sort-control {
  display: inline-grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
}

.sort-control select {
  min-width: 220px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
}

.clear-button {
  visibility: hidden;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.85);
}

.active-filter {
  background: rgba(12, 123, 220, 0.08);
  border-color: rgba(12, 123, 220, 0.12);
}

.active-filter.neutral {
  background: rgba(255, 255, 255, 0.78);
}

.directory-summary {
  margin-bottom: 18px;
}

.directory-summary-card {
  border-radius: 28px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(12, 123, 220, 0.1), rgba(20, 184, 108, 0.1));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.directory-summary-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.directory-summary-head h3 {
  margin: 10px 0 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.directory-summary-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.directory-summary-copy,
.directory-alt {
  margin-top: 12px;
  color: var(--muted-strong);
}

.directory-alt a {
  font-weight: 800;
}

.tool-list {
  display: grid;
  gap: 14px;
}

.tool-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.tool-row-main {
  min-width: 0;
}

.tool-row h3 {
  margin: 10px 0 6px;
  font-size: 1.08rem;
  font-weight: 800;
}

.tool-row-summary {
  color: var(--muted);
}

.tool-row-details {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.tool-row-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  min-width: 170px;
}

.tool-row-actions .small-link {
  width: 100%;
}

.directory-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
}

.directory-actions .clear-button {
  visibility: visible;
}

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

.company-head h3,
.feature-card h3,
.card h3 {
  margin: 6px 0 0;
}

.company-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.company-actions {
  margin-top: 12px;
}

.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.small-link {
  background: white;
  padding: 10px 13px;
  font-size: 14px;
}

.empty {
  border: 1px dashed var(--line);
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
}

.cta {
  margin-top: 42px;
  border-radius: 30px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, rgba(12, 123, 220, 0.12), rgba(20, 184, 108, 0.12));
}

.cta h2 {
  margin: 6px 0 0;
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
}

.cta p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.prompt-lab-grid {
  align-items: start;
}

.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-card h2 {
  margin: 8px 0 0;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
}

.prompt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.prompt-output {
  margin-top: 18px;
  min-height: 320px;
  white-space: pre-wrap;
}

.prompt-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-card .small-link {
  background: rgba(12, 24, 39, 0.92);
  border-color: rgba(91, 184, 255, 0.22);
  color: #eef5ff;
  box-shadow: none;
}

.form-card .small-link:hover {
  color: #ffffff;
}

.prompt-actions .clear-button {
  visibility: visible;
}

.prompt-builder {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.prompt-builder .prompt-output {
  min-height: 260px;
  margin-top: 0;
}

.form-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.form-helper {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 14px;
  font-weight: 800;
  color: var(--muted-strong);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 16px;
  color: var(--text);
  resize: vertical;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.notice {
  margin-top: 14px;
  padding-left: 14px;
  border-left: 3px solid rgba(12, 123, 220, 0.38);
  color: var(--muted);
}

.mailto-status {
  min-height: 1.2em;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  padding: 34px 0 54px;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.breadcrumb {
  padding: 28px 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.backlink {
  font-weight: 800;
}

.detail-hero {
  padding: 18px 0 30px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.82fr);
  gap: 22px;
}

.detail-main,
.detail-side {
  border-radius: 28px;
  padding: 26px;
}

.detail-company-row {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  align-items: flex-start;
}

.detail-avatar {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  font-size: 1.2rem;
}

.detail-main h1 {
  margin: 6px 0 10px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.summary {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.detail-section + .detail-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.detail-section h2,
.detail-section h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
}

.detail-section p {
  margin: 0;
  color: var(--muted-strong);
}

.jump-stack {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.jump-label {
  margin: 0 0 8px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 800;
}

.company-jump-grid,
.company-goal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.company-goal-block {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.company-anchor {
  scroll-margin-top: 88px;
}

.prompt-box {
  background: rgba(12, 123, 220, 0.07);
  border: 1px solid rgba(12, 123, 220, 0.12);
  border-radius: 18px;
  padding: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #123f7b;
}

.video-card {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(91, 184, 255, 0.18);
  background: rgba(8, 17, 28, 0.82);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  color: inherit;
}

.video-thumb-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.video-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #ffffff;
  background: rgba(8, 17, 28, 0.72);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.video-card-copy {
  display: grid;
  gap: 6px;
}

.video-card-copy strong {
  color: #f4f8ff;
}

.video-card-copy span {
  color: #c9d8ea;
}

.related-list {
  display: grid;
  gap: 10px;
}

.guide-stack {
  display: grid;
  gap: 14px;
}

.guide-tool {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.detail-body .detail-main,
.detail-body .detail-side,
.detail-body .guide-tool,
.detail-body .compare-card,
.detail-body .related-item {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 240, 231, 0.98));
  border-color: rgba(56, 120, 191, 0.16);
  box-shadow: 0 18px 40px rgba(92, 79, 59, 0.1);
}

.detail-body .summary,
.detail-body .detail-section p,
.detail-body .guide-tool p,
.detail-body .jump-label,
.detail-body .breadcrumb,
.detail-body .micro-note,
.detail-body .related-copy {
  color: var(--muted);
}

.detail-body .detail-main h1,
.detail-body .detail-section h2,
.detail-body .detail-section h3,
.detail-body .guide-tool h3,
.detail-body .backlink,
.detail-body .related-item strong {
  color: var(--text);
}

.detail-body .tag,
.detail-body .chip,
.detail-body .company-chip {
  background: rgba(56, 120, 191, 0.08);
  border-color: rgba(56, 120, 191, 0.18);
  color: var(--muted-strong);
}

.detail-body .company-chip img {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

.detail-body .small-link {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(56, 120, 191, 0.18);
  color: var(--text);
}

.detail-body .small-link.primary {
  background: linear-gradient(135deg, rgba(56, 120, 191, 0.18), rgba(197, 149, 91, 0.18));
  border-color: rgba(56, 120, 191, 0.26);
  color: var(--text);
}

.guide-tool h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 800;
}

.guide-tool p + p {
  margin-top: 10px;
}

.compare-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.compare-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.compare-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 800;
}

.compare-card p + p {
  margin-top: 10px;
}

.related-item {
  display: block;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.related-copy {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.footer-email {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 800;
  color: var(--accent-strong);
}

.hero-simple {
  padding-bottom: 18px;
}

@media (max-width: 1080px) {
  .match-shell,
  .hero-grid,
  .detail-grid,
  .cta,
  .goal-grid,
  .guide-grid,
  .comparison-grid,
  .company-grid,
  .featured-grid,
  .card-grid,
  .trust-grid,
  .lead-grid,
  .compare-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .match-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav,
  .section-head,
  .toolbar,
  .directory-topbar,
  .company-foot,
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .goal-grid,
  .guide-grid,
  .comparison-grid,
  .company-grid,
  .match-grid,
  .featured-grid,
  .card-grid,
  .trust-grid,
  .lead-grid,
  .field-grid,
  .compare-board,
  .hero-metrics,
  .search-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 50px;
  }

  .goal-card,
  .detail-company-row {
    flex-direction: column;
  }

  .directory-summary-head {
    grid-template-columns: 1fr;
  }

  .sort-control,
  .sort-control select {
    width: 100%;
    min-width: 0;
  }

  .filter-shell,
  .hero-card,
  .card,
  .feature-card,
  .company-card,
  .guide-card,
  .comparison-card,
  .form-card,
  .trust-card,
  .detail-main,
  .detail-side {
    padding: 20px;
  }

  .nav-dropdown-menu {
    position: static;
    margin-top: 10px;
    min-width: 0;
    width: 100%;
  }

  .nav-search {
    width: 100%;
  }

  .nav-search input {
    width: 100%;
  }

  .container {
    width: min(var(--max), calc(100% - 22px));
  }
}

/* Pearl-white theme refresh */
:root {
  --bg: #faf6ef;
  --bg-soft: #f2ebe0;
  --panel: rgba(255, 252, 246, 0.92);
  --panel-solid: #fffdfa;
  --panel-strong: #f7f0e4;
  --card: #fffdfa;
  --text: #233247;
  --muted: #67758a;
  --muted-strong: #405066;
  --accent: #3878bf;
  --accent-strong: #245f9f;
  --accent-2: #c5955b;
  --line: rgba(35, 50, 71, 0.1);
  --line-strong: rgba(56, 120, 191, 0.22);
  --shadow: 0 18px 46px rgba(92, 79, 59, 0.12);
  --shadow-soft: 0 10px 28px rgba(92, 79, 59, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

body {
  background:
    radial-gradient(circle at 12% 18%, rgba(56, 120, 191, 0.08), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(197, 149, 91, 0.12), transparent 22%),
    linear-gradient(180deg, #fffdfa 0%, #faf6ef 55%, #f1e9de 100%);
}

body::before {
  display: block;
}

.topbar {
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 244, 0.84);
}

.logo,
.avatar,
.goal-icon {
  background: linear-gradient(145deg, rgba(56, 120, 191, 0.12), rgba(197, 149, 91, 0.16));
  border: 1px solid rgba(56, 120, 191, 0.16);
  box-shadow: var(--shadow-soft);
}

.nav-search,
.nav-summary,
.search-panel,
.hero-card,
.match-panel,
.match-results,
.filter-shell,
.cta,
.directory-summary-card,
.guide-card,
.comparison-card,
.goal-card,
.company-card,
.feature-card,
.card,
.trust-card,
.path-card,
.home-proof-item,
.decision-card,
.recommendation-card,
.step-card,
.logo-toolbar,
.logo-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.landing-page .nav-search {
  box-shadow: none;
  background: transparent;
  border-color: transparent;
  padding: 0;
}

.landing-page .nav-search,
.landing-page .nav-summary,
.landing-page .logo-toolbar,
.landing-page .logo-card,
.landing-page .featured-logo-card {
  background: rgba(255, 252, 246, 0.92);
  border-color: rgba(56, 120, 191, 0.16);
}

.landing-page .small-link {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(56, 120, 191, 0.2);
  color: var(--text);
  box-shadow: none;
}

.landing-page .small-link.primary {
  background: linear-gradient(135deg, rgba(56, 120, 191, 0.2), rgba(197, 149, 91, 0.2));
  border-color: rgba(56, 120, 191, 0.3);
  color: var(--text);
}

.landing-page .small-link:hover {
  color: var(--accent-strong);
}

.landing-page .pill,
.landing-page .chip,
.landing-page .active-filter {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(56, 120, 191, 0.14);
  color: var(--muted-strong);
}

.landing-page .pill.active,
.landing-page .pill:hover {
  background: linear-gradient(135deg, rgba(56, 120, 191, 0.16), rgba(197, 149, 91, 0.16));
  border-color: rgba(56, 120, 191, 0.24);
  color: var(--text);
}

.hero {
  padding: 56px 0 18px;
}

.hero h1 {
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
}

.centered-copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.centered-copy .hero-copy {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.landing-shell-simple {
  min-height: 36vh;
  align-items: center;
}

.logo-explorer-section {
  padding-top: 8px;
}

.logo-section-head {
  align-items: center;
}

.logo-toolbar {
  padding: 18px;
  border-radius: 24px;
}

.logo-search-row input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  font: inherit;
  font-size: 16px;
}

.landing-page .logo-search-row input,
.landing-page .nav-search input {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(56, 120, 191, 0.16);
  color: var(--text);
  box-shadow: none;
}

.landing-page .logo-search-row input::placeholder,
.landing-page .nav-search input::placeholder {
  color: #7f8ca0;
}

.filter-stack {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.featured-logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
  margin-bottom: 14px;
}

.featured-logo-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  padding: 16px 10px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.featured-logo-card:hover,
.featured-logo-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.featured-logo-orb {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(91, 184, 255, 0.16), rgba(255, 179, 92, 0.14));
  border: 1px solid rgba(91, 184, 255, 0.24);
}

.featured-logo-orb img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.featured-logo-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}

.featured-logo-row,
.logo-grid,
.logo-toolbar,
.landing-copy {
  position: relative;
  z-index: 1;
}

.featured-logo-row .logo-fallback {
  font-size: 12px;
}

.logo-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  padding: 18px 12px;
  border-radius: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.24s ease, opacity 0.24s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.logo-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.logo-card:hover,
.logo-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

.logo-orb {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(12, 123, 220, 0.12), rgba(20, 184, 108, 0.12));
  border: 1px solid rgba(12, 123, 220, 0.16);
  box-shadow: var(--shadow-soft);
}

.logo-orb img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-fallback {
  font-weight: 800;
  color: var(--accent-strong);
}

.logo-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.logo-meta {
  font-size: 12px;
  color: var(--muted);
}

.logo-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  width: min(240px, 78vw);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(16, 33, 58, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  color: #10213a;
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 3;
}

.logo-card:hover .logo-tooltip,
.logo-card:focus-visible .logo-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.landing-hero {
  position: relative;
  overflow: hidden;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle at var(--spot-x, 20%) var(--spot-y, 25%), rgba(12, 123, 220, 0.18), transparent 14%),
    radial-gradient(circle at 82% 14%, rgba(20, 184, 108, 0.16), transparent 18%);
  pointer-events: none;
}

.landing-copy,
.logo-toolbar,
.logo-grid {
  position: relative;
  z-index: 1;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.75);
  color: var(--muted-strong);
  font-weight: 700;
}


@keyframes top-app-glow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(91, 184, 255, 0), 0 18px 40px rgba(0, 0, 0, 0.18);
    border-color: rgba(91, 184, 255, 0.32);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 32px rgba(91, 184, 255, 0.55), 0 0 70px rgba(91, 184, 255, 0.22), 0 22px 44px rgba(0, 0, 0, 0.24);
    border-color: rgba(91, 184, 255, 0.72);
    transform: translateY(-2px);
  }
}

.is-top-app {
  animation: top-app-glow 2.8s ease-in-out infinite;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(245, 237, 227, 0.96));
}

.is-top-app .logo-orb,
.is-top-app .featured-logo-orb {
  box-shadow: 0 0 24px rgba(91, 184, 255, 0.28);
}

.logo-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  z-index: 2;
  pointer-events: none;
}

.logo-badge.trend {
  color: #b27427;
  background: rgba(255, 249, 239, 0.96);
  border: 1px solid rgba(197, 149, 91, 0.28);
  box-shadow: 0 8px 18px rgba(255, 166, 87, 0.18);
}

.is-trending .logo-orb,
.is-trending .featured-logo-orb {
  border-color: rgba(255, 179, 92, 0.45);
}

.is-trending .logo-name,
.is-trending .featured-logo-name {
  color: #8b5d1f;
}

#directory.search-panel,
#directory-filters .filter-shell,
#cards .directory-summary-card,
#cards .tool-row,
#cards .cta {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 240, 231, 0.98));
  border-color: rgba(56, 120, 191, 0.16);
  box-shadow: 0 18px 40px rgba(92, 79, 59, 0.1);
}

#directory .search-grid input,
#cards .sort-control select {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(56, 120, 191, 0.16);
  color: var(--text);
}

#directory .search-grid input::placeholder,
#cards .sort-control select,
#cards .sort-control,
#directory .helper,
#directory-filters .filter-label,
#cards .directory-topnote,
#cards .directory-summary-head p,
#cards .directory-summary-copy,
#cards .directory-alt,
#cards .tool-row-summary,
#cards .tool-row-details,
#cards .micro-note,
#cards .cta p,
#directory-filters .section-head p {
  color: var(--muted);
}

#cards .directory-summary-head h3,
#cards .tool-row h3,
#cards .cta h2,
#directory-filters .section-head h2,
#directory .hero-copy,
#directory .hero h1,
#cards .directory-alt a,
#cards .tool-row-details strong,
#cards .micro-note strong,
#cards .directory-summary-copy strong {
  color: var(--text);
}

#directory-filters .count,
#cards .count,
#directory-filters .filter-label,
#directory .helper,
#cards .directory-topnote,
#cards .sort-control span {
  color: var(--muted);
}

#cards .small-link,
#directory-filters .clear-button,
#cards .clear-button {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(56, 120, 191, 0.16);
  color: var(--text);
}

#cards .small-link.primary,
#directory .button.primary,
#cards .button.primary {
  background: linear-gradient(135deg, rgba(56, 120, 191, 0.18), rgba(197, 149, 91, 0.18));
  border-color: rgba(56, 120, 191, 0.24);
  color: var(--text);
}

#directory-filters .active-filter,
#directory-filters .active-filter.neutral,
#directory-filters .pill,
#directory-filters .chip,
#cards .chip,
#cards .tag,
#cards .chip-accent {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(56, 120, 191, 0.16);
  color: var(--muted-strong);
}

#directory-filters .pill.active,
#directory-filters .pill:hover,
#cards .chip-accent,
#cards .tag {
  background: linear-gradient(135deg, rgba(56, 120, 191, 0.16), rgba(197, 149, 91, 0.16));
  border-color: rgba(56, 120, 191, 0.24);
  color: var(--text);
}

@media (max-width: 900px) {
  .logo-grid {
    grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  }

  .landing-page .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .landing-page .nav-search {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .landing-page .nav-search input {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .logo-toolbar {
    padding: 14px;
  }

  .featured-logo-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .featured-logo-card {
    padding: 12px 6px;
  }

  .featured-logo-orb {
    width: 52px;
    height: 52px;
  }

  .featured-logo-orb img {
    width: 28px;
    height: 28px;
  }

  .featured-logo-name {
    font-size: 12px;
  }

  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .logo-card {
    padding: 14px 10px;
  }

  .logo-orb {
    width: 62px;
    height: 62px;
  }

  .logo-orb img {
    width: 34px;
    height: 34px;
  }
}


.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.stack-list {
  display: grid;
  gap: 14px;
}

.stack-item {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.stack-item p {
  margin: 6px 0 0;
}


.visit-counter {
  display: inline-flex;
  align-items: center;
}

.visit-counter img {
  display: block;
  height: 20px;
  border-radius: 999px;
}