:root {
  --bg: #ecf2f5;
  --bg-warm: #f6efe7;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-soft: #f4f8fa;
  --ink: #223041;
  --ink-soft: #5a6778;
  --headline: #101826;
  --accent: #ec6b4f;
  --accent-dark: #b64738;
  --accent-soft: #ffe1d8;
  --secondary: #0f766e;
  --secondary-soft: #d8f3ef;
  --border: rgba(16, 24, 38, 0.08);
  --shadow: 0 24px 70px rgba(11, 20, 35, 0.1);
  --shadow-soft: 0 12px 30px rgba(11, 20, 35, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --reading-width: 820px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(236, 107, 79, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.18), transparent 24%),
    linear-gradient(180deg, #eef5f7 0%, #f4f6f5 42%, #fbf7f2 100%);
  font-family: "Manrope", "Segoe UI Variable", "Segoe UI", sans-serif;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

button,
input,
textarea {
  font: inherit;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: 4px;
  background: transparent;
  pointer-events: none;
}

.page-progress__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ea580c, var(--secondary));
  box-shadow: 0 0 18px rgba(180, 83, 9, 0.4);
  transition: width 0.12s ease-out;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(20px);
  background: rgba(246, 250, 251, 0.8);
  border-bottom: 1px solid rgba(16, 24, 38, 0.08);
}

.site-shell,
.site-footer__shell,
.article-wrap,
.page-wrap,
.utility-wrap {
  width: min(calc(100% - 28px), var(--max-width));
  margin: 0 auto;
}

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

.site-header__shell {
  display: grid;
  gap: 18px;
  padding: 14px 0;
}

.site-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-header__actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.site-header__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(16, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--headline);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.site-header__toggle {
  cursor: pointer;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--headline);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fffaf5;
  background: linear-gradient(135deg, var(--accent), #ea580c);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.brand-copy strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand-copy span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a,
.site-nav button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  text-decoration: none;
}

.site-nav .site-nav__cta {
  background: linear-gradient(135deg, var(--headline), #1d314f);
  color: #fff8ef;
  border-color: var(--headline);
}

.site-main {
  padding: 26px 0 60px;
}

.promo-top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto 10px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 24, 38, 0.08);
  background: #050607;
  box-shadow: var(--shadow);
}

.promo-top__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 296px;
  padding: 6px 0 0 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(236, 107, 79, 0.18), transparent 32%),
    linear-gradient(180deg, #f7edf0 0%, #f4d8de 100%);
}

.promo-top__image {
  width: 100%;
  height: 100%;
  max-height: 296px;
  object-fit: contain;
  object-position: center center;
}

.promo-top__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.98), rgba(18, 20, 27, 0.98));
  color: #fffdf8;
}

.promo-top__content > * {
  margin: 0;
}

.promo-top__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffe37a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promo-top__headline {
  color: #fffdf8;
  font-size: clamp(1.42rem, 2.45vw, 2.22rem);
  line-height: 1.08;
  max-width: none;
}

.promo-top__copy {
  max-width: 27ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.45;
}

.promo-top__cta {
  width: fit-content;
  min-width: 180px;
  justify-content: center;
  margin-top: 4px;
  animation: promoPulse 2.2s ease-in-out infinite;
  transform-origin: center;
}

.promo-top__cta:hover,
.promo-top__cta:focus-visible {
  animation-play-state: paused;
}

.chat-next-card {
  margin: 16px 0 6px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 24, 38, 0.08);
  background: linear-gradient(135deg, rgba(16, 24, 38, 0.96), rgba(23, 52, 77, 0.94));
  box-shadow: var(--shadow-soft);
}

.chat-next-card__button {
  width: 100%;
  justify-content: center;
}

.hero-card,
.page-card,
.split-card,
.feature-card,
.article-card,
.faq-card,
.ad-card,
.policy-card,
.contact-card,
.search-card,
.offline-card,
.profile-card,
.stats-card,
.list-card,
.table-card,
.sitemap-card,
.popup-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-card,
.page-card,
.split-card,
.feature-card,
.policy-card,
.contact-card,
.search-card,
.offline-card,
.profile-card,
.stats-card,
.list-card,
.table-card,
.sitemap-card {
  overflow: hidden;
}

