:root {
  --bg: #f4f6f8;
  --bg-elevated: #eef2f5;
  --surface: #ffffff;
  --surface-soft: #f9fbfc;
  --surface-muted: #f3f6f8;
  --surface-accent: #f2fbfb;
  --text: #17202a;
  --text-soft: #5f6f81;
  --text-muted: #99a6b5;
  --line: #e8edf2;
  --line-strong: #dde5ec;
  --primary: #22d6d2;
  --primary-deep: #10b8b4;
  --primary-ink: #0d5258;
  --primary-soft: rgba(34, 214, 210, 0.12);
  --success: #1fb87f;
  --success-soft: rgba(31, 184, 127, 0.12);
  --warning-soft: rgba(255, 214, 107, 0.18);
  --danger-soft: rgba(255, 118, 118, 0.16);
  --shadow-xs: 0 2px 6px rgba(16, 24, 40, 0.04);
  --shadow-sm: 0 12px 28px rgba(17, 24, 39, 0.05);
  --shadow-md: 0 22px 48px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 34px 80px rgba(17, 24, 39, 0.14);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1380px;
  --control-height: 48px;
  --chip-height: 34px;
  --gradient: linear-gradient(135deg, #23d5d3 0%, #55e7d9 100%);
  --gradient-soft: linear-gradient(135deg, rgba(35, 213, 211, 0.12), rgba(85, 231, 217, 0.08));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.site-body {
  margin: 0;
  min-width: 320px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(35, 213, 211, 0.07), transparent 22%),
    linear-gradient(180deg, #fafbfc 0%, var(--bg) 100%);
}
body.filters-open,
body.modal-open,
html.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }
strong { color: var(--text); font-weight: 700; }

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

.site-main {
  padding: 24px 0 120px;
}
.site-page-stack,
.deal-page-shell {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(232, 237, 242, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-brand,
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.site-brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--primary-deep);
  border-radius: 14px;
  background: rgba(35, 213, 211, 0.12);
  box-shadow: inset 0 0 0 1px rgba(35, 213, 211, 0.06);
}
.site-brand__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.site-brand__name {
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.site-brand__sub {
  font-size: 10px;
  line-height: 1.3;
  color: var(--text-muted);
}
.site-nav {
  display: none;
  align-items: center;
  gap: 8px;
}
.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 500;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--text);
  background: var(--surface-muted);
}
.site-nav__link.is-active {
  box-shadow: inset 0 0 0 1px rgba(23, 32, 42, 0.04);
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-button,
.deal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--control-height);
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.site-button__icon,
.deal-chip__icon,
.deal-detail-box__icon,
.deal-stat-card__icon,
.site-mobile-dock__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.site-button-primary,
.deal-button-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 26px rgba(35, 213, 211, 0.22);
}
.site-button-primary:hover,
.deal-button-primary:hover,
.site-mobile-dock__call:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(35, 213, 211, 0.28);
}
.deal-button-secondary {
  color: var(--text-soft);
  background: var(--surface-soft);
  box-shadow: inset 0 0 0 1px var(--line);
}
.deal-button-secondary:hover,
.deal-button-secondary:focus-visible {
  color: var(--text);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line-strong), var(--shadow-xs);
}

.deal-hero-card,
.deal-toc-panel,
.deal-content-section,
.deal-filter-card,
.deal-results-shell,
.deal-detail-card,
.deal-detail-box,
.deal-sheet__body,
.deal-modal,
.deal-faq-item,
.site-panel,
.site-footer-panel {
  background: var(--surface);
  border: 0;
  box-shadow: var(--shadow-sm);
}
.deal-directory-shell,
.deal-detail-shell {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.deal-hero-card,
.deal-toc-panel,
.deal-content-section,
.site-panel,
.site-footer-panel {
  border-radius: var(--radius-lg);
  padding: 22px;
}
.deal-filter-card,
.deal-results-shell,
.deal-detail-card,
.deal-sheet__body,
.deal-modal {
  border-radius: 26px;
  padding: 22px;
}
.deal-detail-box,
.deal-faq-item {
  border-radius: 20px;
  padding: 18px;
}

.deal-eyebrow,
.deal-section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin: 0 0 12px;
  border-radius: 999px;
  background: var(--surface-accent);
  color: var(--primary-ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.deal-card-title,
.deal-section-title,
.deal-content-section__title,
.deal-content-section__subhead,
.deal-detail-box__title,
.deal-detail-card__title,
.site-panel h1,
.site-panel h2,
.site-panel h3 {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.03em;
}
.deal-card-title,
.site-panel h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}
.deal-section-title,
.deal-content-section__title,
.site-panel h1 {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.08;
  font-weight: 600;
}
.deal-content-section__subhead,
.site-panel h2 {
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 600;
}
.site-panel p,
.site-panel li,
.deal-prose-paragraph,
.deal-detail-paragraph,
.deal-company-card__body,
.deal-faq-item__body,
.deal-hero-card__lead,
.deal-hero-note__text {
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-soft);
}
.site-panel p,
.site-panel ul,
.site-panel ol,
.site-panel table,
.deal-prose-paragraph,
.deal-note-block,
.deal-callout-box,
.deal-faq-item__body { margin: 0; }
.site-panel p + p,
.site-panel p + ul,
.site-panel ul + p,
.site-panel h2 + p,
.site-panel h2 + ul,
.site-panel h1 + p,
.site-panel h3 + p,
.site-panel h3 + ul,
.deal-prose-paragraph + .deal-prose-paragraph,
.deal-content-section__title + .deal-prose-paragraph,
.deal-content-section__subhead + .deal-prose-paragraph,
.deal-content-section__subhead + .deal-prose-list {
  margin-top: 12px;
}
.site-panel h2,
.site-panel h3 { margin-top: 24px; }
.site-panel ul,
.site-panel ol {
  padding-left: 18px;
  color: var(--text-soft);
}
.site-panel li + li { margin-top: 8px; }
.site-panel code {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 10px;
  background: var(--surface-muted);
  color: var(--text);
  font-size: 12px;
}
.site-panel a,
.deal-detail-list-links a,
.site-footer-links__link {
  color: var(--primary-ink);
}
.site-panel a:hover,
.deal-detail-list-links a:hover,
.site-footer-links__link:hover {
  color: var(--primary-deep);
}
.site-panel table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
}
.site-panel th,
.site-panel td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.site-panel th {
  color: var(--text);
  font-weight: 600;
  background: var(--surface-soft);
}

.deal-hero-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(35, 213, 211, 0.10) 0%, rgba(255,255,255,0.96) 55%, rgba(255,255,255,1) 100%);
}
.deal-hero-card::before,
.deal-hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.deal-hero-card::before {
  width: 260px;
  height: 260px;
  top: -120px;
  right: -80px;
  background: rgba(35, 213, 211, 0.10);
}
.deal-hero-card::after {
  width: 180px;
  height: 180px;
  bottom: -80px;
  left: -40px;
  background: rgba(255, 214, 107, 0.14);
}
.deal-hero-card__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.deal-hero-card__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.deal-hero-card__title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  line-height: 1.03;
  font-weight: 600;
  letter-spacing: -0.05em;
}
.deal-hero-card__lead {
  margin: 14px 0 0;
  max-width: 60ch;
}
.deal-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.deal-chip-row-hero { margin-top: 18px; }
.deal-chip,
.deal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: var(--chip-height);
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(232, 237, 242, 0.84);
}
.deal-chip-link {
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.deal-chip-link:hover,
.deal-chip-link:focus-visible {
  color: var(--text);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(35, 213, 211, 0.18), var(--shadow-xs);
}
.deal-badge-success {
  color: var(--success);
  background: var(--success-soft);
  box-shadow: none;
}
.deal-badge-primary {
  color: var(--primary-ink);
  background: var(--primary-soft);
  box-shadow: none;
}
.deal-badge-neutral {
  color: var(--text-soft);
  background: var(--surface-muted);
  box-shadow: none;
}
.deal-hero-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  min-height: 100%;
  padding: 20px;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(232, 237, 242, 0.92);
}
.deal-hero-note__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.deal-hero-note__text { margin: 0; }

.deal-directory-shell__header,
.deal-filter-card__header,
.site-footer__bottom,
.deal-sheet__header,
.deal-company-card__head,
.deal-company-card__footer,
.deal-detail-actions,
.deal-modal-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.deal-directory-shell__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.deal-filter-card {
  position: sticky;
  top: 96px;
  height: fit-content;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}
.deal-results-shell {
  min-width: 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}
.deal-results-shell__meta,
.deal-meta-inline,
.deal-filter-card__footer,
.deal-note-inline,
.site-footer__copyright,
.logo-editor-item__sub,
.logo-editor-item__meta {
  font-size: 12px;
  color: var(--text-muted);
}
.deal-results-shell__meta,
.deal-filter-card__footer { margin-bottom: 0; }

.deal-filter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}
.deal-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.deal-label {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}
.deal-input,
.deal-select,
.deal-textarea {
  width: 100%;
  min-height: var(--control-height);
  padding: 0 14px;
  border-radius: 16px;
  border: 0;
  background: #fff;
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(232, 237, 242, 0.94);
  outline: none;
  transition: box-shadow 0.18s ease, background-color 0.18s ease;
}
.deal-textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
}
.deal-input::placeholder,
.deal-textarea::placeholder { color: var(--text-muted); }
.deal-input:focus,
.deal-select:focus,
.deal-textarea:focus {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(35, 213, 211, 0.22), 0 0 0 4px rgba(35, 213, 211, 0.10);
}
.deal-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 2px;
}

