:root {
  --font-sans: Arial, Helvetica, sans-serif;
  --bg: #fbf1e4;
  --surface: rgba(255, 251, 245, 0.9);
  --surface-alt: #f2e2cb;
  --text: #241c16;
  --muted: #725f4f;
  --line: rgba(139, 97, 49, 0.18);
  --brand: #3f875f;
  --brand-dark: #24563d;
  --accent: #d56d2d;
  --accent-soft: rgba(213, 109, 45, 0.13);
  --sun: #f0b34f;
  --berry: #a94c45;
  --radius: 22px;
  --shadow: 0 10px 22px rgba(28, 20, 12, 0.06);
  --site-width: 1120px;
  --fs-body: 1rem;
  --fs-lead: 1.0625rem;
  --fs-h1: clamp(2rem, 4vw, 3.4rem);
  --fs-h2: clamp(1.55rem, 3vw, 2.3rem);
  --fs-h3: 1.2rem;
  --fs-eyebrow: 0.76rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 179, 79, 0.18), transparent 23%),
    radial-gradient(circle at top right, rgba(79, 169, 52, 0.12), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(169, 76, 69, 0.08), transparent 24%),
    linear-gradient(180deg, #fff6eb 0%, var(--bg) 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(240, 179, 79, 0.08), transparent 17%),
    radial-gradient(circle at 83% 18%, rgba(79, 169, 52, 0.08), transparent 20%),
    radial-gradient(circle at 76% 74%, rgba(213, 109, 45, 0.06), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 86px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

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

img {
  max-width: 100%;
  height: auto;
}

.site-main :where(h1, h2, h3, p, li),
.site-footer :where(h2, h3, p, li) {
  width: 100%;
  max-width: none;
  overflow-wrap: break-word;
  word-break: normal;
}

.site-shell {
  width: min(calc(100% - 2rem), var(--site-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(252, 246, 237, 0.88);
  border-bottom: 1px solid rgba(217, 205, 185, 0.55);
}

.site-header::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240, 179, 79, 0.65), rgba(79, 169, 52, 0.5), transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.6rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-link,
.brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 0;
  padding: 0.15rem 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  overflow: visible;
  filter: drop-shadow(0 6px 10px rgba(33, 87, 63, 0.18));
}

.brand-mark img {
  display: block;
  width: auto;
  max-width: 46px;
  max-height: 46px;
}

.brand .custom-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 70px;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(47, 127, 33, 0.14));
}

.brand .custom-logo-link img {
  display: block;
}

.primary-nav ul,
.primary-nav .menu-fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-toggle {
  display: none;
}

.site-main {
  min-height: 70vh;
  position: relative;
}

.site-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(240, 179, 79, 0.05), transparent 34%),
    radial-gradient(circle at top right, rgba(79, 169, 52, 0.07), transparent 26%),
    linear-gradient(180deg, transparent, rgba(169, 76, 69, 0.03));
  pointer-events: none;
  opacity: 1;
}

.hero,
.section {
  padding: 2.8rem 0;
}

.section-tight {
  padding-top: 0;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 4rem auto auto 55%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 179, 79, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.section-alt {
  background: rgba(255, 253, 248, 0.56);
  border-top: 1px solid rgba(217, 205, 185, 0.3);
  border-bottom: 1px solid rgba(217, 205, 185, 0.3);
}

.hero-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid > *,
.showcase-grid > *,
.dual-column > *,
.footer-grid > *,
.card-grid > * {
  min-width: 0;
}

.hero-grid {
  align-items: start;
}

.hero-grid > :first-child,
.hero-grid > :last-child,
.section > .site-shell > .section-heading,
.section > .site-shell > .section-intro,
.dual-column > div,
.showcase-grid > *,
.card-grid > * {
  position: relative;
}

.hero h1,
.prose h1 {
  margin: 0.35rem 0 1rem;
  font-size: var(--fs-h1);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: none;
  text-wrap: pretty;
}

.hero-text,
.lead {
  font-size: var(--fs-lead);
  color: var(--muted);
  max-width: none;
  text-wrap: pretty;
}

.hero-offer {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-offer h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-offer__summary {
  margin: 0;
  color: var(--muted);
}

.hero-panel,
.hero-offer,
.legal-banner,
.info-card,
.operator-card,
.inline-highlight,
.feature-panel,
.trend-board {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel,
.hero-offer,
.legal-banner,
.info-card,
.operator-card,
.inline-highlight,
.feature-panel,
.trend-board {
  padding: 1.4rem;
}

.info-card,
.operator-card,
.feature-panel,
.trend-board,
.legal-banner {
  position: relative;
  overflow: hidden;
}

.hero-panel::after,
.hero-offer::after,
.legal-banner::after,
.info-card::after,
.operator-card::after,
.feature-panel::after,
.trend-board::after {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.22), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
}

.info-card::before,
.operator-card::before,
.feature-panel::before,
.trend-board::before,
.legal-banner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(240, 179, 79, 0.92), rgba(213, 109, 45, 0.68), rgba(79, 169, 52, 0.66));
}