.hero-card {
  position: relative;
  padding: 36px;
  background:
    radial-gradient(circle at 82% 12%, rgba(15, 118, 110, 0.16), transparent 24%),
    radial-gradient(circle at 8% 12%, rgba(236, 107, 79, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 250, 0.96));
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 83, 9, 0.2), transparent 70%);
  pointer-events: none;
}

.eyebrow,
.chip,
.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(124, 45, 18, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
h4 {
  color: var(--headline);
  margin: 0;
  line-height: 1.12;
  font-family: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  max-width: 12ch;
  margin-top: 18px;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

h4 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

p {
  margin: 0 0 14px;
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-card > * + *,
.page-card > * + *,
.policy-card > * + *,
.contact-card > * + *,
.search-card > * + *,
.offline-card > * + *,
.profile-card > * + *,
.stats-card > * + *,
.list-card > * + *,
.table-card > * + *,
.sitemap-card > * + *,
.mini-card > * + *,
.toc-card > * + *,
.share-card > * + *,
.inline-note > * + * {
  margin-top: 12px;
}

.inline-code {
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.94rem;
}

.lede,
.muted {
  color: var(--ink-soft);
}

.lede {
  max-width: 70ch;
  font-size: 1.06rem;
}

.hero-grid,
.insight-grid,
.feature-grid,
.faq-grid,
.footer-grid,
.stats-grid,
.link-grid,
.related-grid,
.legal-grid,
.team-grid,
.social-grid {
  display: grid;
  gap: 18px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-rail,
.mini-card,
.toc-card,
.share-card,
.inline-note {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(78, 58, 32, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero-points article {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(78, 58, 32, 0.08);
  background: rgba(255, 251, 244, 0.88);
}

.hero-points strong,
.quick-list strong,
.meta-list strong,
.faq-card strong,
.policy-card strong {
  display: block;
  margin-bottom: 6px;
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(124, 45, 18, 0.12);
  background: #fff8ef;
  color: var(--headline);
  cursor: pointer;
  animation: floatHint 2.8s ease-in-out infinite;
}

@keyframes floatHint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.content-stack {
  display: grid;
  gap: 24px;
  margin-top: 26px;
}

.page-card,
.policy-card,
.contact-card,
.search-card,
.offline-card,
.profile-card,
.stats-card,
.list-card,
.table-card,
.sitemap-card {
  padding: 30px;
}

.split-card {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
}

.split-card__content,
.split-card__side {
  padding: 28px;
}

.split-card__side {
  background: linear-gradient(180deg, rgba(255, 249, 240, 0.98), rgba(246, 237, 220, 0.98));
  border-left: 1px solid rgba(78, 58, 32, 0.08);
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  padding: 22px;
}

.table-card {
  padding: 18px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(78, 58, 32, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(78, 58, 32, 0.08);
}

th {
  background: rgba(180, 83, 9, 0.08);
  color: var(--accent-dark);
  font-size: 0.92rem;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.ad-card {
  padding: 18px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(243, 238, 228, 0.96));
}

.ad-card__label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 36, 48, 0.08);
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  margin-bottom: 12px;
}

.ad-card__slot {
  min-height: 120px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(78, 58, 32, 0.22);
  background:
    linear-gradient(135deg, rgba(180, 83, 9, 0.06), rgba(15, 118, 110, 0.08)),
    #fff;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ink-soft);
  padding: 20px;
}

.ad-card--network {
  margin: 24px 0;
}

.ad-card__slot--network {
  min-height: 130px;
  max-width: 100%;
  overflow: hidden;
}

.ad-card__slot--network[data-loaded="true"] {
  border-style: solid;
  background: #fff;
}

.ad-card__slot--network > div,
.ad-card__slot--network iframe {
  max-width: 100% !important;
}

.ad-card__slot--network[data-loaded="pending"]::before {
  content: "Loading ad...";
  color: var(--ink-soft);
  font-weight: 700;
}

.ad-card__slot--network.is-fallback::before {
  content: none;
}

.inline-ad__fallback {
  display: grid;
  gap: 12px;
  width: 100%;
  text-align: left;
}

.inline-ad__title strong {
  display: block;
  color: var(--headline);
  margin-top: 6px;
}

.inline-ad__tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(180, 83, 9, 0.1);
  color: var(--accent-dark);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inline-ad__routes {
  display: grid;
  gap: 10px;
}

.inline-ad__route {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(78, 58, 32, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--headline);
  font-weight: 700;
}

.inline-ad__route--primary {
  background: var(--headline);
  color: #fff8ef;
}

.promo-card {
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(0, 0.85fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 24, 38, 0.08);
  background: linear-gradient(135deg, rgba(16, 24, 38, 0.98), rgba(15, 118, 110, 0.92));
  box-shadow: var(--shadow);
}

.promo-card__media {
  position: relative;
}

.promo-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 24, 38, 0.04), rgba(16, 24, 38, 0.28));
}

.promo-card__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
}

.promo-card__content {
  padding: 28px;
  color: rgba(255, 248, 239, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-card__content h2 {
  color: #fffdf8;
  margin-top: 16px;
}

.promo-card__content .lede {
  color: rgba(255, 248, 239, 0.8);
  max-width: 46ch;
}

.promo-card .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff8ef;
}

.yuva-sticky-wrap {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 8px;
  z-index: 130;
  width: min(calc(100% - 16px), 344px);
  transform: translate(-50%, 150%);
  pointer-events: none;
  transition: transform 0.24s ease;
}

.yuva-sticky-wrap.is-visible {
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.yuva-sticky-inner {
  position: relative;
}

.yuva-sticky-wrap .ad-card {
  margin: 0;
  padding: 8px 10px 10px;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(11, 20, 35, 0.12);
}

.yuva-sticky-wrap .ad-card__label {
  margin-bottom: 6px;
  font-size: 0.58rem;
}

.yuva-sticky-wrap .ad-card__slot--network {
  min-height: 54px;
  padding: 6px;
}

.yuva-sticky-close {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 36, 48, 0.9);
  color: #fff8ef;
  cursor: pointer;
  z-index: 2;
  font-weight: 700;
}

.yuva-sticky-close[disabled] {
  cursor: not-allowed;
  opacity: 0.72;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  align-items: start;
}

.article-card {
  padding: 30px;
}

.article-prose {
  max-width: var(--reading-width);
}

.article-prose > * + * {
  margin-top: 18px;
}

.article-prose h2 {
  margin-top: 28px;
}

.article-prose ul,
.article-prose ol,
.policy-card ul,
.page-card ul,
.profile-card ul,
.search-card ul,
.offline-card ul {
  margin: 0;
  padding-left: 20px;
}

.article-prose li,
.policy-card li,
.page-card li,
.profile-card li,
.search-card li,
.offline-card li {
  margin-bottom: 8px;
}

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

.quick-list article,
.faq-card,
.stats-card,
.list-card,
.related-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(78, 58, 32, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.toc-list,
.meta-list {
  display: grid;
  gap: 10px;
}

.toc-list a,
.meta-list span {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(78, 58, 32, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--ink-soft);
}

.breadcrumbs span[aria-current="page"] {
  color: var(--headline);
  font-weight: 700;
}

.sticky-rail {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.share-list {
  display: grid;
  gap: 10px;
}

.share-button,
.button-link,
.search-form button,
.contact-form button,
.gate button,
.offline-button,
.popup-card__actions a,
.popup-card__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--headline), #1e3556);
  color: #fff8ef;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(16, 24, 38, 0.14);
}

.share-button--ghost,
.button-link--ghost,
.popup-card__actions button {
  border-color: rgba(78, 58, 32, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.gate {
  margin: 28px 0;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(180, 83, 9, 0.18);
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.98), rgba(251, 240, 224, 0.96));
}

[data-gated-article].is-gated [data-gated-section] {
  display: none;
}

[data-gated-article]:not(.is-gated) [data-continue-gate] {
  display: none;
}

.related-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.related-card h3 {
  font-size: 1.06rem;
}

.related-card p {
  color: var(--ink-soft);
  margin-bottom: 12px;
}

@keyframes promoPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 12px 28px rgba(16, 24, 38, 0.14);
  }
  50% {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 18px 34px rgba(236, 107, 79, 0.28);
  }
}