.deal-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.deal-company-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-xs), inset 0 0 0 1px rgba(232, 237, 242, 0.9);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.deal-company-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(35, 213, 211, 0.12);
}
.deal-company-card__accent {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 999px;
  background: var(--gradient);
}
.deal-company-card__brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}
.deal-company-card__identity { min-width: 0; }
.deal-company-card__logo,
.deal-detail-card__logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--surface-muted);
  object-fit: contain;
  padding: 8px;
}
.deal-detail-card__logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  padding: 10px;
}
.deal-company-card__name {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.deal-company-card__meta,
.deal-detail-card__subline {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.deal-score-block,
.deal-score-panel {
  min-width: 110px;
  padding: 12px;
  border-radius: 18px;
  background: var(--surface-soft);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(232, 237, 242, 0.92);
}
.deal-score-block__value,
.deal-score-panel__value {
  margin-top: 8px;
  font-size: clamp(2.2rem, 4vw, 2.7rem);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.06em;
  color: var(--text);
}
.deal-score-block__label,
.deal-score-panel__label {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.deal-company-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.deal-company-card__body p,
.deal-faq-item__body,
.deal-detail-paragraph,
.deal-prose-paragraph { margin: 0; }

.deal-detail-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.deal-detail-card__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.deal-detail-card__brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}
.deal-chip-row-detail { gap: 10px; }
.deal-detail-stats,
.deal-detail-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.deal-stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-soft);
}
.deal-stat-card__icon,
.deal-detail-box__icon { color: var(--primary-deep); }
.deal-stat-card__label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.deal-stat-card__value {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.deal-detail-box {
  background: var(--surface-soft);
  box-shadow: none;
}
.deal-detail-box__title,
.deal-faq-item__summary {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}
.deal-detail-list,
.deal-detail-list-links,
.deal-prose-list,
.site-footer-links,
.site-contact-list,
.deal-faq-list,
.deal-toc-panel__links {
  margin: 0;
  padding: 0;
}
.deal-prose-list,
.deal-detail-list,
.deal-detail-list-links,
.site-footer-links,
.site-contact-list {
  list-style: none;
}
.deal-prose-list,
.deal-detail-list,
.deal-detail-list-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.deal-prose-list li,
.deal-detail-list li,
.deal-detail-list-links li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}
.deal-prose-list li::before,
.deal-detail-list li::before,
.deal-detail-list-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}
.deal-note-block,
.deal-callout-box {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--text-soft);
}
.deal-faq-item {
  background: var(--surface-soft);
  box-shadow: none;
}
.deal-faq-item__summary {
  list-style: none;
  cursor: pointer;
}
.deal-faq-item__summary::-webkit-details-marker { display: none; }
.deal-faq-item__body { margin-top: 12px; }

.deal-sheet-backdrop,
.deal-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 96;
  background: rgba(17, 24, 39, 0.36);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.deal-sheet {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 97;
}
.deal-sheet__header { margin-bottom: 12px; }
.deal-modal {
  position: relative;
  width: min(980px, calc(100vw - 28px));
  max-height: min(90vh, 980px);
  margin: 4vh auto;
  overflow: auto;
  border-radius: 28px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.20);
}
.deal-modal__close {
  position: sticky;
  top: 16px;
  left: calc(100% - 56px);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: var(--text-soft);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08), inset 0 0 0 1px rgba(232, 237, 242, 0.92);
  font-size: 24px;
  line-height: 1;
}
.deal-modal__close:hover {
  color: var(--text);
  background: #fff;
}
.deal-modal__body,
.deal-sheet__body { background: var(--surface); }
.deal-modal__body {
  padding: 8px 14px 18px;
}
.deal-modal-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.deal-modal-card__actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  padding: 14px 0 4px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.96) 36%, rgba(255,255,255,0.98) 100%);
}

.site-footer {
  border-top: 0;
  background: transparent;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 8px 0 16px;
}
.site-footer-panel__title {
  margin: 18px 0 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.site-footer-panel__text { margin: 0; }
.site-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer-links__link {
  font-size: 13px;
  font-weight: 500;
}
.site-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-contact-list__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
}
.site-contact-list__icon {
  width: 18px;
  height: 18px;
  color: var(--primary-deep);
  flex: 0 0 auto;
}
.site-footer__bottom {
  padding: 8px 0 20px;
  border-top: 1px solid var(--line);
  flex-direction: column;
  align-items: flex-start;
}
.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-mobile-dock {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 72;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.site-mobile-dock__item,
.site-mobile-dock__call {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 58px;
  padding: 8px 6px;
  border-radius: 16px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-soft);
}
.site-mobile-dock__item.is-active {
  color: var(--text);
  background: var(--surface-soft);
}
.site-mobile-dock__call {
  color: #fff;
  background: var(--gradient);
}
.site-mobile-dock__icon svg,
.site-button__icon svg,
.deal-chip__icon svg,
.deal-detail-box__icon svg,
.deal-stat-card__icon svg,
.site-brand__mark svg {
  width: 100%;
  height: 100%;
}

.logo-editor-banner {
  font-weight: 600;
}
.logo-editor-banner-success {
  background: rgba(31, 184, 127, 0.08);
  color: var(--success);
}
.logo-editor-banner-error {
  background: rgba(255, 118, 118, 0.10);
  color: #d25555;
}
.logo-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 18px;
}
.logo-editor-grid-head {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.logo-editor-grid__heading,
.logo-editor-item__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.logo-editor-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.logo-editor-item {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.logo-editor-item:first-child {
  border-top: 0;
  padding-top: 0;
}
.logo-editor-item__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.logo-editor-preview,
.logo-editor-form,
.logo-editor-remove-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.logo-editor-form { align-items: flex-end; }
.logo-editor-form__field { min-width: 220px; flex: 1 1 220px; }
.logo-editor-form__field-grow { min-width: 280px; flex: 1 1 320px; }
.logo-editor-file { padding-top: 10px; }

@media (min-width: 768px) {
  .site-container { width: min(calc(100% - 40px), var(--container)); }
  .site-footer__grid { grid-template-columns: 1.15fr 0.8fr 1fr; }
  .deal-hero-card__grid { grid-template-columns: minmax(0, 1.25fr) 320px; gap: 22px; }
  .deal-directory-shell__body { grid-template-columns: 280px minmax(0, 1fr); }
  .deal-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .deal-detail-card__hero { grid-template-columns: minmax(0, 1fr) 180px; }
  .deal-detail-stats,
  .deal-detail-sections { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .deal-sheet {
    left: auto;
    right: 20px;
    width: min(420px, calc(100vw - 40px));
    bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .site-container { width: min(calc(100% - 56px), var(--container)); }
  .site-nav { display: flex; }
  .site-mobile-dock { display: none; }
  .deal-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .site-main { padding-top: 18px; }
  .site-header__inner { min-height: 72px; }
  .site-brand__sub { display: none; }
  .site-header__actions .site-button-primary { min-width: auto; padding-inline: 14px; }
  .deal-hero-card,
  .deal-toc-panel,
  .deal-content-section,
  .site-panel,
  .site-footer-panel,
  .deal-filter-card,
  .deal-results-shell,
  .deal-detail-card,
  .deal-sheet__body,
  .deal-modal,
  .deal-detail-box,
  .deal-faq-item {
    border-radius: 20px;
    padding: 18px;
  }
  .deal-hero-card__title { max-width: none; }
  .deal-directory-shell__header,
  .deal-filter-card__header,
  .deal-company-card__head,
  .deal-company-card__footer,
  .deal-detail-actions,
  .deal-modal-card__actions,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .deal-filter-card {
    position: static;
    top: auto;
  }
  .deal-score-block,
  .deal-score-panel { min-width: 0; }
  .deal-detail-stats,
  .deal-detail-sections,
  .logo-editor-grid,
  .logo-editor-item { grid-template-columns: 1fr; }
  .deal-modal {
    width: min(100vw - 12px, 980px);
    max-height: calc(100vh - 12px);
    margin: 6px auto;
    border-radius: 24px;
  }
  .deal-modal__body {
    padding: 6px 10px 14px;
  }
}


.deal-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.deal-hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}
.deal-hero-proof__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
}
.deal-hero-proof__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(35, 213, 211, 0.12);
  color: var(--primary-ink);
  font-size: 12px;
  font-weight: 600;
}
.deal-hero-note__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.deal-hero-note__caption {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}
.deal-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.deal-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--surface-soft);
  box-shadow: inset 0 0 0 1px rgba(232, 237, 242, 0.92);
}
.deal-hero-stat__label {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.deal-hero-stat__value {
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 600;
}
.deal-hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}
.deal-hero-checklist__title {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}
.deal-hero-checklist__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.deal-hero-checklist__list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 13px;
}
.deal-hero-checklist__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}
@media (min-width: 768px) {
  .deal-hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .deal-hero-stats {
    grid-template-columns: 1fr;
  }
}


/* v34 content section optimization */
.deal-section-header {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.deal-feature-grid,
.deal-step-stack,
.deal-glossary-grid {
  display: grid;
  gap: 14px;
}

.deal-feature-card,
.deal-step-card,
.deal-info-panel,
.deal-glossary-card {
  background: var(--surface-soft);
  border-radius: 20px;
  padding: 18px;
  box-shadow: inset 0 0 0 1px rgba(23, 32, 42, 0.03);
}

.deal-feature-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
}

.deal-feature-card__icon,
.deal-step-card__number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--surface-accent);
  color: var(--primary-ink);
  font-size: 13px;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(34, 214, 210, 0.12);
}

