:root {
  color-scheme: dark;
  --bg: #0e0f1a;
  --panel: #141525;
  --panel-2: #10172a;
  --line: rgba(122, 125, 158, 0.24);
  --text: #f0f2ff;
  --muted: #8f91ad;
  --copy: #c8cae8;
  --cyan: #38d9f5;
  --blue: #6abfff;
  --violet: #a78bfa;
  --violet-strong: #7c5ccf;
  --ok: #70f0c5;
  --warn: #ffd166;
  --danger: #ff7a90;
  --max: 1180px;
  --brand-gradient: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 45%, var(--violet) 100%);
  --scanner-bg: linear-gradient(180deg, rgba(245, 247, 251, 0.08), rgba(245, 247, 251, 0.03));
  --scanner-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  --feed-card-bg: color-mix(in srgb, var(--panel) 78%, transparent);
  --content-card-bg: rgba(16, 23, 42, 0.78);
  --code-bg: rgba(245, 247, 251, 0.08);
  font-family: "Plus Jakarta Sans", Inter, Sora, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0e0f1a;
  --panel: #141525;
  --panel-2: #10172a;
  --line: rgba(122, 125, 158, 0.24);
  --text: #f0f2ff;
  --muted: #8f91ad;
  --copy: #c8cae8;
  --scanner-bg: linear-gradient(180deg, rgba(245, 247, 251, 0.08), rgba(245, 247, 251, 0.03));
  --scanner-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  --feed-card-bg: color-mix(in srgb, var(--panel) 78%, transparent);
  --content-card-bg: rgba(16, 23, 42, 0.78);
  --code-bg: rgba(245, 247, 251, 0.08);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #eef2f8;
  --panel: #f8fbff;
  --panel-2: #e0e8f4;
  --line: rgba(50, 61, 91, 0.24);
  --text: #0e0f1a;
  --muted: #505a73;
  --copy: #252a3c;
  --scanner-bg: linear-gradient(180deg, #dce7f3 0%, #edf3fa 100%);
  --scanner-shadow: 0 24px 70px rgba(54, 73, 110, 0.18);
  --feed-card-bg: #ffffff;
  --content-card-bg: #ffffff;
  --code-bg: #e7edf7;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(56, 217, 245, 0.13), transparent 30rem),
    radial-gradient(circle at 18% 4%, rgba(167, 139, 250, 0.13), transparent 24rem),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 16px 22px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  font-weight: 800;
}

.brand img {
  height: 40px;
  width: 40px;
}