.hero-panel::after,
.hero-offer::after,
.legal-banner::after,
.info-card::after,
.operator-card::after,
.feature-panel::after,
.trend-board::after {
  content: "";
  position: absolute;
  top: -32px;
  right: -24px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 74%);
  pointer-events: none;
}

.hero-panel::before,
.hero-offer::before,
.legal-banner::before,
.ad-callout::before,
.cta-band::before {
  content: none;
}

.glass-panel {
  backdrop-filter: blur(10px);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.88), rgba(255, 248, 239, 0.76)),
    linear-gradient(135deg, rgba(240, 179, 79, 0.04), rgba(79, 169, 52, 0.05));
}

.panel-kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  color: var(--berry);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-mini-board {
  display: grid;
  gap: 0.65rem;
  margin: 0.9rem 0 1rem;
}

.mini-board-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 238, 0.82));
  position: relative;
  overflow: hidden;
}

.mini-board-row::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 14px;
  top: 50%;
  margin-top: -5px;
  border-radius: 3px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--sun), var(--accent));
  box-shadow: 0 0 0 5px rgba(213, 109, 45, 0.07);
}

.mini-board-row span,
.mini-board-row strong {
  padding-left: 0.85rem;
}

.mini-board-row span {
  color: var(--muted);
}

.mini-board-row strong {
  font-size: 0.96rem;
}

.hero-actions,
.operator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.95rem;
}

.hero-actions--stacked {
  margin-top: 0.2rem;
}

.button-hero {
  min-height: 54px;
  font-size: 1rem;
  box-shadow: 0 10px 18px rgba(36, 86, 61, 0.18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.22) 48%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.32s ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 6px 14px rgba(36, 86, 61, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(36, 86, 61, 0.26);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border: 1px solid var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
}

.button-small {
  min-height: 40px;
  padding: 0.68rem 0.95rem;
  font-size: 0.9rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--sun), var(--accent));
  box-shadow: 0 0 0 4px rgba(213, 109, 45, 0.08);
}

.section-heading {
  margin-bottom: 1.2rem;
  width: 100%;
  max-width: none;
}

.section-copy {
  margin: 0.45rem 0 0;
  color: var(--muted);
  max-width: 62ch;
  text-wrap: pretty;
}

.section-heading::after,
.section-intro::after {
  content: "";
  display: block;
  width: 88px;
  height: 3px;
  margin-top: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(240, 179, 79, 0.95), rgba(79, 169, 52, 0.72), transparent);
}

.section-heading h2 {
  margin: 0.4rem 0 0;
  font-size: var(--fs-h2);
  letter-spacing: -0.02em;
}

.section-intro {
  display: grid;
  gap: 0.65rem;
  width: 100%;
  max-width: none;
  margin-bottom: 0.85rem;
}

.section-intro h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.02em;
  max-width: none;
  text-wrap: pretty;
}

.section-intro p {
  color: var(--muted);
  max-width: none;
  text-wrap: pretty;
}

.ad-callout,
.cta-band {
  display: grid;
  gap: 1rem;
  margin-bottom: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(240, 179, 79, 0.12), rgba(255, 255, 255, 0.74) 36%, rgba(79, 169, 52, 0.09)),
    rgba(255, 252, 247, 0.9);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.legal-banner {
  display: grid;
  gap: 0.65rem;
}