.deal-feature-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.deal-feature-card__title,
.deal-glossary-card__term {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.deal-feature-card__text,
.deal-glossary-card__text {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
}

.deal-step-stack {
  gap: 16px;
}

.deal-step-card {
  display: grid;
  gap: 14px;
}

.deal-step-card__top {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.deal-step-card .deal-content-section__subhead,
.deal-info-panel .deal-content-section__subhead {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.deal-info-panel {
  display: grid;
  gap: 14px;
}

.deal-info-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.deal-prose-list--grid {
  display: grid;
  gap: 12px;
}

.deal-glossary-grid {
  grid-template-columns: 1fr;
}

.deal-glossary-card {
  min-height: 100%;
}

.deal-note-block,
.deal-callout-box {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .deal-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deal-glossary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deal-prose-list--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .deal-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  .deal-feature-card,
  .deal-step-card,
  .deal-info-panel,
  .deal-glossary-card {
    border-radius: 18px;
    padding: 16px;
  }

  .deal-feature-card,
  .deal-step-card__top {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .deal-feature-card__icon,
  .deal-step-card__number {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .deal-step-card .deal-content-section__subhead,
  .deal-info-panel .deal-content-section__subhead {
    font-size: 18px;
  }
}


.deal-directory-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.deal-directory-shell__header {
  align-items: flex-end;
}
.deal-directory-shell__titleblock {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.deal-directory-shell__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
.deal-filter-card,
.deal-results-shell {
  background: rgba(255,255,255,0.92);
}
.deal-filter-card {
  position: static;
  width: 100%;
  gap: 16px;
}
.deal-filter-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.deal-filter-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.deal-filter-card__footer {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.deal-results-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.deal-results-shell__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 6px;
}
.deal-results-shell__meta {
  font-size: 13px;
  color: var(--text-soft);
}
.deal-results-shell__hint {
  font-size: 12px;
  color: var(--text-muted);
}
.deal-card-grid {
  gap: 20px;
}
.deal-company-card {
  padding: 18px;
  min-height: 100%;
  box-shadow: 0 10px 24px rgba(17,24,39,0.05);
}
.deal-company-card::before {
  height: 72px;
}
.deal-company-card__head {
  gap: 12px;
  padding-bottom: 4px;
}
.deal-company-card__brand {
  align-items: flex-start;
}
.deal-company-card__logo {
  width: 42px;
  height: 42px;
  padding: 7px;
  border-radius: 12px;
  background: var(--surface-soft);
}
.deal-company-card__name {
  font-size: 1rem;
  line-height: 1.15;
}
.deal-company-card__meta {
  font-size: 12px;
  line-height: 1.55;
}
.deal-chip-row-card {
  gap: 8px;
}
.deal-chip-row-card .deal-chip {
  min-height: 30px;
  padding: 0 11px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-soft);
}
.deal-score-block {
  min-width: 92px;
  padding: 10px 10px 9px;
  border-radius: 18px;
  background: var(--surface-soft);
  box-shadow: inset 0 0 0 1px var(--line);
}
.deal-score-block__value {
  font-size: 2rem;
  letter-spacing: -0.05em;
}
.deal-score-block__label {
  font-size: 10px;
}
.deal-company-card__body {
  display: grid;
  gap: 12px;
}
.deal-company-card__info {
  display: grid;
  gap: 4px;
}
.deal-company-card__label {
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.deal-company-card__info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
}
.deal-company-card__footer {
  margin-top: auto;
  padding-top: 4px;
}
.deal-company-card__footer .deal-button-primary {
  min-width: 132px;
}
.deal-note-inline {
  font-size: 11px;
  white-space: nowrap;
}
.deal-filter-form {
  display: grid;
  grid-template-columns: minmax(220px, 1.45fr) repeat(3, minmax(150px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  margin-top: 16px;
}
.deal-label {
  font-size: 12px;
}
.deal-input,
.deal-select {
  min-height: 44px;
  border-radius: 14px;
  font-size: 14px;
}
.deal-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 0;
  align-self: end;
}
.deal-action-row .deal-button {
  min-height: 42px;
}
@media (max-width: 1199px) {
  .deal-filter-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .deal-action-row {
    grid-column: 1 / -1;
  }
}
@media (min-width: 1024px) {
  .deal-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .deal-directory-shell__header,
  .deal-results-shell__toolbar,
  .deal-filter-card__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .deal-filter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .deal-company-card__footer {
    align-items: flex-start;
  }
  .deal-company-card__footer .deal-button-primary {
    width: 100%;
  }
  .deal-note-inline {
    white-space: normal;
  }
}


.deal-detail-card__title {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1.04;
}
.deal-score-panel {
  min-width: 0;
  padding: 14px 14px 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
  box-shadow: inset 0 0 0 1px rgba(232, 237, 242, 0.96);
}
.deal-detail-actions,
.deal-modal-card__actions {
  justify-content: flex-start;
}
.deal-modal-card__actions .deal-button-primary {
  min-width: 188px;
}
@media (max-width: 767px) {
  .deal-modal-card__actions {
    padding-top: 10px;
  }
  .deal-modal-card__actions .deal-button,
  .deal-detail-actions .deal-button {
    width: 100%;
  }
}

/* v37 modal detail sync */
.deal-modal {
  width: min(1040px, calc(100vw - 32px));
  max-height: min(90vh, 960px);
  margin: 4vh auto;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98) 0%, rgba(244, 248, 252, 0.98) 100%);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.22);
}

.deal-modal__body {
  padding: 20px;
}

.deal-modal__close {
  top: 18px;
  left: calc(100% - 58px);
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10), inset 0 0 0 1px rgba(226, 232, 240, 0.96);
}

.deal-modal-card {
  gap: 20px;
}

.deal-modal-card__surface {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,0.86);
  box-shadow: inset 0 0 0 1px rgba(232, 237, 242, 0.9);
}

.deal-modal-card__surface::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, #61d9d3 0%, #73e0d5 100%);
}

.deal-detail-card {
  gap: 18px;
}

.deal-detail-card__hero {
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
}

.deal-detail-card__brand {
  gap: 16px;
}

.deal-detail-card__identity {
  min-width: 0;
}

.deal-detail-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(97, 217, 211, 0.10);
  color: #0f766e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deal-detail-card__title {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 1;
}

.deal-detail-card__subline {
  margin-top: 6px;
}

.deal-score-panel {
  align-self: start;
  min-width: 0;
  padding: 14px 12px 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
  box-shadow: inset 0 0 0 1px rgba(232, 237, 242, 0.96);
}

.deal-detail-stats,
.deal-detail-sections {
  gap: 16px;
}

.deal-detail-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.deal-stat-card,
.deal-detail-box {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(248,251,252,0.92) 100%);
  box-shadow: inset 0 0 0 1px rgba(232, 237, 242, 0.9);
}

.deal-stat-card {
  min-height: 98px;
  align-items: flex-start;
  padding: 18px;
}

.deal-stat-card__icon,
.deal-detail-box__icon {
  color: #38b2ac;
}

.deal-stat-card__label {
  font-size: 11px;
  font-weight: 700;
}

.deal-stat-card__value {
  font-size: 1.05rem;
  font-weight: 700;
}

.deal-detail-box {
  padding: 20px;
}

.deal-detail-box__title {
  margin-bottom: 14px;
  font-size: 1.05rem;
  font-weight: 700;
}

.deal-detail-list,
.deal-detail-list-links {
  gap: 10px;
}

.deal-detail-list li,
.deal-detail-list-links li {
  font-size: 15px;
  line-height: 1.65;
}

.deal-detail-box-highlight .deal-detail-box__title,
.deal-detail-box-watchout .deal-detail-box__title {
  color: var(--text);
}

.deal-modal-card__actions {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 4px 4px;
  background: linear-gradient(180deg, rgba(244, 248, 252, 0) 0%, rgba(244, 248, 252, 0.96) 34%, rgba(244, 248, 252, 0.98) 100%);
}

.deal-modal-card__actions .deal-button-primary {
  min-width: 210px;
}

@media (max-width: 767px) {
  .deal-modal {
    width: min(100vw - 12px, 1040px);
    max-height: calc(100vh - 12px);
    margin: 6px auto;
    border-radius: 24px;
  }

  .deal-modal__body {
    padding: 14px;
  }

  .deal-modal-card__surface {
    padding: 16px;
    border-radius: 22px;
  }

  .deal-detail-card__hero,
  .deal-detail-stats,
  .deal-detail-sections {
    grid-template-columns: 1fr;
  }

  .deal-modal-card__actions {
    align-items: stretch;
    flex-direction: column;
    padding-top: 12px;
  }

  .deal-modal-card__actions .deal-button-primary {
    width: 100%;
    min-width: 0;
  }
}

/* v42 modal detail refinement: fuller width + balanced 2x2 stat grid */
.deal-modal {
  width: min(1120px, calc(100vw - 24px));
  padding: 12px;
}

.deal-modal__body {
  padding: 0;
}

.deal-modal-card {
  gap: 14px;
}

.deal-modal-card__surface {
  border-radius: 22px;
}

.deal-modal-card__actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 2px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, rgba(246, 249, 251, 0) 0%, rgba(246, 249, 251, 0.92) 32%, rgba(246, 249, 251, 0.98) 100%);
}

.deal-modal-card__actions .deal-button {
  flex: 1 1 auto;
}

.deal-modal-card__actions .deal-note-inline {
  flex: 0 0 auto;
}

.deal-modal .deal-detail-card {
  gap: 16px;
  padding: 10px 10px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.deal-modal .deal-detail-card__hero {
  gap: 14px;
}

.deal-modal .deal-detail-card__brand {
  gap: 12px;
}

.deal-modal .deal-detail-card__title {
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  line-height: 1.04;
}

.deal-modal .deal-detail-card__subline {
  font-size: 13px;
  line-height: 1.55;
}

.deal-modal .deal-score-panel {
  min-width: 0;
  max-width: none;
  padding: 14px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.deal-modal .deal-score-panel__value {
  font-size: clamp(2.35rem, 4vw, 3rem);
}

.deal-modal .deal-detail-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.deal-modal .deal-stat-card {
  min-height: 88px;
  align-items: flex-start;
  padding: 14px 14px 12px;
  border-radius: 18px;
}

.deal-modal .deal-stat-card__icon {
  margin-top: 2px;
}

.deal-modal .deal-stat-card__value {
  font-size: 15px;
  line-height: 1.35;
}

.deal-modal .deal-detail-sections {
  gap: 12px;
}

.deal-modal .deal-detail-box {
  min-height: 100%;
  padding: 16px 16px 15px;
  border-radius: 18px;
}

.deal-modal .deal-detail-list {
  gap: 10px;
}

.deal-modal .deal-detail-list li,
.deal-modal .deal-detail-list-links li {
  font-size: 13px;
  line-height: 1.62;
}

.deal-modal .deal-detail-list li::before,
.deal-modal .deal-detail-list-links li::before {
  top: 0.7em;
}

@media (min-width: 768px) {
  .deal-modal {
    width: min(1160px, calc(100vw - 40px));
    padding: 14px;
  }

  .deal-modal .deal-detail-card {
    padding: 12px 12px 0;
  }

  .deal-modal .deal-detail-card__hero {
    grid-template-columns: minmax(0, 1fr) 210px;
    align-items: start;
  }

  .deal-modal .deal-detail-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .deal-modal {
    width: min(100vw - 8px, 980px);
    max-height: calc(100vh - 8px);
    margin: 4px auto;
    padding: 8px;
    border-radius: 22px;
  }

  .deal-modal__close {
    top: 10px;
    right: 10px;
  }

  .deal-modal .deal-detail-card {
    padding: 8px 6px 0;
    gap: 14px;
  }

  .deal-modal .deal-detail-card__hero {
    gap: 12px;
  }

  .deal-modal .deal-score-panel {
    padding: 12px 14px;
  }

  .deal-modal .deal-detail-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .deal-modal .deal-stat-card {
    min-height: 80px;
    padding: 12px;
    gap: 10px;
  }

  .deal-modal .deal-stat-card__label {
    font-size: 9px;
  }

  .deal-modal .deal-stat-card__value {
    font-size: 14px;
  }

  .deal-modal .deal-detail-sections {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .deal-modal-card__actions {
    padding: 10px 6px 2px;
    gap: 8px;
  }

  .deal-modal-card__actions .deal-button {
    width: 100%;
  }

  .deal-modal-card__actions .deal-note-inline {
    width: 100%;
    text-align: center;
  }
}

/* v43 mobile filter card collapse */
.deal-filter-card__toggle {
  display: none;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line-strong);
  font-size: 13px;
  font-weight: 600;
}
.deal-filter-card__toggle,
.deal-filter-card__toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.deal-filter-card__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--primary-deep);
  font-size: 18px;
  line-height: 1;
}
.deal-filter-card__panel {
  display: block;
}
.deal-filter-card__toggle.is-open {
  background: var(--surface-accent);
  box-shadow: inset 0 0 0 1px rgba(76, 211, 208, 0.22);
}

@media (max-width: 767px) {
  .deal-filter-card__toggle {
    display: flex;
    margin-top: 14px;
  }

  .deal-filter-card__panel[hidden] {
    display: none !important;
  }

  .deal-filter-card__panel {
    margin-top: 14px;
  }

  .deal-directory-shell__header > .deal-button[data-open-filters] {
    display: none;
  }
}

