:root {
  --bg: #f6f8fb;
  --fg: #172033;
  --accent: #3b82f6;
  --accent-2: #8b5cf6;
  --panel: #ffffff;
  --border: #d6deea;
  --display: "Poppins", serif;
  --body: "Open Sans", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  line-height: 1.65;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--border);
}
.header-inner, .footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
}
.brand {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--fg);
  font-weight: 700;
  letter-spacing: 0.02em;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
nav a {
  color: var(--fg);
  opacity: 0.85;
}
.hero {
  padding: 70px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 340px);
  gap: 28px;
  align-items: end;
}
.hero-copy {
  min-width: 0;
}
.hero-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-sidecar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: stretch;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, color-mix(in srgb, var(--panel) 84%, var(--bg)), color-mix(in srgb, var(--accent-2) 8%, var(--panel)));
}
.hero-sidecar-label {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-sidecar p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}
.review-stamp {
  margin: 0 0 22px;
}
.review-stamp span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel) 75%, var(--bg));
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stamp-ledger {
  margin: 0 0 18px;
}
.stamp-ledger span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.stamp-float {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.stamp-note span {
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-2) 14%, var(--panel));
  color: var(--fg);
}
.stamp-banner span {
  display: inline-flex;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent) 18%, var(--panel));
  color: color-mix(in srgb, var(--fg) 84%, var(--accent));
}
.stamp-rule {
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
.stamp-rule span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
}
.stamp-tag {
  margin-bottom: 14px;
}
.stamp-tag span {
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-2) 20%, var(--panel));
  color: var(--fg);
}
h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.06;
  margin: 0 0 14px;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.35rem, 2.6vw, 2.15rem); }
.lede {
  font-size: 1.08rem;
  max-width: 820px;
  opacity: 0.88;
}
.section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  margin: 0 0 22px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.06);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}
.section-kicker {
  margin: 0;
  max-width: 420px;
  opacity: 0.78;
}
.feature-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}
.process-list {
  margin: 0;
  padding-left: 18px;
}
.rank-card {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.rank-card:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.ranking-section .rank-card:first-of-type {
  background: color-mix(in srgb, var(--accent) 10%, var(--panel));
  border: 1px solid color-mix(in srgb, var(--accent) 36%, var(--border));
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 16px;
}
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}
.rank-number {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--accent);
}
.rank-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}
.firm-site-link,
.firm-site-url {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
}
.firm-site-link:hover,
.firm-site-url:hover {
  color: var(--accent);
}
.rank-site {
  margin: 0 0 12px;
  font-size: 0.92rem;
  opacity: 0.84;
}
.rank-why {
  margin: 0 0 8px;
}
.rating-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
}
.rating-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 11%, var(--panel));
  border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--border));
  color: var(--fg);
  font-size: 0.88rem;
  font-weight: 600;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.section-nav.nav-inline .link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.section-nav.nav-list .link-grid {
  grid-template-columns: 1fr;
}
.section-nav.nav-masthead .link-card {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, var(--panel)), color-mix(in srgb, var(--accent-2) 14%, var(--panel)));
}
.section-nav.nav-annotated .link-card {
  border-left: 4px solid var(--accent);
  border-radius: 10px;
}
.section-nav.nav-report .link-card {
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  border-bottom: 1px solid var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
}
.link-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--panel) 72%, var(--bg));
  color: var(--fg);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-decoration: none;
}
.source-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.source-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--panel) 76%, var(--bg));
  color: var(--fg);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.source-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-decoration: none;
}
.source-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: color-mix(in srgb, var(--bg) 55%, var(--panel));
  border-bottom: 1px solid var(--border);
}
.source-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}
.source-card-date {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
}
.source-card-title {
  font-size: 1rem;
  line-height: 1.35;
}
.source-card-note {
  margin: 0;
  opacity: 0.86;
}
.link-card-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.article-figure {
  margin: 0 0 22px;
}
.article-figure img {
  display: block;
  width: 100%;
  max-width: 760px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--panel);
}
.article-figure figcaption {
  margin-top: 10px;
  font-size: 0.92rem;
  opacity: 0.8;
}
.source-quote {
  margin: 0 0 22px;
  padding: 20px 22px;
  border-left: 4px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, var(--panel));
  border-radius: 12px;
}
.source-quote p {
  margin: 0 0 8px;
  font-size: 1.02rem;
}
.source-quote cite {
  font-style: normal;
  font-size: 0.9rem;
}
.faq-item {
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.faq-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}
.faq-item p {
  margin: 10px 0 0;
}
.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  text-align: left;
  padding: 12px 10px;
  border-top: 1px solid var(--border);
  vertical-align: top;
}
thead th {
  border-top: 0;
  color: var(--accent);
}
.site-footer {
  margin-top: 48px;
  border-top: 1px solid var(--border);
}
.site-footer p {
  margin: 0;
  opacity: 0.86;
}
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .feature-panel {
    grid-template-columns: 1fr;
  }
  .link-grid {
    grid-template-columns: 1fr;
  }
  .section-nav.nav-inline .link-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .header-inner, .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