.ad-callout {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.ad-callout strong,
.cta-band h2 {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.eyebrow-inline {
  display: inline-flex;
  margin-bottom: 0.45rem;
}

.ad-callout span,
.cta-band p {
  color: var(--muted);
}

.ad-callout__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.ad-callout--soft {
  margin-bottom: 0.85rem;
}

.cta-band {
  grid-template-columns: 1.1fr auto;
  align-items: center;
}

.cta-band h2 {
  font-size: 1.4rem;
  margin-top: 0.25rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.card-grid {
  display: grid;
  gap: 0.9rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.card-grid.compact-grid {
  grid-template-columns: 1fr;
}

.entry-featured-media {
  margin: 0 0 1.2rem;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 247, 236, 0.9));
}

.entry-featured-media__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.operator-card__media,
.info-card__media {
  display: block;
  margin: -1.4rem -1.4rem 1rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(255, 247, 236, 0.88));
}

.operator-card__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.info-card__media {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.operator-card__image,
.info-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.operator-card__image {
  min-height: 100%;
}

.operator-card h3,
.info-card h3,
.feature-panel h2,
.trend-item strong,
.site-footer h2,
.site-footer h3 {
  font-family: var(--font-sans);
}

.info-card,
.operator-card,
.feature-panel,
.trend-item,
.ad-callout,
.cta-band,
.hero-panel,
.hero-offer {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.info-card,
.operator-card,
.feature-panel {
  min-height: 100%;
}

.info-card p,
.operator-card p,
.feature-panel p {
  flex-grow: 1;
}

.info-card--category p,
.info-card--payment p,
.info-card--guide p,
.info-card--category-network p,
.info-card--category-archive p,
.info-card--guide-archive p,
.info-card--payment-archive p,
.operator-card p {
  min-height: 4.9em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.operator-card h3,
.info-card h3 {
  font-size: var(--fs-h3);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.score-badge {
  display: inline-flex;
  min-width: 72px;
  justify-content: center;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(10, 124, 102, 0.1);
  color: var(--brand-dark);
  font-weight: 700;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.95rem;
}

.operator-badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.metric-card {
  display: block;
  padding: 0.82rem 0.95rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 247, 235, 0.84));
  border: 1px solid var(--line);
  min-width: 0;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.metric-card::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, rgba(240, 179, 79, 0.96), rgba(79, 169, 52, 0.92));
  opacity: 0.92;
  -webkit-mask: var(--metric-icon) center / contain no-repeat;
  mask: var(--metric-icon) center / contain no-repeat;
}

.metric-card::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 7px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 179, 79, 0.09), rgba(79, 169, 52, 0.04) 70%, transparent 72%);
  pointer-events: none;
}

.metric-card--payment {
  --metric-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 7.5A2.5 2.5 0 0 1 5.5 5h13A2.5 2.5 0 0 1 21 7.5v9a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 16.5zm2.2-.8a.7.7 0 0 0-.7.7v1.2h15V7.4a.7.7 0 0 0-.7-.7zm-.7 4.2v5.6a.7.7 0 0 0 .7.7h13a.7.7 0 0 0 .7-.7v-5.6zm8.8 1.8h4.2v1.6h-4.2z'/%3E%3C/svg%3E");
}

.metric-card--decision {
  --metric-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a4.6 4.6 0 0 1 4.53 3.8l3.28.48a1 1 0 0 1 .55 1.71l-2.37 2.3.56 3.26a1 1 0 0 1-1.45 1.05L12 12.9l-3.1 1.7a1 1 0 0 1-1.45-1.05l.56-3.26-2.37-2.3a1 1 0 0 1 .55-1.7l3.28-.49A4.6 4.6 0 0 1 12 2m0 1.8a2.8 2.8 0 0 0-2.7 2.1l-.16.58a1 1 0 0 1-.8.72l-2.15.31 1.56 1.52a1 1 0 0 1 .29.88l-.37 2.14 2.03-1.1a1 1 0 0 1 .95 0l2.03 1.1-.38-2.14a1 1 0 0 1 .29-.88l1.56-1.52-2.15-.31a1 1 0 0 1-.79-.72l-.17-.59A2.8 2.8 0 0 0 12 3.8'/%3E%3Cpath fill='black' d='M10.9 16.2h2.2v5h-2.2z'/%3E%3C/svg%3E");
}