/* v49 optimize pros/limitations section readability */
.deal-company-card {
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05), inset 0 0 0 1px rgba(231, 236, 242, 0.78);
}

.deal-company-card__accent {
  height: 2px;
  opacity: 0.95;
}

.deal-company-card__head {
  display: block;
}

.deal-company-card__brand {
  gap: 10px;
  align-items: flex-start;
}

.deal-company-card__logo {
  width: 34px;
  height: 34px;
  padding: 5px;
  border-radius: 10px;
  background: #f6f9fc;
}

.deal-company-card__name {
  font-size: 1rem;
  line-height: 1.16;
  font-weight: 700;
}

.deal-company-card__meta {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.45;
}

.deal-company-card__actions {
  display: grid;
  gap: 10px;
}

.deal-company-card__actions .deal-button {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border-radius: 14px;
  font-weight: 700;
}

.deal-company-card__actions .deal-button-primary {
  background: linear-gradient(135deg, #4169f0 0%, #3158e1 100%);
  box-shadow: 0 14px 24px rgba(65, 105, 240, 0.22);
}

.deal-company-card__actions .deal-button-secondary {
  background: #f8fafc;
  color: var(--text);
  box-shadow: none;
}

.deal-company-card__rating {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f7fafc 100%);
  box-shadow: none;
}

.deal-company-card__rating-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.deal-company-card__rating-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.deal-company-card__rating-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: #edf2f6;
  color: var(--text);
  box-shadow: none;
  font-size: 13px;
  font-weight: 600;
}

.deal-company-card__rating-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, #4169f0 0%, #3158e1 100%);
  box-shadow: 0 10px 18px rgba(65, 105, 240, 0.18);
}

.deal-company-card__rating-panel {
  display: grid;
  gap: 14px;
}

.deal-company-card__rating-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
}

.deal-company-card__section-block {
  display: grid;
  gap: 9px;
  padding-top: 12px;
  border-top: 1px solid rgba(224, 231, 238, 0.75);
}

.deal-company-card__section-block:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.deal-company-card__section-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
}

.deal-company-card__section-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #3158e1;
  flex: 0 0 auto;
}

.deal-company-card__section-muted .deal-company-card__section-title::before {
  background: #94a3b8;
}

.deal-company-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.deal-company-card__list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.58;
}

.deal-company-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1f2937;
}

.deal-company-card__section-muted .deal-company-card__list li {
  color: var(--text-soft);
}

.deal-company-card__section-muted .deal-company-card__list li::before {
  background: #94a3b8;
}

.deal-company-card__readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  width: fit-content;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.deal-company-card__readmore:hover {
  background: #f5f8fb;
}

.deal-company-card__rating-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

.deal-company-card__component-list {
  display: grid;
  gap: 10px;
}

.deal-company-card__component-row {
  display: grid;
  gap: 6px;
}

.deal-company-card__component-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-soft);
}

.deal-company-card__component-head strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.deal-company-card__component-bar {
  height: 4px;
  border-radius: 999px;
  background: #e9eef3;
  overflow: hidden;
}

.deal-company-card__component-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #69c89f 0%, #5bb99a 100%);
}

.deal-company-card__user-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 2px;
  font-size: 13px;
  color: var(--text-soft);
}

.deal-company-card__user-score-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.deal-company-card__stars {
  color: #f4c542;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
}

.deal-company-card__user-score-meta strong {
  font-size: 15px;
  color: var(--text);
}

.deal-company-card__sentiment {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}

.deal-company-card__sentiment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-soft);
}

.deal-company-card__sentiment-head strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.deal-company-card__sentiment-bar {
  display: flex;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: #e9eef3;
}

.deal-company-card__sentiment-bar span {
  display: block;
  height: 100%;
}

.deal-company-card__sentiment-bar .is-good {
  background: #85c87b;
}

.deal-company-card__sentiment-bar .is-neutral {
  background: #d9aa50;
}

.deal-company-card__sentiment-bar .is-poor {
  background: #cf6f6b;
}

.deal-company-card__sentiment-scale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .deal-company-card {
    padding: 16px;
  }

  .deal-company-card__rating {
    padding: 12px;
  }

  .deal-company-card__rating-tab {
    min-height: 36px;
    font-size: 12px;
  }

  .deal-company-card__actions .deal-button {
    min-height: 42px;
  }

  .deal-company-card__stars {
    font-size: 17px;
  }

  .deal-company-card__list li {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* v55 compare behaves like health.zip, quote closes on outside click */
.deal-company-card__actions .deal-button-secondary.is-active {
  background: rgba(65, 105, 240, 0.10);
  color: #3158e1;
}

.deal-compare-backdrop {
  display: none !important;
}

.deal-quote-backdrop {
  position: fixed;
  inset: 0;
  z-index: 92;
  background: rgba(15, 23, 42, 0.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.deal-compare-drawer {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(92vw, 1100px);
  z-index: 89;
  pointer-events: none;
}

.deal-compare-drawer__shell {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
  padding: 14px 14px 12px;
  pointer-events: auto;
}

.deal-compare-drawer__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--text);
  font-size: 20px;
  line-height: 1;
}

.deal-compare-drawer__titleline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 44px;
  margin-bottom: 10px;
}

.deal-compare-drawer__hint {
  font-size: 12px;
  color: var(--text-muted);
}

.deal-compare-drawer__body {
  overflow: auto;
  max-height: min(56vh, 520px);
}

.deal-compare-empty {
  padding: 22px 12px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.deal-compare-table-wrap {
  overflow: auto;
  border-radius: 16px;
}

.deal-compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
}

.deal-compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff;
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid rgba(226, 232, 240, 0.96);
}

.deal-compare-table tbody td {
  padding: 11px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
  border-bottom: 1px solid rgba(241, 245, 249, 0.96);
  vertical-align: top;
}

.deal-compare-table tbody td:first-child {
  width: 150px;
  color: var(--text-muted);
  font-weight: 600;
}

.deal-compare-table tbody tr.is-alt td {
  background: rgba(248, 250, 252, 0.5);
}

.deal-compare-brand {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.deal-compare-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: #eef2f6;
  color: var(--text);
  font-size: 18px;
  line-height: 1;
}

.deal-compare-cell__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.deal-compare-stars {
  color: #f4c542;
  letter-spacing: 1px;
}

.deal-compare-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.deal-compare-actions .deal-button {
  min-height: 38px;
  padding-inline: 12px;
  font-size: 12px;
}

.deal-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 93;
}

.deal-quote-modal__shell {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: start center;
  padding-top: 96px;
  padding-inline: 16px;
}

.deal-quote-modal__card {
  width: min(608px, calc(100vw - 32px));
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
  padding: 20px;
}

.deal-quote-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.deal-quote-modal__ghost {
  width: 38px;
  min-width: 38px;
  padding: 0;
  font-size: 22px;
}

.deal-quote-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.deal-quote-form__row {
  gap: 6px;
}

.deal-quote-form .deal-input,
.deal-quote-form .deal-select {
  min-height: 42px;
  border-radius: 12px;
}

.deal-quote-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.deal-quote-summary__label {
  font-size: 12px;
  color: var(--text-muted);
}

.deal-quote-summary__value {
  margin-top: 2px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
}

.deal-quote-summary__footnote {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .deal-compare-drawer {
    width: calc(100vw - 12px);
    bottom: 6px;
  }

  .deal-compare-drawer__shell {
    border-radius: 20px;
    padding: 12px 12px 10px;
  }

  .deal-compare-drawer__titleline {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .deal-compare-table {
    min-width: 660px;
  }

  .deal-quote-modal__shell {
    place-items: end center;
    padding: 8px;
  }

  .deal-quote-modal__card {
    width: 100%;
    border-radius: 20px;
    padding: 16px;
  }

  .deal-quote-form {
    grid-template-columns: 1fr;
  }

  .deal-quote-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .deal-quote-summary .deal-button {
    width: 100%;
  }
}

/* v56 mobile compare becomes stacked cards instead of broken table */
.deal-compare-mobile {
  display: grid;
  gap: 12px;
}

.deal-compare-mobile__card {
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.92);
  padding: 14px;
}

.deal-compare-mobile__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.deal-compare-mobile__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.deal-compare-mobile__item {
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.8);
}

.deal-compare-mobile__item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.deal-compare-mobile__item strong {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
}

@media (max-width: 767px) {
  .deal-compare-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .deal-compare-actions .deal-button {
    width: 100%;
  }
}

/* v57 fix mobile compare card header/remove layout */
.deal-compare-remove--mobile {
  flex: 0 0 auto;
  align-self: flex-start;
}

.deal-compare-mobile__titleblock {
  min-width: 0;
  flex: 1 1 auto;
}

.deal-compare-mobile__head .deal-compare-brand {
  margin-bottom: 6px;
  padding-right: 6px;
  word-break: break-word;
}

@media (max-width: 767px) {
  .deal-compare-mobile__head {
    align-items: flex-start;
  }

  .deal-compare-mobile__grid {
    grid-template-columns: 1fr 1fr;
  }

  .deal-compare-actions--mobile {
    gap: 8px;
  }

  .deal-compare-actions--mobile .deal-button {
    min-height: 42px;
    font-size: 13px;
  }
}

