:root {
  --bg: #f5f7fb;
  --fg: #101217;
  --accent: #0077bc;
  --accent-2: #009866;
  --panel: #ffffff;
  --border: #101217;
  --display: "Archivo Black", serif;
  --body: "Space Grotesk", 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-ideakitchen {
  background:
    linear-gradient(180deg, rgba(0, 119, 188, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(16, 18, 23, 0.06) 1px, transparent 1px),
    #f5f7fb;
  background-size: auto, 56px 56px;
}
body.site-ideakitchen .wrap {
  width: min(1180px, calc(100vw - 40px));
}
body.site-ideakitchen .site-header {
  background: #101217;
  border-bottom: 4px solid #0077bc;
  box-shadow: none;
}
body.site-ideakitchen .brand {
  color: #ffffff;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
body.site-ideakitchen nav a {
  color: rgba(255, 255, 255, 0.82);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
body.site-ideakitchen nav a:hover {
  color: #ffffff;
  text-decoration: none;
}
body.site-ideakitchen .hero {
  padding: 104px 0 54px;
}
body.site-ideakitchen .hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 340px);
  gap: 28px;
  align-items: start;
}
body.site-ideakitchen .hero-copy {
  position: relative;
  padding: 36px;
  border: 4px solid #101217;
  background: #ffffff;
}
body.site-ideakitchen .hero-copy::after {
  content: "";
  position: absolute;
  inset: auto 0 -14px auto;
  width: 120px;
  height: 14px;
  background: #009866;
}
body.site-ideakitchen h1 {
  max-width: 7ch;
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(3rem, 6vw, 5.15rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
body.site-ideakitchen .hero-kicker {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  background: #0077bc;
  color: #ffffff;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.site-ideakitchen .lede {
  max-width: 220px;
  margin-top: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.94rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.78;
}
body.site-ideakitchen .hero-sidecar {
  position: relative;
  border-radius: 0;
  border: 4px solid #101217;
  background: #101217;
  color: #ffffff;
  box-shadow: 16px 16px 0 #009866;
}
body.site-ideakitchen .hero-sidecar-label {
  color: rgba(255, 255, 255, 0.62);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
body.site-ideakitchen .hero-sidecar p {
  color: #ffffff;
  font-size: 1rem;
}
body.site-ideakitchen .review-stamp span {
  border-radius: 0;
  border: 4px solid #101217;
  background: #009866;
  color: #101217;
  font-family: "JetBrains Mono", monospace;
  box-shadow: 10px 10px 0 rgba(16, 18, 23, 0.1);
}
body.site-ideakitchen .section {
  border-radius: 0;
  border: 4px solid #101217;
  background: #ffffff;
  box-shadow: 14px 14px 0 rgba(0, 119, 188, 0.08);
}
body.site-ideakitchen .section-heading h2,
body.site-ideakitchen .rank-name {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
}
body.site-ideakitchen .ranking-section .rank-card:first-of-type {
  border-radius: 0;
  border: 4px solid #101217;
  background: #0077bc;
  color: #ffffff;
  box-shadow: 16px 16px 0 #101217;
}
body.site-ideakitchen .ranking-section .rank-card:first-of-type .rank-name,
body.site-ideakitchen .ranking-section .rank-card:first-of-type .firm-site-link,
body.site-ideakitchen .ranking-section .rank-card:first-of-type .firm-site-url,
body.site-ideakitchen .ranking-section .rank-card:first-of-type .rank-site {
  color: #ffffff;
}
body.site-ideakitchen .ranking-section .rank-card:first-of-type .rating-chip {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}
body.site-ideakitchen .rank-number {
  border-radius: 0;
  background: #101217;
  color: #ffffff;
  font-family: "JetBrains Mono", monospace;
}
body.site-ideakitchen .link-card,
body.site-ideakitchen .source-card,
body.site-ideakitchen table {
  border-radius: 0;
  border: 4px solid #101217;
  background: #ffffff;
  box-shadow: none;
}
body.site-ideakitchen .source-card img {
  border-bottom: 4px solid #101217;
}
body.site-ideakitchen .source-quote {
  border-left: 0;
  border-radius: 0;
  border: 4px solid #101217;
  background: linear-gradient(135deg, rgba(0, 152, 102, 0.12), rgba(255, 255, 255, 0.98));
}
body.site-ideakitchen .site-footer {
  border-top: 4px solid #101217;
  background: #101217;
  color: #ffffff;
}
body.site-ideakitchen .site-footer p {
  opacity: 1;
}
@media (max-width: 860px) {
  body.site-ideakitchen .hero-copy {
    padding: 28px 24px;
  }
  body.site-ideakitchen .hero-sidecar {
    box-shadow: none;
  }
}