.metric-card--conversion {
  --metric-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.1 2.8a1 1 0 0 1 1.77.9l-1.02 2.02h3.75a1 1 0 0 1 .8 1.6l-3.7 5h2.14a1 1 0 0 1 .77 1.64l-6 7.2a1 1 0 0 1-1.74-.95l1.37-4.05H6.35a1 1 0 0 1-.86-1.5z'/%3E%3C/svg%3E");
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.metric-card small {
  display: block;
  margin-top: 0.45rem;
  padding-right: 2.4rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.metric-card[href] {
  cursor: pointer;
}

.metric-card[href]::selection {
  background: transparent;
}

.metric-card[href] strong {
  padding-right: 2rem;
}

.metric-card[href]::marker {
  content: "";
}

.metric-card[href]::after {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.metric-card[href]:hover,
.metric-card[href]:focus-visible {
  border-color: rgba(79, 169, 52, 0.34);
}

.card-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(139, 97, 49, 0.12);
}

.operator-actions {
  margin-top: auto;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 700;
  position: relative;
}

.text-cta::after {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(1px);
  font-size: 0.9em;
}

.promo-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.65rem 0 0.7rem;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 30px;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(213, 109, 45, 0.14);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.promo-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(213, 109, 45, 0.08);
}

.promo-badge--soft {
  background: rgba(79, 169, 52, 0.11);
  color: var(--brand-dark);
}

.showcase-grid,
.dual-column {
  display: grid;
  gap: 0.9rem;
  align-items: stretch;
}

.showcase-grid > *,
.dual-column > * {
  min-width: 0;
}

.dual-column--balanced {
  align-items: start;
}

.dual-column__stack {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-width: 0;
}

.dual-column__stack .section-heading {
  margin-bottom: 0;
}

.card-grid--guides,
.compact-grid {
  align-items: stretch;
}

.info-card:hover,
.operator-card:hover,
.feature-panel:hover,
.cta-band:hover,
.ad-callout:hover,
.metric-card:hover,
.mini-board-row:hover,
.trend-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(28, 20, 12, 0.08);
}

.feature-panel {
  position: relative;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(240, 179, 79, 0.22), rgba(213, 109, 45, 0.12));
  color: var(--berry);
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 18px rgba(213, 109, 45, 0.12);
  position: relative;
}

.icon-badge::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  border: 1px solid rgba(213, 109, 45, 0.14);
}

.feature-panel h2 {
  font-size: 1.32rem;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.feature-panel .feature-list {
  margin-top: auto;
}

.feature-list {
  margin: 0.85rem 0 0;
  padding-left: 0;
  color: var(--muted);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.3rem;
}

.feature-list li + li {
  margin-top: 0.35rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.trend-board {
  display: grid;
  gap: 0.7rem;
}

.trend-item {
  display: flex;
  flex-direction: column;
  padding: 0.9rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 247, 236, 0.82));
  border: 1px solid var(--line);
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.trend-item::before {
  content: none;
}

.trend-item strong {
  display: block;
  margin: 0.25rem 0 0.3rem;
  font-size: 1.04rem;
  position: relative;
  padding-right: 2.2rem;
}

.trend-item .text-cta {
  margin-top: auto;
}

.trend-label {
  color: var(--berry);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.operator-meta {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.operator-meta li + li {
  margin-top: 0.35rem;
}

.affiliate-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.86rem;
  padding-left: 1rem;
  position: relative;
}

.affiliate-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun), var(--accent));
}

.prose {
  max-width: none;
  width: 100%;
}

.single-entry-shell {
  display: grid;
  gap: 1.4rem;
}

.single-entry {
  min-width: 0;
  display: grid;
  gap: 1.35rem;
}

.single-entry__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 352px;
  gap: clamp(1.1rem, 2vw, 2rem);
  align-items: start;
}

.single-entry__main {
  min-width: 0;
  display: grid;
  gap: 1rem;
}

.single-entry__rail {
  min-width: 0;
}

.single-rail {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 1rem;
  width: 100%;
}

.single-rail__card {
  padding: 1.1rem 1.05rem;
  border: 1px solid rgba(205, 170, 120, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 251, 245, 0.98), rgba(255, 247, 234, 0.82) 48%, rgba(223, 240, 211, 0.34)),
    rgba(255, 252, 247, 0.92);
  box-shadow: 0 18px 48px rgba(36, 24, 11, 0.08);
  position: relative;
  overflow: hidden;
}

.single-rail__card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(240, 179, 79, 0.96), rgba(79, 169, 52, 0.76), transparent);
}