/* v58 make mobile compare remove a real labeled button */
.deal-compare-remove--button {
  width: auto;
  min-width: 0;
  height: 34px;
  padding: 0 10px;
  gap: 6px;
  background: #f1f5f9;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

.deal-compare-remove--button span:first-child {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 767px) {
  .deal-compare-remove--button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* v60 global unified premium review vibe */
:root {
  --surface-page: #f5f7fb;
  --surface-card: #ffffff;
  --surface-panel: #f8faff;
  --surface-soft-2: #f3f6fb;
  --line-soft: rgba(223, 230, 239, 0.95);
  --line-soft-2: rgba(232, 237, 244, 0.92);
  --brand-indigo: #4967f4;
  --brand-indigo-deep: #3555e8;
  --brand-mint: #67d4cf;
  --brand-mint-deep: #52c6c2;
  --brand-text: #1d2433;
  --brand-text-soft: #64748b;
}

body.site-body {
  background:
    radial-gradient(circle at top left, rgba(73, 103, 244, 0.06), transparent 24%),
    radial-gradient(circle at right top, rgba(103, 212, 207, 0.08), transparent 20%),
    linear-gradient(180deg, #f8faff 0%, var(--surface-page) 100%);
  color: var(--brand-text);
}

.site-header {
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(226, 232, 240, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.9);
}

.site-brand__mark {
  background: linear-gradient(135deg, rgba(73, 103, 244, 0.12), rgba(103, 212, 207, 0.16));
  color: var(--brand-indigo);
  border: 0;
  box-shadow: none;
}

.site-brand__name,
.deal-card-title,
.deal-section-title,
.deal-content-section__title,
.deal-detail-card__title,
.site-panel h1,
.site-panel h2,
.site-panel h3 {
  color: var(--brand-text);
}

.site-brand__sub,
.site-footer-panel__text,
.site-contact-list__item,
.site-footer__copyright,
.site-footer-links__link,
.deal-meta-inline,
.deal-results-shell__hint,
.deal-results-shell__meta,
.deal-filter-card__footer,
.deal-note-inline,
.deal-detail-card__subline,
.deal-company-card__meta,
.deal-hero-card__lead,
.deal-hero-note__text,
.site-panel p,
.site-panel li,
.deal-prose-paragraph,
.deal-detail-paragraph,
.deal-faq-item__body {
  color: var(--brand-text-soft);
}

.site-nav__link {
  color: #506078;
  font-weight: 600;
}
.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--brand-text);
  background: rgba(73, 103, 244, 0.08);
}

.site-button,
.deal-button {
  border-radius: 14px;
  font-weight: 700;
  box-shadow: none;
}

.site-button-primary,
.deal-button-primary {
  background: linear-gradient(135deg, var(--brand-indigo) 0%, var(--brand-indigo-deep) 100%);
  box-shadow: 0 16px 28px rgba(73, 103, 244, 0.22);
}

.site-button-primary:hover,
.deal-button-primary:hover {
  box-shadow: 0 18px 32px rgba(73, 103, 244, 0.24);
}

.deal-button-secondary,
.site-header__actions .site-button:not(.site-button-primary) {
  background: var(--surface-panel);
  border: 1px solid var(--line-soft);
  color: var(--brand-text);
  box-shadow: none;
}

.deal-page-shell,
.site-page-stack {
  gap: 20px;
}

.deal-directory-shell,
.deal-content-section,
.deal-toc-panel,
.site-panel,
.site-footer-panel,
.deal-results-shell,
.deal-filter-card,
.deal-hero-card,
.deal-modal__body,
.deal-sheet__body,
.deal-detail-card,
.deal-detail-box,
.deal-faq-item {
  border: 1px solid var(--line-soft-2);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,255,0.98) 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
}

.deal-directory-shell,
.deal-content-section,
.deal-toc-panel,
.site-panel,
.site-footer-panel,
.deal-hero-card {
  border-radius: 24px;
}

.deal-results-shell,
.deal-filter-card,
.deal-detail-card,
.deal-detail-box,
.deal-faq-item,
.deal-modal__body,
.deal-sheet__body {
  border-radius: 20px;
}

.deal-hero-card {
  background:
    radial-gradient(circle at left top, rgba(103, 212, 207, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: var(--brand-text);
}
.deal-hero-card::before,
.deal-hero-card::after {
  display: none;
}
.deal-hero-card__title {
  color: var(--brand-text);
  max-width: 9.5ch;
}
.deal-hero-card .deal-chip {
  background: #eef3f9;
  color: var(--brand-text-soft);
  border: 0;
}
.deal-hero-note {
  background: linear-gradient(180deg, rgba(73, 103, 244, 0.06), rgba(103, 212, 207, 0.08));
  border: 0;
  box-shadow: none;
}
.deal-hero-note__label {
  color: #74829a;
}
.deal-hero-note__text {
  color: var(--brand-text);
}

.deal-section-kicker,
.deal-eyebrow,
.deal-detail-card__eyebrow,
.deal-company-card__eyebrow {
  background: rgba(73, 103, 244, 0.08);
  color: var(--brand-indigo-deep);
  border-radius: 999px;
  font-weight: 700;
}

.deal-filter-card,
.deal-results-shell {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.deal-input,
.deal-select,
.deal-textarea {
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: none;
  border-radius: 14px;
  color: var(--brand-text);
}
.deal-input::placeholder {
  color: #98a5b8;
}
.deal-input:focus,
.deal-select:focus,
.deal-textarea:focus {
  border-color: rgba(73, 103, 244, 0.36);
  box-shadow: 0 0 0 4px rgba(73, 103, 244, 0.08);
}

.deal-chip,
.deal-badge {
  background: #f6f9fc;
  border: 1px solid var(--line-soft);
  color: var(--brand-text-soft);
  box-shadow: none;
}

.deal-badge-success {
  background: rgba(110, 210, 171, 0.16);
  color: #2f9a72;
  border: 0;
}

.deal-badge-primary {
  background: rgba(73, 103, 244, 0.10);
  color: var(--brand-indigo-deep);
  border: 0;
}

.deal-company-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid var(--line-soft);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.04);
}
.deal-company-card__accent {
  background: linear-gradient(90deg, var(--brand-mint) 0%, var(--brand-mint-deep) 100%);
}
.deal-company-card__rating,
.deal-compare-mobile__card,
.deal-compare-mobile__item {
  background: linear-gradient(180deg, #fbfcff 0%, #f7faff 100%);
}
.deal-company-card__rating-tab {
  background: #edf2f7;
  color: var(--brand-text);
}
.deal-company-card__rating-tab.is-active {
  background: linear-gradient(135deg, var(--brand-indigo) 0%, var(--brand-indigo-deep) 100%);
}
.deal-company-card__section-title,
.deal-company-card__rating-title,
.deal-detail-box__title,
.deal-faq-item__summary {
  color: var(--brand-text);
}
.deal-company-card__section-title::before {
  background: var(--brand-indigo);
}
.deal-company-card__section-muted .deal-company-card__section-title::before {
  background: #97a5b8;
}
.deal-company-card__readmore {
  background: #fff;
  border: 1px solid var(--line-soft);
}

.deal-detail-card,
.deal-modal__body,
.deal-sheet__body {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.deal-stat-card,
.deal-score-panel,
.deal-score-block {
  background: linear-gradient(180deg, #fbfcff 0%, #f3f7fd 100%);
  border: 1px solid var(--line-soft);
  box-shadow: none;
}
.deal-detail-box {
  background: linear-gradient(180deg, #fbfcff 0%, #f7faff 100%);
}
.deal-detail-list li::before,
.deal-detail-list-links li::before,
.deal-prose-list li::before {
  background: var(--brand-indigo);
}

.deal-content-section,
.site-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}
.deal-note-block,
.deal-callout-box {
  background: linear-gradient(180deg, rgba(73, 103, 244, 0.06), rgba(103, 212, 207, 0.08));
  border: 0;
}

.deal-faq-item {
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
}
.deal-faq-item__summary {
  font-weight: 700;
}

.site-footer__grid {
  gap: 16px;
}
.site-footer-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.site-mobile-dock {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--line-soft);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}
.site-mobile-dock__item.is-active,
.site-mobile-dock__call {
  background: linear-gradient(135deg, rgba(73, 103, 244, 0.12), rgba(103, 212, 207, 0.18));
  color: var(--brand-indigo-deep);
}
.site-mobile-dock__call {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-indigo) 0%, var(--brand-indigo-deep) 100%);
}

.deal-compare-drawer__shell,
.deal-quote-modal__card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--line-soft);
}
.deal-compare-drawer__close,
.deal-compare-remove,
.deal-quote-modal__ghost {
  background: #eff3f8;
  border: 0;
}
.deal-compare-table thead th {
  background: linear-gradient(180deg, #fbfcff 0%, #f4f8fd 100%);
}
.deal-compare-table tbody tr.is-alt td {
  background: rgba(248, 251, 255, 0.82);
}
.deal-quote-summary {
  background: linear-gradient(135deg, rgba(73, 103, 244, 0.06), rgba(103, 212, 207, 0.10));
  padding: 16px;
  border-radius: 18px;
}
.deal-quote-summary__value {
  color: var(--brand-text);
}

.logo-editor-grid-head,
.logo-editor-item {
  border-color: var(--line-soft);
}

@media (max-width: 767px) {
  .deal-directory-shell,
  .deal-content-section,
  .deal-toc-panel,
  .site-panel,
  .site-footer-panel,
  .deal-results-shell,
  .deal-filter-card,
  .deal-detail-card,
  .deal-detail-box,
  .deal-faq-item,
  .deal-hero-card {
    border-radius: 20px;
  }

  .deal-hero-card__title {
    max-width: none;
  }

  .deal-page-shell,
  .site-page-stack {
    gap: 16px;
  }
}

/* v61 stricter sitewide design system unification */
:root {
  --vibe-bg: #f5f7fc;
  --vibe-surface: #ffffff;
  --vibe-surface-soft: #f7f9fd;
  --vibe-surface-muted: #f1f5fb;
  --vibe-line: rgba(223, 231, 241, 0.92);
  --vibe-line-strong: rgba(204, 214, 228, 0.98);
  --vibe-text: #1f2737;
  --vibe-text-soft: #65748b;
  --vibe-indigo: #4967f4;
  --vibe-indigo-deep: #3555e8;
  --vibe-mint: #67d4cf;
  --vibe-mint-deep: #4cc8c2;
  --vibe-success: #5fbe8e;
  --vibe-shadow-card: 0 14px 36px rgba(15, 23, 42, 0.045);
  --vibe-shadow-panel: 0 18px 40px rgba(15, 23, 42, 0.055);
  --vibe-radius-xl: 24px;
  --vibe-radius-lg: 20px;
  --vibe-radius-md: 16px;
}

html, body {
  background: var(--vibe-bg);
}

body.site-body {
  color: var(--vibe-text);
  background:
    radial-gradient(circle at top left, rgba(73, 103, 244, 0.055), transparent 24%),
    radial-gradient(circle at top right, rgba(103, 212, 207, 0.075), transparent 20%),
    linear-gradient(180deg, #f9fbff 0%, var(--vibe-bg) 100%);
}

.site-container {
  width: min(calc(100% - 28px), 1320px);
}

.site-main {
  padding-top: 28px;
  padding-bottom: 112px;
}

.site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(225, 232, 240, 0.8);
  box-shadow: 0 1px 0 rgba(255,255,255,0.95);
}

.site-header__inner {
  min-height: 78px;
}

.site-brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(73, 103, 244, 0.12), rgba(103, 212, 207, 0.18));
  color: var(--vibe-indigo);
}

.site-brand__name,
.deal-card-title,
.deal-section-title,
.deal-content-section__title,
.deal-detail-card__title,
.deal-detail-box__title,
.deal-faq-item__summary,
.site-panel h1,
.site-panel h2,
.site-panel h3 {
  color: var(--vibe-text);
}

.site-brand__sub,
.site-footer-panel__text,
.site-contact-list__item,
.site-footer__bottom,
.site-footer-links__link,
.deal-meta-inline,
.deal-results-shell__hint,
.deal-results-shell__meta,
.deal-filter-card__footer,
.deal-note-inline,
.deal-detail-card__subline,
.deal-company-card__meta,
.deal-hero-card__lead,
.deal-hero-note__text,
.site-panel p,
.site-panel li,
.deal-prose-paragraph,
.deal-detail-paragraph,
.deal-faq-item__body,
.deal-company-card__rating-copy,
.deal-company-card__rating-note,
.deal-company-card__sentiment-head,
.deal-company-card__sentiment-scale {
  color: var(--vibe-text-soft);
}