.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.faq-card p:last-child,
.feature-card p:last-child,
.policy-card p:last-child,
.stats-card p:last-child,
.list-card p:last-child,
.mini-card p:last-child {
  margin-bottom: 0;
}

.legal-grid,
.team-grid,
.stats-grid,
.link-grid,
.social-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
}

.contact-form,
.search-form {
  display: grid;
  gap: 14px;
}

.contact-form label,
.search-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.search-form input {
  width: 100%;
  border: 1px solid rgba(78, 58, 32, 0.16);
  border-radius: 14px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.86);
}

.author-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(78, 58, 32, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

.author-card img,
.team-card img,
.profile-card img {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid rgba(78, 58, 32, 0.12);
}

.team-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(78, 58, 32, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

.search-results {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.search-result {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(78, 58, 32, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.search-result__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.popular-links,
.sitemap-links {
  display: grid;
  gap: 12px;
}

.popular-links a,
.sitemap-links a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(78, 58, 32, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 100;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top button {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--headline);
  color: #fff8ef;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.site-footer {
  padding: 0 0 42px;
}

.site-footer__shell {
  padding: 28px 30px;
  border-radius: var(--radius-xl);
  background: rgba(24, 29, 37, 0.96);
  color: rgba(255, 248, 239, 0.82);
  box-shadow: var(--shadow);
}

.site-footer__shell a {
  color: #fff8ef;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer-list {
  display: grid;
  gap: 10px;
}

.exit-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(17, 24, 39, 0.55);
  z-index: 140;
}

.exit-popup.is-visible {
  display: flex;
}

.popup-card {
  max-width: 480px;
  padding: 28px;
}

.popup-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 960px) {
  .promo-top,
  .promo-card,
  .hero-grid,
  .split-card,
  .article-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-card__side {
    border-left: 0;
    border-top: 1px solid rgba(78, 58, 32, 0.08);
  }

  .sticky-rail {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-main {
    padding-top: 18px;
  }

  .site-shell,
  .site-header__shell,
  .site-footer__shell,
  .article-wrap,
  .page-wrap,
  .utility-wrap {
    width: min(calc(100% - 18px), var(--max-width));
  }

  .hero-card,
  .page-card,
  .policy-card,
  .contact-card,
  .search-card,
  .offline-card,
  .profile-card,
  .stats-card,
  .list-card,
  .table-card,
  .sitemap-card,
  .article-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .content-stack {
    gap: 18px;
  }

  .article-layout {
    gap: 16px;
  }

  .ad-card--network {
    margin: 18px 0;
  }

  .promo-top {
    max-width: none;
    margin-bottom: 10px;
    border-radius: 22px;
    grid-template-columns: 1fr;
  }

  .promo-top__media {
    min-height: 224px;
    padding: 4px 0 0;
  }

  .promo-top__image {
    max-height: 224px;
    object-position: center center;
  }

  .promo-top__content {
    padding: 16px 15px 16px;
    gap: 6px;
  }

  .promo-top__headline {
    max-width: none;
    font-size: clamp(1.34rem, 6.4vw, 1.92rem);
  }

  .promo-top__copy {
    max-width: none;
    font-size: 0.88rem;
  }

  .promo-top__cta {
    width: 100%;
    justify-content: center;
  }

  .chat-next-card {
    margin: 16px 0 6px;
    padding: 16px;
  }

  .promo-card__content {
    padding: 22px 18px 24px;
  }

  .promo-card__media img {
    min-height: 300px;
  }

  .site-header__shell {
    gap: 12px;
  }

  .brand-copy span {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .site-header__actions {
    display: inline-flex;
  }

  .site-nav {
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 4px 0 0;
  }

  .site-header.is-nav-open .site-nav {
    display: grid;
  }

  .site-nav a,
  .site-nav button {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
    border-radius: 16px;
    white-space: normal;
  }

  .author-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-to-top {
    right: 14px;
    bottom: 88px;
  }

  .yuva-sticky-wrap {
    width: min(calc(100% - 12px), 328px);
  }

  .yuva-sticky-wrap .ad-card {
    padding: 7px 8px 8px;
  }

  .yuva-sticky-wrap .ad-card__label {
    display: none;
  }

  .ad-card__slot,
  .ad-card__slot--network {
    min-width: 0;
  }
}