.brand-mark {
  align-items: baseline;
  display: inline-flex;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-break,
h1 span,
.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-price {
  color: var(--text);
}

.brand-dot,
.brand-ai {
  color: var(--violet-strong);
}

.brand-ai {
  font-weight: 500;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-search {
  display: block;
  flex: 1;
  max-width: 360px;
  min-width: 220px;
  position: relative;
}

.site-search label {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 0;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 0;
}

.site-search input {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  min-height: 38px;
  padding: 0 12px;
  width: 100%;
}

.site-search input:focus {
  border-color: color-mix(in srgb, var(--cyan) 64%, var(--line));
  outline: none;
}

.search-results {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--scanner-shadow);
  display: grid;
  gap: 4px;
  left: 0;
  max-height: min(420px, 70vh);
  overflow: auto;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 40;
}

.search-result {
  border-radius: 6px;
  display: grid;
  gap: 2px;
  padding: 9px;
}

.search-result:hover {
  background: rgba(245, 247, 251, 0.06);
}

.search-result span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.search-result strong {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.2;
}

.search-result small,
.search-empty {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.search-empty {
  padding: 10px;
}

.nav-menu-toggle {
  align-items: center;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 38px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.nav-menu-toggle span {
  background: var(--text);
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 18px;
}

.theme-toggle {
  align-items: center;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  font-size: 0;
  height: 36px;
  justify-content: center;
  padding: 0;
  width: 36px;
}

.theme-toggle::before {
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  box-shadow:
    0 -8px 0 -6px var(--blue),
    0 8px 0 -6px var(--blue),
    8px 0 0 -6px var(--blue),
    -8px 0 0 -6px var(--blue),
    6px 6px 0 -6px var(--blue),
    -6px -6px 0 -6px var(--blue),
    6px -6px 0 -6px var(--blue),
    -6px 6px 0 -6px var(--blue);
  display: block;
  height: 14px;
  width: 14px;
}

.theme-toggle[data-theme="light"]::before {
  background: transparent;
  box-shadow: inset -5px -3px 0 0 var(--violet-strong);
  height: 18px;
  width: 18px;
}

.nav-links a:hover {
  color: var(--text);
}

.button {
  align-items: center;
  background: var(--brand-gradient);
  border: 0;
  border-radius: 999px;
  color: #030612;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  white-space: nowrap;
}

.button.secondary {
  background: rgba(245, 247, 251, 0.06);
  border: 1px solid var(--line);
  color: var(--text);
}

.hero {
  display: grid;
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  margin: 0 auto;
  max-width: var(--max);
  min-height: calc(100vh - 72px);
  padding: 88px 22px 60px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
  margin-bottom: 24px;
  max-width: 640px;
}

h1 span,
.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  color: var(--copy);
  font-size: 1.18rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-proof {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  max-width: 700px;
  padding-top: 24px;
}

.metric strong {
  display: block;
  font-size: 1.45rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.88rem;
}

.scanner {
  align-self: start;
  background: var(--scanner-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--scanner-shadow);
  min-height: 540px;
  overflow: hidden;
  width: 100%;
}

.feed-panel {
  min-height: 0;
}

.scanner-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 18px;
}

.status-dot {
  background: var(--ok);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(112, 240, 197, 0.8);
  height: 10px;
  width: 10px;
}

.scan-grid {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.signal-card {
  background: var(--feed-card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.feed-card {
  background: var(--feed-card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.feed-card h3 {
  font-size: 1.04rem;
  line-height: 1.22;
  margin: 0;
}

.feed-card p {
  color: var(--copy);
  margin-bottom: 0;
}

.signal-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.tag {
  border: 1px solid rgba(50, 215, 255, 0.28);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.73rem;
  font-weight: 800;
  padding: 5px 9px;
  text-transform: uppercase;
}

.spark {
  height: 72px;
  position: relative;
}

.spark::before {
  background: var(--brand-gradient);
  border-radius: 999px;
  content: "";
  height: 4px;
  inset: auto 8px 18px 8px;
  position: absolute;
}

.spark::after {
  background: linear-gradient(135deg, rgba(50, 215, 255, 0.2), rgba(155, 108, 255, 0.6));
  clip-path: polygon(0 76%, 16% 60%, 28% 70%, 44% 34%, 58% 52%, 76% 18%, 100% 46%, 100% 100%, 0 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.page-section {
  border-top: 1px solid var(--line);
  padding: 70px 22px;
}

.section-inner {
  margin: 0 auto;
  max-width: var(--max);
}

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

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  margin-bottom: 0;
}

.section-head p {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 460px;
}

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

.product-catalog-page .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.catalog-grid {
  margin-top: 18px;
}

.catalog-toolbar {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.86rem;
  font-weight: 750;
  gap: 12px;
  justify-content: space-between;
  text-transform: uppercase;
}

.pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 26px;
}

.pagination a,
.pagination span,
.pagination strong {
  align-items: center;
  background: rgba(245, 247, 251, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--copy);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  justify-content: center;
  min-height: 38px;
  min-width: 38px;
  padding: 0 12px;
}

.pagination strong {
  background: var(--brand-gradient);
  color: #030612;
}

.pagination span {
  opacity: 0.48;
}

.product-card {
  background: var(--content-card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.product-card.positive {
  border-color: rgba(112, 240, 197, 0.4);
}

.product-card.watch {
  border-color: rgba(255, 209, 102, 0.42);
}

.product-card.pass {
  border-color: rgba(255, 122, 144, 0.42);
}

.product-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.product-body {
  display: grid;
  gap: 10px;
  grid-template-rows: auto auto 1fr auto;
  padding: 14px;
}

.product-meta {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.82rem;
  font-weight: 750;
  justify-content: space-between;
  text-transform: uppercase;
}

.score {
  color: var(--cyan);
}

.product-card h3 {
  font-size: 1.04rem;
  line-height: 1.2;
  margin-bottom: 0;
}

.product-card p {
  color: var(--copy);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.product-card-foot {
  align-items: end;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-top: 4px;
  min-height: 24px;
}

.product-signal {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  margin-left: auto;
  text-align: right;
  text-transform: uppercase;
}

.product-card.positive .product-signal {
  color: color-mix(in srgb, var(--ok) 74%, var(--muted));
}

.product-card.watch .product-signal {
  color: color-mix(in srgb, var(--warn) 74%, var(--muted));
}

.product-card.pass .product-signal {
  color: color-mix(in srgb, var(--danger) 74%, var(--muted));
}

.blog-list {
  display: grid;
  gap: 16px;
}

.blog-row {
  align-items: center;
  background: var(--content-card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 20px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 20px;
}

.blog-row-cover {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  aspect-ratio: 1;
  height: 112px;
  overflow: hidden;
  width: 112px;
}

.blog-row-cover img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.blog-row-cover.fallback-logo {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 18px;
}

.blog-row-cover.fallback-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.blog-row h2 {
  font-size: 1.35rem;
  margin: 8px 0;
}

.blog-row p,
.blog-content p,
.blog-content li {
  color: var(--copy);
}

.blog-post-page article {
  display: grid;
  gap: 18px;
}

.blog-post-page.product-page {
  padding-top: 46px;
}

.blog-post-hero {
  align-items: start;
  display: grid;
  gap: clamp(18px, 2.6vw, 30px);
  grid-template-columns: minmax(0, 1fr) minmax(210px, 274px);
  margin-bottom: 0;
}

.blog-post-hero h1 {
  font-size: clamp(1.9rem, 3.05vw, 2.65rem);
  line-height: 1.06;
  margin-bottom: 14px;
}

.blog-index-page .section-head h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
}

.blog-post-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 620px;
}

.blog-byline,
.product-byline {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-byline a {
  color: var(--accent);
  text-decoration: none;
}

.blog-byline a::before {
  color: var(--muted);
  content: "/";
  margin-right: 8px;
}

.blog-byline a:hover {
  text-decoration: underline;
}

.blog-byline strong,
.product-byline strong {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: none;
}

.blog-byline strong::before,
.product-byline strong::before {
  color: var(--muted);
  content: "/";
  margin-right: 8px;
}

.blog-content {
  display: grid;
  gap: 18px;
  font-size: 1.02rem;
}

.blog-cover {
  aspect-ratio: 1;
  background: var(--content-card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.blog-cover img {
  aspect-ratio: 1;
  background: var(--panel-2);
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.blog-cover.fallback-logo {
  align-self: stretch;
  display: flex;
  min-height: 260px;
}

.blog-cover.fallback-logo img {
  aspect-ratio: auto;
  object-fit: contain;
  padding: clamp(34px, 7vw, 72px);
}

.blog-cover figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  padding: 10px 14px 12px;
  text-align: center;
}

.blog-content h2 {
  font-size: 1.55rem;
  margin-top: 8px;
}

.blog-content h3 {
  font-size: 1.15rem;
}

.blog-content ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.blog-content code {
  background: var(--code-bg);
  border-radius: 4px;
  padding: 1px 5px;
}

.blog-image {
  margin: 0;
}

.blog-image img {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  max-height: min(520px, 62vh);
  object-fit: contain;
  width: 100%;
}

.blog-image figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  margin-top: 10px;
  text-align: center;
}

.blog-product-card {
  align-items: start;
  background: var(--content-card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 150px minmax(0, 1fr) minmax(128px, auto);
  justify-self: start;
  max-width: 760px;
  padding: 14px;
  width: 100%;
}

.blog-product-card.positive {
  border-color: rgba(45, 212, 132, 0.42);
  box-shadow: 0 0 0 1px rgba(45, 212, 132, 0.08) inset;
}

.blog-product-card.watch {
  border-color: rgba(245, 158, 11, 0.46);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.1) inset;
}

.blog-product-card.pass {
  border-color: rgba(248, 113, 113, 0.46);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.1) inset;
}

.blog-product-media {
  display: grid;
  gap: 8px;
}

.blog-product-media > a > img {
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
}

.blog-product-card h3 {
  margin: 8px 0;
}

.blog-product-card p {
  margin-bottom: 0;
}

.blog-product-card-copy {
  min-width: 0;
}

.blog-product-card-action {
  align-self: stretch;
  border-left: 1px solid var(--line);
  display: flex;
  align-items: start;
  justify-content: center;
  padding-left: 16px;
}

.blog-product-card-action .pill-row {
  align-items: center;
  display: flex;
}

.blog-related-grid {
  display: grid;
  gap: 14px;
}

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

.update-card {
  background: color-mix(in srgb, var(--panel) 82%, transparent);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.update-card h3 {
  font-size: 1.18rem;
  line-height: 1.2;
  margin: 0;
}

.update-card p {
  color: var(--copy);
  margin-bottom: 0;
}

.section-actions {
  margin-top: 18px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  background: rgba(245, 247, 251, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--copy);
  font-size: 0.82rem;
  padding: 6px 10px;
}

.affiliate-button {
  border-radius: 8px;
  font-size: 0.84rem;
  min-height: 36px;
  padding: 0 14px;
}

.pill.positive {
  border-color: rgba(112, 240, 197, 0.36);
  color: var(--ok);
}

.pill.watch {
  border-color: rgba(255, 209, 102, 0.42);
  color: var(--warn);
}

.pill.pass {
  border-color: rgba(255, 122, 144, 0.42);
  color: var(--danger);
}

.category-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 26px;
}

.category-chip {
  background: color-mix(in srgb, var(--cyan) 9%, transparent);
  border: 1px solid color-mix(in srgb, var(--cyan) 22%, transparent);
  border-radius: 999px;
  color: var(--copy);
  font-size: 0.84rem;
  font-weight: 750;
  padding: 8px 12px;
}

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

.feature {
  border-top: 2px solid transparent;
  border-image: var(--brand-gradient) 1;
  padding-top: 18px;
}

.feature h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  margin-bottom: 0;
}

.product-page {
  margin: 0 auto;
  max-width: var(--max);
  padding: 64px 22px;
}

.product-hero {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
}

.product-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.detail-panel {
  background: var(--content-card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.detail-panel img {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  margin-bottom: 18px;
  object-fit: cover;
  width: 100%;
}

.big-score {
  align-items: baseline;
  display: flex;
  gap: 10px;
}

.big-score strong {
  color: var(--cyan);
  font-size: 3rem;
  line-height: 1;
}

.content-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.full-span {
  grid-column: 1 / -1;
}

.image-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.image-gallery img {
  aspect-ratio: 1;
  margin-bottom: 0;
}

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

.social-card {
  background: color-mix(in srgb, var(--panel) 72%, transparent);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.social-card p,
.social-row p {
  color: var(--copy);
}

.muted-copy {
  color: var(--muted);
}

.social-list {
  display: grid;
  gap: 16px;
}

.social-row {
  background: color-mix(in srgb, var(--panel) 76%, transparent);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 180px minmax(0, 1fr);
  padding: 16px;
}

.social-row img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

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

.community-card {
  background: color-mix(in srgb, var(--panel) 72%, transparent);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.community-card p {
  color: var(--copy);
  margin-bottom: 0;
}

.community-recent {
  margin-top: 22px;
}

.compact-section {
  border-top: 0;
  padding: 18px 0 28px;
}

.note-list {
  color: var(--copy);
  padding-left: 20px;
}

.note-list li + li {
  margin-top: 10px;
}

.disclosure {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 40px;
  padding-top: 20px;
}


.source-link {
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  margin-top: 14px;
  padding-top: 12px;
}

.source-link a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 32px 22px;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--copy);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--text);
}

.policy-stack {
  display: grid;
  gap: 18px;
}

.policy-stack p {
  color: var(--copy);
}

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

.pricebreak-callout article {
  background: color-mix(in srgb, var(--panel-2) 86%, transparent);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.pricebreak-callout span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricebreak-callout h3 {
  font-size: 1.2rem;
  margin: 0;
}

.pricebreak-callout p {
  margin: 0;
}

.avenue-grid {
  display: grid;
  background: #e8d5b0;
  border: 1px solid #c8a96e;
  border-radius: 12px;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
  overflow: hidden;
}

.avenue-link {
  background: #faf6ef;
  color: #1a1208;
  display: grid;
  gap: 3px;
  min-height: 74px;
  padding: 16px;
}

.avenue-link:hover {
  background: #e8d5b0;
}

.avenue-link span {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1;
}

.avenue-link small {
  color: color-mix(in srgb, #1a1208 72%, #c8a96e);
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
}

.parcela-card {
  background: #faf6ef;
  border: 1px solid #c8a96e;
  border-radius: 12px;
  box-shadow: 0 16px 42px rgba(26, 18, 8, 0.1);
  color: #1a1208;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: space-between;
  margin-top: 18px;
  padding: 18px;
}

.parcela-mark {
  align-items: center;
  display: inline-flex;
  gap: 14px;
}

.parcel-icon {
  background: #e8d5b0;
  border: 1px solid #c8a96e;
  border-radius: 50%;
  height: 64px;
  object-fit: cover;
  width: 64px;
}

.parcela-word {
  color: #1a1208;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
}

.parcela-note {
  align-self: center;
  color: color-mix(in srgb, #1a1208 78%, #c8a96e);
  font-size: 0.92rem;
  margin: 0;
}

.parcela-note a {
  color: #1a1208;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: #c8a96e;
  text-underline-offset: 3px;
}

.bor-card {
  background:
    repeating-linear-gradient(90deg, rgba(25, 24, 23, 0.04) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, rgba(229, 206, 157, 0.46), rgba(130, 105, 65, 0.18)),
    #cbb785;
  border: 2px solid #1f1d19;
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(25, 24, 23, 0.16);
  color: #191817;
  display: grid;
  gap: 20px;
  margin-top: 18px;
  padding: clamp(18px, 4vw, 32px);
}

.bor-brand-row {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
}

.bor-logo {
  background: #cbb785;
  border: 1px solid #cbb785;
  aspect-ratio: 1;
  flex: 0 0 64px;
  height: 64px;
  margin: 0;
  object-fit: cover;
  object-position: center;
  width: 64px;
}

.detail-panel .bor-logo {
  aspect-ratio: 1;
  margin: 0;
  width: 64px;
}

.bor-word {
  color: #191817;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.bor-site-link {
  color: #473b28;
  font-size: 0.9rem;
  font-weight: 850;
  justify-self: end;
  text-decoration: underline;
  text-decoration-color: #7f5f34;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.bor-feature {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr);
}

.bor-frame {
  background: #cbb785;
  border: 2px solid #1f1d19;
  border-radius: 6px;
  box-shadow: 6px 6px 0 rgba(25, 24, 23, 0.16);
  margin: 0;
  overflow: hidden;
  padding: 8px;
  position: relative;
}

.bor-frame::before {
  border: 2px solid #1f1d19;
  border-radius: 3px;
  box-shadow:
    inset 0 0 0 1px rgba(238, 216, 166, 0.22),
    inset 0 0 18px rgba(25, 24, 23, 0.16);
  content: "";
  inset: 7px;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.bor-frame img {
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.bor-copy p {
  color: #4a3d33;
  margin: 0;
}

.bor-copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  min-width: 0;
}

.bor-copy h3 {
  color: #191817;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.04;
  margin: 0;
}

.bor-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  margin-top: 24px;
  width: min(100%, 360px);
}

.bor-button {
  align-items: center;
  background: #bea577;
  border: 2px solid #191817;
  border-radius: 6px;
  color: #191817;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 10px 16px;
  text-decoration: none;
  width: fit-content;
}

.bor-button.primary {
  background: #191817;
  color: #cbb785;
  margin-top: 6px;
}

.bor-button:hover {
  box-shadow: 4px 4px 0 rgba(25, 24, 23, 0.2);
  transform: translate(-1px, -1px);
}

.inline-button {
  margin-top: 8px;
}

.cookie-notice {
  align-items: center;
  background: color-mix(in srgb, var(--bg) 96%, white 4%);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
  color: var(--copy);
  display: flex;
  gap: 16px;
  left: 50%;
  max-width: min(720px, calc(100vw - 32px));
  padding: 16px;
  position: fixed;
  transform: translateX(-50%);
  z-index: 50;
}

.cookie-notice span {
  font-size: 0.9rem;
}

.cookie-notice button {
  background: var(--brand-gradient);
  border: 0;
  border-radius: 999px;
  color: #030612;
  cursor: pointer;
  flex: 0 0 auto;
  font: inherit;
  font-weight: 850;
  min-height: 38px;
  padding: 0 16px;
}

@media (max-width: 900px) {
  .nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-search {
    max-width: none;
    min-width: 0;
  }

  .nav-menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--scanner-shadow);
    display: none;
    flex-direction: column;
    grid-column: 1 / -1;
    align-items: stretch;
    padding: 10px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px;
  }

  .hero,
  .product-hero,
  .blog-post-hero,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .scanner {
    min-height: 420px;
  }

  .product-grid,
  .update-grid,
  .feature-grid,
  .image-gallery,
  .social-grid,
  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav {
    align-items: center;
    gap: 12px;
    grid-template-columns: 1fr auto;
  }

  .site-search {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .nav-menu-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-proof,
  .pricebreak-callout,
  .blog-row,
  .blog-product-card,
  .blog-post-hero,
  .product-grid,
  .feature-grid,
  .image-gallery,
  .social-grid,
  .community-grid,
  .social-row {
    grid-template-columns: 1fr;
  }

  .blog-row-cover {
    aspect-ratio: 4 / 5;
    height: auto;
    width: 100%;
  }

  .blog-product-card-action {
    border-left: 0;
    border-top: 1px solid var(--line);
    justify-content: flex-start;
    padding-left: 0;
    padding-top: 12px;
  }

  .blog-product-card {
    justify-self: center;
  }


  .section-head,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .bor-feature,
  .bor-actions {
    grid-template-columns: 1fr;
  }

  .bor-brand-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .bor-site-link {
    grid-column: 2;
    justify-self: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .hero-actions .button {
    width: 100%;
  }

  .cookie-notice {
    align-items: stretch;
    flex-direction: column;
  }
}