.site-nav__link {
  min-height: 40px;
  padding-inline: 14px;
  border-radius: 12px;
  color: #516177;
  font-weight: 600;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--vibe-text);
  background: rgba(73, 103, 244, 0.08);
}

.site-button,
.deal-button {
  min-height: 44px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: none;
}

.site-button-primary,
.deal-button-primary {
  background: linear-gradient(135deg, var(--vibe-indigo) 0%, var(--vibe-indigo-deep) 100%);
  box-shadow: 0 16px 28px rgba(73, 103, 244, 0.22);
}

.site-button-primary:hover,
.deal-button-primary:hover {
  box-shadow: 0 18px 32px rgba(73, 103, 244, 0.25);
}

.deal-button-secondary,
.site-header__actions .site-button:not(.site-button-primary) {
  background: var(--vibe-surface-soft);
  border: 1px solid var(--vibe-line);
  color: var(--vibe-text);
  box-shadow: none;
}

.deal-page-shell,
.site-page-stack {
  gap: 18px;
}

.deal-directory-shell,
.deal-content-section,
.deal-toc-panel,
.site-panel,
.site-footer-panel,
.deal-hero-card,
.deal-results-shell,
.deal-filter-card,
.deal-detail-card,
.deal-detail-box,
.deal-faq-item,
.deal-modal__body,
.deal-sheet__body,
.deal-company-card,
.deal-compare-drawer__shell,
.deal-quote-modal__card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,255,0.98) 100%);
  border: 1px solid var(--vibe-line);
  box-shadow: var(--vibe-shadow-card);
}

.deal-directory-shell,
.deal-content-section,
.deal-toc-panel,
.site-panel,
.site-footer-panel,
.deal-hero-card {
  border-radius: var(--vibe-radius-xl);
}

.deal-results-shell,
.deal-filter-card,
.deal-detail-card,
.deal-detail-box,
.deal-faq-item,
.deal-modal__body,
.deal-sheet__body,
.deal-company-card,
.deal-compare-drawer__shell,
.deal-quote-modal__card {
  border-radius: var(--vibe-radius-lg);
}

.deal-company-card,
.deal-filter-card,
.deal-results-shell,
.deal-detail-card,
.deal-modal__body,
.deal-sheet__body,
.deal-content-section,
.deal-toc-panel,
.deal-directory-shell,
.site-panel,
.site-footer-panel {
  overflow: hidden;
}