body.site-synergykitchen {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent 28%),
    linear-gradient(rgba(214, 222, 234, 0.9) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 222, 234, 0.9) 1px, transparent 1px),
    #f6f8fb;
  background-size: auto, 72px 72px, 72px 72px;
}
body.site-synergykitchen .wrap {
  width: min(1180px, calc(100vw - 44px));
}
body.site-synergykitchen .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
  box-shadow: none;
}
body.site-synergykitchen .brand {
  color: #172033;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
body.site-synergykitchen nav {
  gap: 20px;
}
body.site-synergykitchen nav a {
  color: rgba(23, 32, 51, 0.7);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
body.site-synergykitchen nav a:hover {
  color: #172033;
  text-decoration: none;
}
body.site-synergykitchen .hero {
  padding: 104px 0 50px;
}
body.site-synergykitchen .hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 340px);
  gap: 28px;
  align-items: stretch;
}
body.site-synergykitchen .hero-copy {
  padding: 38px 40px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
}
body.site-synergykitchen h1 {
  max-width: 8ch;
  font-family: "Poppins", sans-serif;
  font-size: clamp(3rem, 6vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
body.site-synergykitchen .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #3b82f6;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.site-synergykitchen .hero-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8b5cf6;
}
body.site-synergykitchen .lede {
  max-width: 180px;
  margin-top: 14px;
  color: rgba(23, 32, 51, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.site-synergykitchen .hero-sidecar {
  border-radius: 28px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  background: linear-gradient(180deg, #ffffff, #f6f8ff);
  box-shadow: none;
}
body.site-synergykitchen .hero-sidecar-label {
  color: rgba(23, 32, 51, 0.54);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.site-synergykitchen .review-stamp span {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0 0 0 14px;
  color: #3b82f6;
  font-family: "IBM Plex Mono", monospace;
  position: relative;
}
body.site-synergykitchen .review-stamp span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 1px;
  width: 3px;
  background: #8b5cf6;
}
body.site-synergykitchen .section {
  border-radius: 24px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}
body.site-synergykitchen .ranking-section .rank-card:first-of-type {
  border-radius: 24px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.05));
}
body.site-synergykitchen .rank-number {
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-family: "IBM Plex Mono", monospace;
}
body.site-synergykitchen .rank-name,
body.site-synergykitchen .section-heading h2 {
  font-family: "Poppins", sans-serif;
}
body.site-synergykitchen .link-card,
body.site-synergykitchen .source-card,
body.site-synergykitchen table {
  border-radius: 22px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  background: #ffffff;
  box-shadow: none;
}
body.site-synergykitchen .source-quote {
  border-left: 0;
  border-radius: 22px;
  background: rgba(59, 130, 246, 0.06);
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.12);
}
body.site-synergykitchen .site-footer {
  border-top: 1px solid rgba(23, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.94);
}
@media (max-width: 860px) {
  body.site-synergykitchen .hero-copy {
    padding: 30px 24px;
  }
}
