@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0f0f0f;
  --bg-soft: #171717;
  --ink: #111111;
  --muted: #6b6b6b;
  --line: rgba(255, 255, 255, 0.18);
  --white: #ffffff;
  --nav: rgba(28, 28, 28, 0.92);
  --sand: #c4a484;
  --sky: #9eb8d0;
  --font: "Outfit", "Segoe UI", sans-serif;
  --container: 1240px;
  --header-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #f3f1ee;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 1.5rem;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), padding 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(14px);
  padding-block: 0.75rem;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
}

.brand__mark {
  width: 34px;
  height: 34px;
  background: var(--white);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.brand__text {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: var(--nav);
  color: var(--white);
  padding: 0.55rem 0.75rem 0.55rem 1.15rem;
  backdrop-filter: blur(10px);
}

.nav-pill a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  position: relative;
  transition: color 0.25s;
}

.nav-pill a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-pill a:hover,
.nav-pill a.is-active {
  color: var(--white);
}

.nav-pill a:hover::after,
.nav-pill a.is-active::after {
  transform: scaleX(1);
}

.nav-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 0.35rem 0 0.55rem;
}

.search-btn {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.search-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: #111;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem 1.35rem;
  border: 0;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease);
  white-space: nowrap;
}

.cta-btn:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
}

.search-panel {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  z-index: 120;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.search-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.search-panel__box {
  width: min(92vw, 640px);
  position: relative;
}

.search-panel input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-size: clamp(1.4rem, 4vw, 2rem);
  padding: 0.8rem 3rem 0.8rem 0;
  outline: none;
}

.search-panel__close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

mark.search-hit {
  background: #ffe08a;
  color: #111;
  padding: 0.05em 0.12em;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

mark.search-hit--focus {
  background: #ffd24d;
  animation: hitPulse 1.1s ease;
}

@keyframes hitPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 210, 77, 0.85);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 210, 77, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 210, 77, 0);
  }
}

.search-empty-note {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%) translateY(12px);
  background: #111;
  color: #fff;
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  z-index: 220;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease);
  pointer-events: none;
  max-width: min(92vw, 420px);
  text-align: center;
}

.search-empty-note.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #1a1a1a;
}

.hero__media {
  position: absolute;
  inset: -8% 0 0 0;
  width: 100%;
  height: 108%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 2.4s var(--ease), opacity 1.2s ease;
  opacity: 0.85;
  filter: saturate(1.05) contrast(1.05);
}

.hero__media.is-loaded {
  opacity: 1;
  transform: scale(1.08);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto 4.5rem;
}

.hero__title {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.4rem, 6.2vw, 5.4rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  animation: rise 1s var(--ease) both;
}

.page-hero {
  min-height: 58vh;
}

.page-hero--plain {
  background:
    linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 55%, #242424 100%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 45%);
  min-height: 42vh;
}

.page-hero .hero__content {
  margin-bottom: 3rem;
}

.page-hero .hero__title {
  max-width: 18ch;
  font-size: clamp(2rem, 5vw, 4rem);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

.seo-block {
  background: #fff;
  color: #111;
}

.seo-marquee {
  overflow: hidden;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background: #fff;
  padding: 0.85rem 0;
}

.seo-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 1.1rem;
  animation: marquee 28s linear infinite;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111;
  white-space: nowrap;
}

.seo-marquee__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #111;
  flex-shrink: 0;
}