.deal-hero-card {
  background:
    radial-gradient(circle at left top, rgba(103, 212, 207, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: var(--vibe-text);
}
.deal-hero-card::before,
.deal-hero-card::after {
  display: none;
}
.deal-hero-card__title {
  color: var(--vibe-text);
}
.deal-hero-card .deal-chip {
  background: var(--vibe-surface-muted);
  color: var(--vibe-text-soft);
  border: 0;
}
.deal-hero-note {
  background: linear-gradient(180deg, rgba(73, 103, 244, 0.05), rgba(103, 212, 207, 0.09));
  border: 0;
  box-shadow: none;
}
.deal-hero-note__label {
  color: #7d8ca2;
}
.deal-hero-note__text {
  color: var(--vibe-text);
}

.deal-section-kicker,
.deal-eyebrow,
.deal-detail-card__eyebrow,
.deal-company-card__eyebrow {
  background: rgba(73, 103, 244, 0.08);
  color: var(--vibe-indigo-deep);
  border-radius: 999px;
  font-weight: 700;
  border: 0;
}

.deal-filter-card,
.deal-results-shell,
.deal-content-section,
.site-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.deal-filter-card__toggle,
.deal-filter-card__count,
.deal-company-card__rating,
.deal-company-card__section,
.deal-company-card__section-muted,
.deal-compare-mobile__card,
.deal-compare-mobile__item,
.deal-detail-box,
.deal-stat-card,
.deal-score-panel,
.deal-score-block,
.deal-quote-summary {
  background: linear-gradient(180deg, #fbfcff 0%, #f4f8fd 100%);
  border: 1px solid var(--vibe-line);
  box-shadow: none;
}

.deal-filter-card__toggle {
  color: var(--vibe-text);
}
.deal-filter-card__toggle.is-open {
  background: linear-gradient(180deg, rgba(73, 103, 244, 0.08), rgba(103, 212, 207, 0.08));
}

.deal-input,
.deal-select,
.deal-textarea {
  background: #fff;
  border: 1px solid var(--vibe-line);
  box-shadow: none;
  border-radius: 14px;
  color: var(--vibe-text);
}
.deal-input::placeholder {
  color: #99a5b7;
}
.deal-input:focus,
.deal-select:focus,
.deal-textarea:focus {
  border-color: rgba(73, 103, 244, 0.38);
  box-shadow: 0 0 0 4px rgba(73, 103, 244, 0.08);
}

.deal-chip,
.deal-badge {
  background: #f7f9fc;
  border: 1px solid var(--vibe-line);
  color: var(--vibe-text-soft);
  box-shadow: none;
}

.deal-badge-success {
  background: rgba(95, 190, 142, 0.16);
  color: #389164;
  border: 0;
}

.deal-badge-primary {
  background: rgba(73, 103, 244, 0.10);
  color: var(--vibe-indigo-deep);
  border: 0;
}

.deal-company-card {
  padding: 18px;
  box-shadow: var(--vibe-shadow-panel);
}
.deal-company-card__accent {
  background: linear-gradient(90deg, var(--vibe-mint) 0%, var(--vibe-mint-deep) 100%);
}
.deal-company-card__rating {
  background: linear-gradient(180deg, #fbfcff 0%, #f6f9fe 100%);
}
.deal-company-card__rating-tab {
  background: #edf2f7;
  color: var(--vibe-text);
  border: 0;
}
.deal-company-card__rating-tab.is-active {
  background: linear-gradient(135deg, var(--vibe-indigo) 0%, var(--vibe-indigo-deep) 100%);
  color: #fff;
}
.deal-company-card__section-title,
.deal-company-card__rating-title {
  color: var(--vibe-text);
}
.deal-company-card__section-title::before {
  background: var(--vibe-indigo);
}
.deal-company-card__section-muted .deal-company-card__section-title::before {
  background: #97a5b8;
}
.deal-company-card__readmore {
  background: #fff;
  border: 1px solid var(--vibe-line);
}
.deal-company-card__sentiment-bar .is-good {
  background: #87cb7f;
}
.deal-company-card__sentiment-bar .is-neutral {
  background: #d8ae55;
}
.deal-company-card__sentiment-bar .is-poor {
  background: #cf6e6b;
}

.deal-detail-card,
.deal-modal__body,
.deal-sheet__body {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.deal-detail-box {
  background: linear-gradient(180deg, #fbfcff 0%, #f6f9fe 100%);
}
.deal-detail-list li::before,
.deal-detail-list-links li::before,
.deal-prose-list li::before {
  background: var(--vibe-indigo);
}
.deal-note-block,
.deal-callout-box {
  background: linear-gradient(180deg, rgba(73, 103, 244, 0.06), rgba(103, 212, 207, 0.09));
  border: 0;
}

.deal-faq-item {
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
}

.site-footer-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.site-mobile-dock {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--vibe-line);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}
.site-mobile-dock__item.is-active,
.site-mobile-dock__call {
  background: linear-gradient(135deg, rgba(73, 103, 244, 0.12), rgba(103, 212, 207, 0.18));
  color: var(--vibe-indigo-deep);
}
.site-mobile-dock__call {
  color: #fff;
  background: linear-gradient(135deg, var(--vibe-indigo) 0%, var(--vibe-indigo-deep) 100%);
}

.deal-compare-drawer__shell,
.deal-quote-modal__card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
}
.deal-compare-drawer__close,
.deal-compare-remove,
.deal-quote-modal__ghost {
  background: #eff3f8;
  border: 0;
}
.deal-compare-table thead th {
  background: linear-gradient(180deg, #fbfcff 0%, #f4f8fd 100%);
}
.deal-compare-table tbody tr.is-alt td {
  background: rgba(248, 251, 255, 0.82);
}
.deal-quote-summary {
  padding: 16px;
  border-radius: 18px;
}
.deal-quote-summary__value {
  color: var(--vibe-text);
}

.logo-editor-grid-head,
.logo-editor-item {
  border-color: var(--vibe-line);
}

@media (min-width: 768px) {
  .site-container {
    width: min(calc(100% - 40px), 1320px);
  }
}

@media (max-width: 767px) {
  .deal-directory-shell,
  .deal-content-section,
  .deal-toc-panel,
  .site-panel,
  .site-footer-panel,
  .deal-results-shell,
  .deal-filter-card,
  .deal-detail-card,
  .deal-detail-box,
  .deal-faq-item,
  .deal-hero-card,
  .deal-company-card,
  .deal-compare-drawer__shell,
  .deal-quote-modal__card {
    border-radius: 20px;
  }

  .deal-page-shell,
  .site-page-stack {
    gap: 16px;
  }

  .deal-company-card,
  .deal-filter-card,
  .deal-results-shell,
  .deal-detail-card,
  .deal-modal__body,
  .deal-sheet__body {
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.045);
  }
}

/* v62 static info pages refinement */
.info-page {
  gap: 18px;
}

.info-page__hero,
.info-page__section {
  padding: 24px;
}

.info-page__hero {
  background:
    radial-gradient(circle at top right, rgba(103, 212, 207, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.info-page__lead {
  max-width: 78ch;
  font-size: 15px;
  line-height: 1.75;
}

.info-page__section h2 {
  margin: 0 0 14px;
}

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

.info-page__card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f8fd 100%);
  border: 1px solid rgba(223, 231, 241, 0.92);
  box-shadow: none;
}

.info-page__card h3 {
  margin: 0 0 10px;
}

.info-page__card p + p,
.info-page__card ul + p,
.info-page__card p + ul {
  margin-top: 10px;
}

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

.info-page__list li {
  position: relative;
  padding-left: 18px;
}

.info-page__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--vibe-indigo);
}

@media (max-width: 767px) {
  .info-page__hero,
  .info-page__section {
    padding: 18px;
  }

  .info-page__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-page__card {
    padding: 16px;
    border-radius: 16px;
  }

  .info-page__lead {
    font-size: 14px;
    line-height: 1.72;
  }
}

/* v63 mobile filter cleanup */
@media (max-width: 767px) {
  .deal-filter-card__header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .deal-filter-card__count {
    display: none;
  }

  .deal-filter-card {
    overflow: visible;
  }

  .deal-filter-card .deal-card-title {
    margin-bottom: 2px;
  }

  .deal-filter-card .deal-meta-inline {
    max-width: 24ch;
    line-height: 1.65;
  }

  .deal-filter-card__toggle {
    margin-top: 10px;
    border-radius: 14px;
  }

  .deal-filter-card__panel {
    margin-top: 12px;
  }

  .deal-filter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .deal-filter-card__footer {
    margin-top: 2px;
    padding-top: 12px;
  }
}

/* v64 reduce nested card borders */
.deal-company-card {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.92);
}

.deal-company-card__logo,
.deal-company-card__rating,
.deal-company-card__readmore,
.site-mobile-dock {
  border: 0;
  box-shadow: none;
}

.deal-company-card__rating {
  background: #f8fbff;
}

.deal-company-card__section-block {
  border-top-color: rgba(224, 231, 238, 0.5);
}

.deal-company-card__actions .deal-button-secondary {
  border: 1px solid rgba(226, 232, 240, 0.9);
}

@media (max-width: 767px) {
  .deal-company-card {
    border-radius: 20px;
  }

  .deal-company-card__rating {
    padding: 12px;
    border-radius: 16px;
  }

  .site-mobile-dock {
    background: rgba(255, 255, 255, 0.98);
  }
}

/* v65 hero compare preview */
.deal-hero-card__copygrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.deal-hero-card__intro {
  min-width: 0;
}

.deal-hero-preview {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.95);
}

.deal-hero-preview__header,
.deal-hero-preview__item,
.deal-hero-preview__foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.deal-hero-preview__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.deal-hero-preview__title {
  margin: 6px 0 0;
  font-size: 1rem;
  line-height: 1.35;
}

.deal-hero-preview__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(86, 109, 241, 0.1);
  color: var(--primary-ink);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.deal-hero-preview__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deal-hero-preview__item {
  padding: 14px;
  border-radius: 18px;
  color: inherit;
  text-decoration: none;
  background: var(--surface-soft);
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.9);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.deal-hero-preview__item:hover,
.deal-hero-preview__item:focus-visible {
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(86, 109, 241, 0.16), 0 14px 26px rgba(15, 23, 42, 0.08);
}

.deal-hero-preview__item-main,
.deal-hero-preview__scorewrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.deal-hero-preview__scorewrap {
  align-items: flex-end;
  flex: 0 0 auto;
}

.deal-hero-preview__name {
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
}

.deal-hero-preview__meta,
.deal-hero-preview__foot {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.55;
}

.deal-hero-preview__score {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
}

.deal-hero-preview__link {
  color: var(--primary-ink);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.deal-hero-preview__link:hover,
.deal-hero-preview__link:focus-visible {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .deal-hero-card__copygrid {
    grid-template-columns: minmax(0, 0.84fr) minmax(280px, 0.98fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .deal-hero-preview {
    padding: 16px;
    border-radius: 20px;
  }

  .deal-hero-preview__header,
  .deal-hero-preview__item,
  .deal-hero-preview__foot {
    flex-direction: column;
  }

  .deal-hero-preview__scorewrap {
    align-items: flex-start;
  }
}

/* v66 filter sheet layout fix */
.deal-sheet {
  width: min(440px, calc(100vw - 28px));
}

.deal-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.deal-sheet__body .deal-filter-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  margin-top: 0;
}

.deal-sheet__body .deal-form-row,
.deal-sheet__body .deal-action-row {
  width: 100%;
}

.deal-sheet__body .deal-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.deal-sheet__body .deal-action-row .deal-button {
  width: 100%;
  justify-content: center;
}

@media (max-width: 767px) {
  .deal-sheet {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .deal-sheet__header {
    margin-bottom: 10px;
  }

  .deal-sheet__body {
    padding: 18px;
  }
}

/* v67 make read more button visible on company cards */
.deal-company-card a.deal-company-card__readmore,
.deal-company-card__readmore:link,
.deal-company-card__readmore:visited {
  color: #1f2937;
  background: #f8fbff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: none;
}

.deal-company-card a.deal-company-card__readmore:hover,
.deal-company-card a.deal-company-card__readmore:focus-visible {
  color: #111827;
  background: #eef4ff;
  border-color: rgba(99, 102, 241, 0.22);
}

/* v68 style read more like active home chip */
.deal-company-card__readmore {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 16px;
  background: #eef4ff;
  border: 1px solid rgba(92, 117, 255, 0.10);
  color: #4160ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.deal-company-card__readmore:hover,
.deal-company-card__readmore:focus-visible {
  background: #e6eeff;
  color: #3452ef;
  border-color: rgba(92, 117, 255, 0.16);
  box-shadow: 0 8px 20px rgba(65, 96, 255, 0.10);
}

/* v69 remove outer company modal shell so popup keeps a single surface */
.deal-modal {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.deal-modal__body {
  border-radius: var(--vibe-radius-lg);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
}

.deal-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  left: auto;
}

@media (max-width: 767px) {
  .deal-modal {
    width: min(calc(100vw - 20px), 1120px);
  }

  .deal-modal__close {
    top: 12px;
    right: 12px;
  }
}


/* v70 company modal scroll + sticky action recovery */
.deal-modal-overlay {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.deal-modal {
  position: relative;
  flex: 0 0 auto;
  width: min(1120px, 100%);
  max-height: none;
  margin: 0;
  overflow: visible;
}

.deal-modal__body {
  overflow: visible;
  padding: 0;
  padding-bottom: max(18px, env(safe-area-inset-bottom, 0px));
  background: transparent;
  border-radius: var(--vibe-radius-lg);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
}

.deal-modal-card {
  min-height: 0;
  gap: 14px;
}

.deal-modal-card__actions {
  position: sticky;
  bottom: 0;
  z-index: 4;
  margin-top: -6px;
  padding: 14px 12px calc(14px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(246, 249, 251, 0) 0%, rgba(246, 249, 251, 0.94) 28%, rgba(246, 249, 251, 0.985) 100%);
}

.deal-modal-card__actions .deal-button-primary {
  width: 100%;
  min-width: 0;
}

@media (max-width: 767px) {
  .deal-modal-overlay {
    padding: 8px;
  }

  .deal-modal {
    width: min(calc(100vw - 16px), 1120px);
  }

  .deal-modal__close {
    top: 12px;
    right: 12px;
  }

  .deal-modal-card__actions {
    padding: 12px 10px calc(12px + env(safe-area-inset-bottom, 0px));
  }
}


/* v71 restore opaque modal shell on review-15 base */
.deal-modal {
  background: #f6f9fb;
  border: 1px solid rgba(201, 210, 231, 0.72);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

.deal-modal__body {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.deal-modal-card__actions {
  background: linear-gradient(180deg, rgba(246, 249, 251, 0) 0%, rgba(246, 249, 251, 0.94) 28%, rgba(246, 249, 251, 1) 100%);
}


/* v72 sticky close + stronger sticky call on company modal */
.deal-modal {
  display: flex;
  flex-direction: column;
}

.deal-modal__close {
  position: sticky;
  top: 12px;
  right: auto;
  left: auto;
  align-self: flex-end;
  margin: 12px 12px -56px 0;
  z-index: 8;
}

.deal-modal__body {
  position: relative;
}

.deal-modal-card__actions {
  position: sticky;
  bottom: 0;
  z-index: 6;
}

@media (max-width: 767px) {
  .deal-modal__close {
    top: 10px;
    margin: 10px 10px -52px 0;
  }
}


/* v73 restore modal as the real scroll container so sticky close/call work */
.deal-modal-overlay {
  display: grid;
  place-items: start center;
  padding: 12px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.deal-modal {
  display: block;
  position: relative;
  width: min(1120px, calc(100vw - 24px));
  max-height: min(92vh, 980px);
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: #f6f9fb;
  border: 1px solid rgba(201, 210, 231, 0.72);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
}

.deal-modal__body {
  position: relative;
  overflow: visible;
  min-height: 0;
  padding: 8px 14px calc(18px + env(safe-area-inset-bottom, 0px));
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.deal-modal__close {
  position: sticky;
  top: 12px;
  float: right;
  margin: 12px 12px -52px 0;
  z-index: 10;
}

.deal-modal-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.deal-modal-card__actions {
  position: sticky;
  bottom: 0;
  z-index: 9;
  margin-top: auto;
  padding: 14px 12px calc(14px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(246, 249, 251, 0) 0%, rgba(246, 249, 251, 0.94) 26%, rgba(246, 249, 251, 1) 100%);
  box-shadow: 0 -10px 24px rgba(246, 249, 251, 0.88);
}

.deal-modal-card__actions .deal-button-primary {
  width: 100%;
  min-width: 0;
}

@media (max-width: 767px) {
  .deal-modal-overlay {
    padding: 8px;
  }

  .deal-modal {
    width: min(calc(100vw - 16px), 1120px);
    max-height: min(94vh, 980px);
    border-radius: 24px;
  }

  .deal-modal__body {
    padding: 8px 10px calc(14px + env(safe-area-inset-bottom, 0px));
  }

  .deal-modal__close {
    top: 10px;
    margin: 10px 10px -48px 0;
  }

  .deal-modal-card__actions {
    padding: 12px 10px calc(12px + env(safe-area-inset-bottom, 0px));
  }
}

/* v74 remove squared border corners around sticky call bar */
.deal-modal {
  overflow: hidden;
}

.deal-modal-card__actions {
  margin-left: -14px;
  margin-right: -14px;
  margin-bottom: calc(-18px - env(safe-area-inset-bottom, 0px));
  padding-left: 14px;
  padding-right: 14px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  border-radius: 0 0 28px 28px;
  box-shadow: none;
}

@media (max-width: 767px) {
  .deal-modal-card__actions {
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: calc(-14px - env(safe-area-inset-bottom, 0px));
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    border-radius: 0 0 24px 24px;
  }
}


/* v75 remove modal shell border so no stray edge shows at the corners */
.deal-modal {
  border: 0;
}


/* v76 restore usable modal scrolling and keep sticky CTA from covering content */
.deal-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
}

.deal-modal {
  display: flex;
  flex-direction: column;
  width: min(1120px, calc(100vw - 24px));
  max-height: min(92vh, 980px);
}

.deal-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  margin: 0;
  float: none;
  z-index: 12;
}

.deal-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 8px 14px calc(132px + env(safe-area-inset-bottom, 0px));
}

.deal-modal-card__actions {
  margin-top: 12px;
  margin-bottom: calc(-18px - env(safe-area-inset-bottom, 0px));
}

@media (max-width: 767px) {
  .deal-modal {
    width: min(calc(100vw - 16px), 1120px);
    max-height: min(94vh, 980px);
    border-radius: 24px;
  }

  .deal-modal__close {
    top: 12px;
    right: 12px;
  }

  .deal-modal__body {
    padding: 8px 10px calc(124px + env(safe-area-inset-bottom, 0px));
  }
}

/* review(27): content section sync pass */
.deal-content-section,
.deal-toc-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--vibe-line, #dbe4f0);
  border-radius: 24px;
  box-shadow: var(--vibe-shadow-card, 0 20px 48px rgba(15, 23, 42, 0.08));
  padding: 24px;
}

.deal-content-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.deal-section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 0;
  border-bottom: 0;
}

.deal-content-section__title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--vibe-text, #172033);
}

.deal-content-section__subhead,
.deal-info-panel .deal-content-section__subhead,
.deal-step-card .deal-content-section__subhead,
.deal-glossary-card__term,
.deal-feature-card__title {
  font-size: 1rem;
  line-height: 1.38;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--vibe-text, #172033);
}

.deal-prose-paragraph,
.deal-prose-list li,
.deal-note-block,
.deal-callout-box,
.deal-faq-item__body,
.deal-glossary-card__text,
.deal-feature-card__text {
  font-size: 13px;
  line-height: 1.72;
  color: var(--vibe-text-soft, #607086);
}

.deal-section-kicker {
  min-height: 24px;
  padding: 0 10px;
  margin-bottom: 8px;
  font-size: 9px;
  letter-spacing: 0.08em;
}

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

.deal-feature-card,
.deal-glossary-card,
.deal-step-card,
.deal-info-panel,
.deal-faq-item,
#editorial-policy .deal-prose-list {
  background: linear-gradient(180deg, #fbfcff 0%, #f5f8fd 100%);
  border: 1px solid var(--vibe-line, #dbe4f0);
  border-radius: 18px;
  box-shadow: none;
}

.deal-feature-card,
.deal-glossary-card,
.deal-step-card,
.deal-info-panel,
.deal-faq-item {
  padding: 16px;
}

.deal-feature-card {
  align-items: flex-start;
  gap: 12px;
  min-height: 100%;
}

.deal-feature-card__icon,
.deal-step-card__number {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 700;
  color: var(--vibe-indigo-deep, #3148b8);
  background: rgba(73, 103, 244, 0.1);
  border: 0;
  box-shadow: none;
}

.deal-step-stack,
.deal-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deal-step-card__top {
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.deal-prose-list {
  gap: 10px;
  padding-left: 0;
  margin: 0;
}

.deal-prose-list li {
  padding-left: 16px;
}

.deal-prose-list li::before {
  top: 0.8em;
  width: 5px;
  height: 5px;
  background: var(--vibe-indigo, #4967f4);
}

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

.deal-note-block,
.deal-callout-box {
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(73, 103, 244, 0.05), rgba(103, 212, 207, 0.08));
}

.deal-faq-item {
  padding: 0;
  overflow: hidden;
}

.deal-faq-item__summary {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--vibe-text, #172033);
}

.deal-faq-item__body {
  margin-top: 0;
  padding: 0 16px 16px;
}

#editorial-policy .deal-content-section__title,
#faq .deal-content-section__title {
  margin-bottom: 0;
}

#editorial-policy .deal-prose-list {
  padding: 16px 18px;
}

#editorial-policy .deal-prose-list li + li {
  margin-top: 8px;
}

.site-footer-panel {
  min-height: 100%;
}

.site-footer-panel__title {
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
}

.site-footer-panel__text,
.site-footer-links__link,
.site-footer-contact li {
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 1023px) {
  .deal-feature-grid,
  .deal-glossary-grid,
  .deal-prose-list--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .deal-content-section,
  .deal-toc-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .deal-feature-grid,
  .deal-glossary-grid,
  .deal-prose-list--grid {
    grid-template-columns: 1fr;
  }

  .deal-content-section__title {
    font-size: 1.8rem;
  }

  .deal-feature-card,
  .deal-glossary-card,
  .deal-step-card,
  .deal-info-panel,
  .deal-faq-item {
    padding: 14px;
  }

  .deal-faq-item {
    padding: 0;
  }

  .deal-faq-item__summary {
    padding: 13px 14px;
  }

  .deal-faq-item__body {
    padding: 0 14px 14px;
  }
}

/* review(32) editorial directory redesign */
.seo-directory-section {
  gap: 20px;
}

.seo-directory-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: end;
}

.seo-directory-section__title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.seo-directory-section__intro {
  max-width: 72ch;
  margin: 0;
}

.seo-directory-aside {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f7f9fd 100%);
}

.seo-directory-aside__title {
  display: block;
  margin: 0 0 8px;
  font-size: 0.96rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.seo-directory-aside__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.seo-directory-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-directory-jump__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
}

.seo-directory-jump__link:hover {
  background: #fff;
  color: var(--text);
}

.seo-directory-groups {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.seo-directory-group {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.seo-directory-group__letter {
  position: sticky;
  top: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--primary-ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.seo-directory-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seo-directory-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(260px, 1.4fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
}

.seo-directory-row__title,
.seo-city-card__title,
.seo-related-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.seo-directory-row__meta {
  margin: 6px 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.seo-directory-row__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-directory-city-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--text-soft);
}

.seo-directory-city-link:hover,
.seo-directory-open:hover {
  color: var(--text);
  background: #fff;
}

.seo-directory-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface-soft);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.seo-directory-open--solid {
  color: #fff;
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(35, 213, 211, 0.18);
}

.seo-directory-open--ghost {
  background: transparent;
}

.seo-directory-state-hero {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfcff 0%, #f7f9fd 100%);
}

.seo-directory-state-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.seo-city-card,
.seo-related-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
}

.seo-city-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seo-city-card__text,
.seo-related-card__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.seo-related-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.seo-related-card {
  min-height: 100%;
}

.seo-related-card--current {
  background: linear-gradient(180deg, rgba(35, 213, 211, 0.08) 0%, rgba(35, 213, 211, 0.03) 100%);
  border-color: rgba(35, 213, 211, 0.22);
}

.seo-related-card__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 1080px) {
  .seo-directory-section__header,
  .seo-directory-row,
  .seo-directory-group {
    grid-template-columns: 1fr;
  }

  .seo-directory-group__letter {
    position: static;
    width: 40px;
    height: 40px;
  }

  .seo-directory-city-grid,
  .seo-related-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .seo-directory-city-grid,
  .seo-related-strip {
    grid-template-columns: 1fr;
  }

  .seo-directory-state-hero {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* review(32) editorial directory redesign */
.seo-directory-section {
  gap: 20px;
}
.seo-directory-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: end;
}
.seo-directory-section__title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.seo-directory-section__intro {
  max-width: 72ch;
  margin: 0;
}
.seo-directory-aside {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f7f9fd 100%);
}
.seo-directory-aside__title {
  display: block;
  margin: 0 0 8px;
  font-size: 0.96rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.seo-directory-aside__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-soft);
}
.seo-directory-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.seo-directory-jump__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
}
.seo-directory-jump__link:hover { background: #fff; color: var(--text); }
.seo-directory-groups { display: flex; flex-direction: column; gap: 24px; }
.seo-directory-group {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.seo-directory-group__letter {
  position: sticky;
  top: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--primary-ink);
  font-size: 0.92rem;
  font-weight: 700;
}
.seo-directory-list { display: flex; flex-direction: column; gap: 12px; }
.seo-directory-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(260px, 1.4fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
}
.seo-directory-row__title,
.seo-city-card__title,
.seo-related-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.seo-directory-row__meta {
  margin: 6px 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.seo-directory-row__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.seo-directory-city-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--text-soft);
}
.seo-directory-city-link:hover,
.seo-directory-open:hover { color: var(--text); background: #fff; }
.seo-directory-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface-soft);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.seo-directory-open--solid {
  color: #fff;
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(35, 213, 211, 0.18);
}
.seo-directory-open--ghost { background: transparent; }
.seo-directory-state-hero {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfcff 0%, #f7f9fd 100%);
}
.seo-directory-state-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.seo-directory-city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.seo-city-card,
.seo-related-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
}
.seo-city-card { display: flex; flex-direction: column; gap: 12px; }
.seo-city-card__text,
.seo-related-card__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-soft);
}
.seo-related-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.seo-related-card { min-height: 100%; }
.seo-related-card--current {
  background: linear-gradient(180deg, rgba(35, 213, 211, 0.08) 0%, rgba(35, 213, 211, 0.03) 100%);
  border-color: rgba(35, 213, 211, 0.22);
}
.seo-related-card__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 1080px) {
  .seo-directory-section__header,
  .seo-directory-row,
  .seo-directory-group { grid-template-columns: 1fr; }
  .seo-directory-group__letter { position: static; width: 40px; height: 40px; }
  .seo-directory-city-grid,
  .seo-related-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .seo-directory-city-grid,
  .seo-related-strip { grid-template-columns: 1fr; }
  .seo-directory-state-hero { flex-direction: column; align-items: flex-start; }
}