.single-rail__card h2 {
  margin: 0.2rem 0 0.55rem;
  font-size: 1.1rem;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.single-rail__intro {
  margin: 0 0 0.9rem;
  font-size: 0.94rem;
}

.single-rail__card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.single-rail__bonus {
  color: var(--brand-dark) !important;
  font-weight: 700;
}

.single-rail__meta,
.single-rail__links {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.single-rail__meta {
  display: grid;
  gap: 0.45rem;
}

.single-rail__meta li {
  color: #3b352c;
  font-size: 0.94rem;
}

.single-rail__actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.95rem;
}

.single-rail__actions .button {
  width: 100%;
  justify-content: center;
}

.single-rail__disclosure {
  margin-top: 0.85rem;
  font-size: 0.82rem;
}

.single-rail__links {
  display: grid;
  gap: 0.65rem;
}

.single-rail__links li a {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(205, 170, 120, 0.16);
  box-shadow: 0 10px 24px rgba(28, 20, 12, 0.04);
}

.single-rail__links li a strong {
  color: var(--brand-dark);
  line-height: 1.2;
}

.single-rail__links li a span {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.single-rail__links li a small {
  color: #5e574d;
  font-size: 0.88rem;
  line-height: 1.45;
}

.single-rail__more {
  margin-top: 0.95rem;
}

.info-card--related .promo-badge {
  align-self: flex-start;
  margin-bottom: 0.45rem;
}

.info-card--related h3 {
  margin-top: 0;
}

.info-card--related p {
  min-height: 4.8em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.ylp-related-links-footer {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.single-entry--category {
  gap: 1.35rem;
}

.prose--entry {
  display: block;
  width: 100%;
  max-width: none;
}

.prose--entry > * {
  min-width: 0;
}

.prose--entry > :first-child {
  margin-top: 0;
}

.prose--entry > :last-child {
  margin-bottom: 0;
}

.prose h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.prose h3 {
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.prose p,
.prose li {
  color: #322e28;
  font-size: 1rem;
  text-wrap: pretty;
}

.prose--entry h1 {
  margin: 0.15rem 0 1rem;
  max-width: 15ch;
}

.prose--entry h2 {
  margin: 1.35rem 0 0.5rem;
  line-height: 1.12;
  max-width: none;
}

.prose--entry h3 {
  margin: 1rem 0 0.4rem;
  line-height: 1.2;
  max-width: none;
}

.prose--entry p {
  margin: 0 0 0.8rem;
  max-width: none;
  line-height: 1.46;
}

.prose--entry ul,
.prose--entry ol {
  margin: 0.15rem 0 0.9rem;
  max-width: none;
  line-height: 1.44;
}

.prose--entry li {
  margin-bottom: 0.28rem;
}

.prose a {
  color: var(--brand-dark);
  text-decoration: underline;
}

.prose--entry .ad-callout,
.prose--entry .ylp-reusable-block,
.prose--entry .inline-highlight {
  margin: 0.4rem 0;
  max-width: none;
}

.prose--entry ul,
.prose--entry ol {
  padding-left: 1.25rem;
}

.prose--entry ul li,
.prose--entry ol li {
  margin-bottom: 0.45rem;
}

.card-grid:empty,
.prose--entry > .card-grid:empty,
.single-entry > .card-grid:empty,
.ylp-comparison-builder:empty {
  display: none;
}

.ylp-pagination {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.7rem;
  justify-items: start;
}

.ylp-pagination__label {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ylp-pagination__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ylp-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(205, 170, 120, 0.3);
  box-shadow: 0 10px 22px rgba(28, 20, 12, 0.05);
  color: var(--brand-dark);
  font-weight: 700;
}

.ylp-pagination__link.is-active {
  background: linear-gradient(135deg, rgba(63, 135, 95, 0.14), rgba(36, 86, 61, 0.18));
  border-color: rgba(63, 135, 95, 0.4);
  color: var(--brand-dark);
}

.ylp-pagination__link--all {
  padding-inline: 1.1rem;
}

.section-category-network {
  margin-top: 0.35rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ylp-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 253, 249, 0.95);
  overflow: hidden;
  position: relative;
}

.ylp-table th,
.ylp-table td {
  padding: 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
}

.ylp-table th {
  background: linear-gradient(180deg, rgba(240, 179, 79, 0.16), rgba(213, 109, 45, 0.08));
  color: var(--brand-dark);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ylp-breadcrumbs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 2.25rem 0 1.8rem;
  background: #202927;
  color: #f7f3ea;
  position: relative;
  overflow: hidden;
}

.footer-panel {
  width: 100%;
}

.site-footer::before {
  content: none;
}

.site-footer .footer-grid {
  width: 100%;
  margin: 0 auto;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: start;
  padding-bottom: 1.2rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.footer-column p,
.footer-column li,
.footer-column a {
  max-width: none;
}

.footer-meta {
  display: flex;
  justify-content: center;
  margin-top: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-meta p {
  margin: 0;
  text-align: center;
  color: rgba(247, 243, 234, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer h2,
.site-footer h3 {
  margin-top: 0;
  margin-bottom: 0.2rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .menu,
.site-footer .menu-fallback {
  display: grid;
  gap: 0.85rem;
}

.site-footer p,
.site-footer li {
  line-height: 1.5;
}

.site-footer p {
  margin: 0.35rem 0 0;
}

@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: stretch;
  }

  .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dual-column {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

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

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

@media (max-width: 959px) {
  .header-inner {
    gap: 0.75rem;
  }

  .primary-nav ul,
  .primary-nav .menu-fallback {
    gap: 0.75rem;
    font-size: 0.96rem;
  }

  .hero-grid,
  .dual-column {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 1.25rem;
  }

  .hero-offer {
    order: 2;
  }

  .hero-panel,
  .hero-offer,
  .feature-panel,
  .info-card,
  .operator-card,
  .legal-banner,
  .trend-board {
    padding: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .single-entry__grid {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 340px);
    gap: 1.25rem;
  }

  .prose--entry h1,
  .prose--entry h2,
  .prose--entry h3,
  .section-heading h2,
  .section-intro h2 {
    max-width: none;
  }
}

@media (max-width: 759px) {
  .site-shell {
    width: min(calc(100% - 1.25rem), var(--site-width));
  }

  .hero,
  .section {
    padding: 2rem 0;
  }

  .header-inner {
    padding: 0.7rem 0;
    gap: 0.7rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.65rem 0.95rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    max-height: calc(100vh - 90px);
    overflow: auto;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul,
  .primary-nav .menu-fallback {
    flex-direction: column;
    gap: 0.35rem;
  }

  .primary-nav a {
    display: block;
    padding: 0.72rem 0.2rem;
    font-size: 1rem;
  }

  .hero h1,
  .prose h1 {
    max-width: none;
  }

  .hero-grid,
  .footer-grid,
  .showcase-grid,
  .dual-column {
    gap: 1rem;
  }

  .section-heading,
  .section-intro {
    margin-bottom: 0.95rem;
  }

  .section-heading::after,
  .section-intro::after {
    width: 64px;
    margin-top: 0.7rem;
  }

  .section-copy {
    max-width: none;
  }

  body::before {
    opacity: 0.32;
  }

  .brand-mark {
    width: 41px;
    height: 41px;
    flex-basis: 41px;
  }

  .brand-mark img {
    max-width: 41px;
    max-height: 41px;
  }

  .brand .custom-logo {
    max-width: 62px;
    max-height: 50px;
  }

  .ad-callout,
  .cta-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-actions,
  .operator-actions,
  .cta-band__actions,
  .ad-callout__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .operator-actions .button,
  .cta-band__actions .button,
  .ad-callout__actions .button {
    width: 100%;
  }

  .hero-panel::before,
  .hero-offer::before,
  .legal-banner::before,
  .ad-callout::before,
  .cta-band::before {
    content: none;
  }

  .ad-callout__actions {
    justify-content: flex-start;
  }

  .single-entry__grid {
    grid-template-columns: 1fr;
  }

  .single-rail {
    position: static;
    gap: 0.8rem;
  }

  .single-entry {
    gap: 1rem;
  }

  .prose--entry {
    max-width: none;
  }

  .prose--entry h1,
  .prose--entry h2,
  .prose--entry h3,
  .prose--entry p,
  .prose--entry ul,
  .prose--entry ol {
    max-width: none;
  }

  .prose--entry h1 {
    margin-bottom: 0.8rem;
  }

  .prose--entry h2 {
    margin: 1.15rem 0 0.45rem;
  }

  .prose--entry h3 {
    margin: 0.9rem 0 0.35rem;
  }

  .prose--entry p {
    line-height: 1.55;
  }

  .prose--entry ul,
  .prose--entry ol {
    padding-left: 1.1rem;
  }

  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .metric-card {
    min-width: 0;
  }

  .mini-board-row,
  .operator-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .card-cta-row .button,
  .card-cta-row .text-cta {
    width: 100%;
  }

  .ylp-related-links-footer {
    flex-direction: column;
  }

  .text-cta {
    justify-content: center;
  }

  .ylp-breadcrumbs {
    gap: 0.35rem;
    row-gap: 0.25rem;
    font-size: 0.84rem;
    margin-bottom: 0.75rem;
  }

  .ylp-table th,
  .ylp-table td {
    padding: 0.75rem;
    font-size: 0.92rem;
  }

}

@media (max-width: 479px) {
  :root {
    --fs-h1: 1.8rem;
    --fs-h2: 1.42rem;
    --fs-h3: 1.08rem;
    --fs-lead: 1rem;
  }

  .header-inner {
    padding: 0.85rem 0;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
    flex-basis: 37px;
  }

  .brand-mark img {
    max-width: 37px;
    max-height: 37px;
  }

  .brand .custom-logo {
    max-width: 58px;
    max-height: 46px;
  }

  .site-shell {
    width: min(calc(100% - 1rem), var(--site-width));
  }

  .single-rail__card {
    padding: 1rem;
    border-radius: 18px;
  }

  .metric-card {
    min-width: 0;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-offer,
  .legal-banner,
  .info-card,
  .operator-card,
  .inline-highlight,
  .feature-panel,
  .trend-board {
    padding: 1.1rem;
  }

  .operator-card__media {
    margin: -1.1rem -1.1rem 0.9rem;
  }

  .button {
    width: 100%;
  }

  .cta-band__actions,
  .operator-actions {
    width: 100%;
  }

  .card-cta-row .button,
  .card-cta-row .text-cta {
    width: 100%;
  }

  .hero-actions,
  .operator-actions {
    gap: 0.65rem;
  }

  .single-rail__links li a {
    padding: 0.72rem 0.8rem;
  }

  .site-main::before {
    opacity: 0.5;
  }
}

.ylp-product-stack {
  display: grid;
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.ylp-reusable-block,
.ylp-comparison-builder,
.review-builder,
.author-box,
.error-404-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 251, 245, 0.95));
  border: 1px solid rgba(205, 170, 120, 0.26);
  border-radius: 28px;
  box-shadow: 0 16px 32px rgba(77, 50, 18, 0.06);
  padding: 1.4rem;
}

.ylp-reusable-block h2,
.ylp-comparison-builder h2,
.review-builder h2,
.author-box h2,
.error-404-panel h1 {
  margin-bottom: 0.75rem;
}

.ylp-reusable-block__list,
.review-builder ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
}

.ylp-reusable-block__list li,
.review-builder li {
  margin-bottom: 0.45rem;
}

.ylp-faq-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
}

.ylp-faq-item {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(205, 170, 120, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.ylp-faq-item h3,
.ylp-faq-item h4 {
  margin-bottom: 0.45rem;
}

.review-builder__cta {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
}

.author-box {
  margin-top: 1.35rem;
}

.author-box__header {
  display: grid;
  gap: 0.5rem;
}

.author-box__summary {
  color: var(--muted);
  max-width: 68ch;
}

.author-box__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.95rem;
}

.author-box__chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 247, 235, 0.94);
  border: 1px solid rgba(205, 170, 120, 0.24);
  color: var(--brand-dark);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.author-box__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem 1.4rem;
  margin-top: 1rem;
  align-items: start;
}

.author-box__fact {
  padding: 1rem 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(205, 170, 120, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.author-box__fact strong {
  display: block;
  margin-bottom: 0.45rem;
}

.author-box__role,
.author-box__note {
  color: var(--muted);
}

.author-box__note {
  margin-top: 1rem;
  max-width: none;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 247, 235, 0.85);
  border: 1px solid rgba(205, 170, 120, 0.18);
}

.ylp-suggestions-404 {
  margin-top: 1.5rem;
}

@media (max-width: 759px) {
  .author-box__grid {
    grid-template-columns: 1fr;
  }
}