.seo-info {
  padding: clamp(3.5rem, 8vw, 6.2rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}

.seo-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.seo-info h2 {
  margin: 0 0 1.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seo-info p {
  margin: 0;
  color: #6a6a6a;
  font-size: 0.98rem;
  line-height: 1.75;
  font-weight: 400;
}

.seo-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0.2rem;
}

.seo-stat__number {
  margin: 0;
  font-size: clamp(6.5rem, 12vw, 9.5rem);
  line-height: 0.8;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #111;
}

.seo-stat__plus {
  display: block;
  margin: 0.15rem 0 0.85rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

.seo-stat__caption {
  margin: 0;
  max-width: 16ch;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
  line-height: 1.45;
}

.seo-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.seo-highlight__media {
  overflow: hidden;
  min-height: 420px;
  background: #1a1a1a;
}

.seo-highlight__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.seo-highlight__quote {
  margin: 0;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.seo-highlight__quote p {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.02em;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-marquee__track {
    animation: none;
  }
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section--dark {
  background: var(--bg);
  color: var(--white);
}

.section--cream {
  background: #f3f1ee;
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 2.5rem;
  align-items: end;
}

.section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.section__title {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 750;
  max-width: 16ch;
}

.section__lead {
  margin: 0;
  max-width: 38ch;
  color: var(--muted);
}

.featured-reading {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.featured-reading__main .section__title {
  margin-bottom: 1.75rem;
}

.featured-reading__aside {
  padding-top: clamp(2.4rem, 4vw, 3.6rem);
  max-width: 42ch;
}

.featured-reading__lead {
  margin: 0 0 1.1rem;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 600;
}

.featured-reading__aside p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.65;
}

.featured-reading__points {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.featured-reading__points li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.45;
}

.featured-reading__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--text);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.article-grid--single {
  grid-template-columns: minmax(0, 420px);
}

.article-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  color: inherit;
  transition: transform 0.45s var(--ease);
}

.article-card:hover {
  transform: translateY(-6px);
}

.article-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #222;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.article-card:hover .article-card__media img {
  transform: scale(1.06);
}

.article-card__body {
  padding: 1.25rem 0 0;
}

.article-card__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.article-card__title {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
}

.article-card__excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.article-card__link {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.article-card__link::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.article-card:hover .article-card__link::after {
  transform: translateX(4px);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.split__media {
  overflow: hidden;
  min-height: 420px;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.split__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.split__copy p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}

.btn--dark {
  background: #111;
  color: #fff;
}

.btn--dark:hover {
  background: #000;
  transform: translateY(-1px);
}

.btn--line {
  background: transparent;
  border-color: #111;
  color: #111;
}

.btn--line:hover {
  background: #111;
  color: #fff;
}

.btn--line-light {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn--line-light:hover {
  background: #fff;
  color: #111;
}

.btn--light {
  background: #fff;
  color: #111;
}

.site-footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.82);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.62);
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.25s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 0.5rem;
  padding: 1.6rem 0 1.4rem;
  display: grid;
  gap: 0.85rem;
  max-width: 78ch;
}

.footer-disclaimer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-disclaimer__warn {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.7rem;
  align-items: start;
}

.footer-disclaimer__mark {
  width: 22px;
  height: 22px;
  display: block;
  margin-top: 0.2rem;
}

.footer-disclaimer__warn p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-disclaimer__warn strong {
  color: #fff;
}

.footer-disclaimer__note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s, transform 0.35s var(--ease);
  pointer-events: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.cookie-banner__inner {
  width: min(100%, 920px);
  margin: 0 auto;
  background: #141414;
  color: #fff;
  padding: 1.2rem 1.3rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.cookie-banner__text a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.7rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.cookie-banner__btn--ghost {
  background: transparent;
  color: #fff;
}

.cookie-banner__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-banner__btn--solid {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.cookie-banner__btn--solid:hover {
  background: #e8e8e8;
}

.article-layout {
  padding: clamp(2rem, 5vw, 4rem) 0 5rem;
}

.article-layout__wrap {
  width: min(100% - 2.5rem, 820px);
  margin-inline: auto;
}

.article-layout__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.article-layout h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.article-cover {
  margin: 0 0 2rem;
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.prose h2 {
  margin: 2.2rem 0 0.9rem;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.2;
}

.prose h3 {
  margin: 1.6rem 0 0.7rem;
  font-size: 1.2rem;
}

.prose p {
  margin: 0 0 1.1rem;
  color: #333;
}

.prose ul {
  margin: 0 0 1.2rem;
  padding-left: 1.2rem;
  color: #333;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose figure {
  margin: 1.8rem 0;
}

.prose figcaption {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.prose .ui-block {
  margin: 1.8rem 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 0 0 1.2rem;
}

.prose th,
.prose td {
  border: 1px solid #e2e2e2;
  padding: 0.75rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: #111;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prose tr:nth-child(even) td {
  background: #f7f5f2;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 1.4rem 0 1.8rem;
}

.stat-pill {
  background: #111;
  color: #fff;
  padding: 1rem 0.9rem;
  min-height: 110px;
  display: grid;
  align-content: end;
  gap: 0.35rem;
}

.stat-pill strong {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1;
  font-weight: 700;
}

.stat-pill span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.checklist-card {
  border: 1px solid #ddd;
  background: #fff;
  padding: 1.2rem;
}

.checklist-card.is-complete {
  border-color: #1f6b3a;
  box-shadow: inset 0 0 0 1px #1f6b3a;
}

.checklist-top {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.progress-ring {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.progress-ring circle {
  fill: none;
  stroke-width: 8;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.progress-ring .track {
  stroke: #ececec;
}

.progress-ring .value {
  stroke: #111;
  stroke-linecap: round;
  stroke-dasharray: 263.89;
  stroke-dashoffset: 263.89;
  transition: stroke-dashoffset 0.45s var(--ease);
}

.progress-ring text {
  font-size: 16px;
  font-weight: 700;
  fill: #111;
}

.checklist-meta strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.checklist-bar {
  height: 6px;
  background: #ececec;
  overflow: hidden;
}

.checklist-bar > span {
  display: block;
  height: 100%;
  width: 0;
  background: #111;
  transition: width 0.35s var(--ease);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.check-list label {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.7rem 0.75rem;
  border: 1px solid #e8e8e8;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

.check-list label:hover {
  background: #f7f5f2;
}

.check-list input {
  margin-top: 0.2rem;
  accent-color: #111;
}

.check-list label:has(input:checked) {
  background: #111;
  border-color: #111;
  color: #fff;
}

.stepper {
  border: 1px solid #ddd;
  background: #fff;
}

.stepper__nav {
  display: flex;
  gap: 0.4rem;
  padding: 0.9rem;
  border-bottom: 1px solid #eee;
  overflow-x: auto;
}

.step-dot {
  border: 0;
  background: #ececec;
  color: #111;
  min-width: 36px;
  height: 36px;
  font-weight: 700;
  cursor: pointer;
}

.step-dot.is-active {
  background: #111;
  color: #fff;
}

.step-dot.is-done {
  background: #cfcfcf;
}

.stepper__panel {
  display: none;
  padding: 1.2rem;
  animation: rise 0.45s var(--ease);
}

.stepper__panel.is-active {
  display: block;
}

.stepper__panel h3 {
  margin-top: 0;
}

.stepper__actions {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0 1.2rem 1.2rem;
}

.bars {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(110px, 160px) 1fr auto;
  gap: 0.7rem;
  align-items: center;
  font-size: 0.9rem;
}

.bar-track {
  height: 10px;
  background: #ececec;
  overflow: hidden;
}

.bar-track > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #111, #555);
  transition: width 0.9s var(--ease);
}

.bars.is-visible .bar-track > span {
  width: var(--w);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.2rem 0 1.6rem;
}

.compare-card {
  border: 1px solid #ddd;
  padding: 1rem;
  background: #fff;
}

.compare-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.compare-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.tabs {
  border: 1px solid #ddd;
  background: #fff;
  margin: 1.2rem 0 1.6rem;
}

.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.7rem;
  border-bottom: 1px solid #eee;
  background: #f7f5f2;
}

.tabs__nav button {
  border: 0;
  background: transparent;
  padding: 0.55rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.tabs__nav button.is-active {
  background: #111;
  color: #fff;
}

.tabs__panel {
  display: none;
  padding: 1.1rem;
}

.tabs__panel.is-active {
  display: block;
  animation: rise 0.4s var(--ease);
}

.prep-tool {
  border: 1px solid #ddd;
  background: #111;
  color: #fff;
  padding: 1.25rem;
  margin: 1.4rem 0 1.8rem;
}

.prep-tool h3 {
  margin: 0 0 0.5rem;
  color: #fff;
}

.prep-tool p {
  color: rgba(255, 255, 255, 0.72);
}

.prep-tool input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0.85rem 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.7rem 0;
  outline: none;
}

.prep-tool input:focus {
  border-color: #fff;
}

.prep-out {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  letter-spacing: 0.12em;
  margin: 0.4rem 0 0.8rem;
  word-break: break-all;
}

.prep-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.prep-block {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.65rem;
  display: grid;
  gap: 0.25rem;
}

.prep-block span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.prep-block strong {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.prep-status {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

.prep-status--ok {
  color: #9dffb5;
}

.prep-status--warn {
  color: #ffd28a;
}

.accordion {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.6rem;
}

.acc-item {
  border: 1px solid #ddd;
  background: #fff;
}

.acc-item button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.95rem 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.acc-item button::after {
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
}

.acc-item.is-open button::after {
  content: "–";
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.acc-item.is-open .acc-panel {
  max-height: 280px;
}

.acc-panel > div {
  padding: 0 1rem 1rem;
  color: #333;
}

.meter {
  --meter: 0%;
  height: 8px;
  background: #ececec;
  margin: 0.4rem 0 1rem;
  overflow: hidden;
}

.meter > i {
  display: block;
  height: 100%;
  width: 0;
  background: #111;
  transition: width 0.8s var(--ease);
}

.meter.is-on > i {
  width: var(--meter);
}

.flow-svg {
  width: 100%;
  height: auto;
  margin: 1rem 0 1.5rem;
  background: #f7f5f2;
  border: 1px solid #e8e8e8;
}

.flow-svg .pulse {
  animation: pulseDot 1.6s ease-in-out infinite;
}

.flow-svg .path-draw {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: drawLine 2.2s var(--ease) forwards;
}

@keyframes pulseDot {
  0%,
  100% {
    r: 5;
    opacity: 0.55;
  }
  50% {
    r: 8;
    opacity: 1;
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.callout {
  background: #f7f5f2;
  padding: 0.95rem 1rem;
  margin: 1.2rem 0;
}

.callout p {
  margin: 0;
}

.related-guides {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0.5rem;
}

.related-guides__item {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  border-top: 1px solid #e4e1dc;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s var(--ease);
}

.related-guides__item:last-child {
  border-bottom: 1px solid #e4e1dc;
}

.related-guides__item:hover {
  opacity: 0.72;
}

.related-guides__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.related-guides__item strong {
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 700;
}

.related-guides__host {
  font-size: 0.88rem;
  color: var(--muted);
}

.portal-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.4rem 0 1.8rem;
  padding: 1.15rem 1.25rem;
  background: #111;
  color: #fff;
}

.portal-cta p {
  margin: 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.portal-cta__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
  background: #fff;
  color: #111;
  padding: 0.85rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: normal;
  max-width: min(100%, 360px);
  transition: background 0.25s, transform 0.25s var(--ease);
}

.portal-cta__btn:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
}

.portal-cta__btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.portal-cta__btn-url {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #555;
  word-break: break-all;
  line-height: 1.35;
}

.portal-cta__btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.toc-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
}

.toc-mini a {
  border: 1px solid #ddd;
  padding: 0.45rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.toc-mini a:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 820px) {
  .stat-row,
  .compare-grid,
  .prep-blocks {
    grid-template-columns: 1fr;
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

.legal-page {
  padding: 8rem 0 4rem;
}

.legal-page h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-page h2 {
  margin: 2rem 0 0.8rem;
  font-size: 1.35rem;
}

.legal-page p,
.legal-page li {
  color: #333;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.contact-card {
  background: #111;
  color: #fff;
  padding: 2rem;
}

.contact-card h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.contact-card p {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 0.85rem 0.95rem;
  outline: none;
  transition: border-color 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #111;
}

.form-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.95rem;
}

.form-status--ok {
  color: #1f6b3a;
}

.form-status--error {
  color: #9b1c1c;
}

.desktop-only {
  display: flex;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .nav-pill {
    display: flex;
    max-width: min(52vw, 420px);
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0.45rem 0.55rem 0.45rem 0.75rem;
  }

  .nav-pill::-webkit-scrollbar {
    display: none;
  }

  .nav-pill a {
    font-size: 0.85rem;
    padding: 0.4rem 0.5rem;
    white-space: nowrap;
  }

  .desktop-only {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-reading {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .featured-reading__aside {
    padding-top: 0;
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .seo-info__grid,
  .seo-highlight,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .seo-stat {
    padding: 0.5rem 0 0;
  }

  .seo-highlight,
  .seo-highlight__media,
  .seo-highlight__media img {
    min-height: 320px;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
  }

  .hero__content {
    margin-bottom: 3rem;
  }
}

@media (max-width: 560px) {
  .container,
  .hero__content,
  .article-layout__wrap {
    width: min(100% - 1.5rem, var(--container));
  }

  .site-header {
    padding-inline: 0.9rem;
  }

  .brand__text {
    font-size: 0.95rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-btn {
    padding: 0.8rem 0.9rem;
    font-size: 0.7rem;
  }
}