/* review(12) location directory cleanup */
.deal-location-directory .deal-section-header {
  align-items: start;
  gap: 18px;
}

.deal-location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.deal-location-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
}

.deal-location-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.deal-location-card__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vibe-indigo-deep, #3148b8);
}

.deal-location-card__title {
  font-size: 1.125rem;
  line-height: 1.25;
}

.deal-location-card__title a {
  color: inherit;
  text-decoration: none;
}

.deal-location-card__title a:hover {
  color: var(--vibe-indigo, #4967f4);
}

.deal-location-card__summary {
  margin: 0;
  max-width: 48ch;
}

.deal-location-card__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.deal-location-chip,
.deal-location-card__cta,
.deal-location-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.deal-location-chip {
  text-decoration: none;
  color: var(--vibe-text, #172033);
  background: #ffffff;
  border: 1px solid var(--vibe-line, #dbe4f0);
  transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.deal-location-chip:hover {
  color: var(--vibe-indigo, #4967f4);
  border-color: rgba(73, 103, 244, 0.35);
  transform: translateY(-1px);
}

.deal-location-card__cta,
.deal-location-card__badge {
  flex: 0 0 auto;
  white-space: nowrap;
}

.deal-location-card__cta {
  text-decoration: none;
  color: var(--vibe-indigo-deep, #3148b8);
  background: rgba(73, 103, 244, 0.1);
}

.deal-location-card__cta:hover {
  background: rgba(73, 103, 244, 0.16);
}

.deal-location-card__badge {
  color: var(--vibe-text-soft, #607086);
  background: rgba(219, 228, 240, 0.7);
}

.deal-location-directory--home .deal-location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.deal-location-directory--state .deal-location-grid,
.deal-location-directory--city .deal-location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 1280px) {
  .deal-location-directory--home .deal-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .deal-location-grid,
  .deal-location-directory--home .deal-location-grid,
  .deal-location-directory--state .deal-location-grid,
  .deal-location-directory--city .deal-location-grid {
    grid-template-columns: 1fr;
  }

  .deal-location-card {
    padding: 16px;
    border-radius: 18px;
  }

  .deal-location-card__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
