:root {
  --ink: #08090d;
  --ink-soft: #11131a;
  --surface: #171a22;
  --surface-2: #20242f;
  --paper: #f4f0e7;
  --paper-2: #e9e3d7;
  --white: #fffdf7;
  --muted: #aeb2bf;
  --muted-dark: #5f6470;
  --gold: #f3c969;
  --gold-2: #d79a2b;
  --magenta: #bb1f9b;
  --red: #ea4747;
  --green: #6fca9c;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(8, 9, 13, 0.14);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 12%, rgba(187, 31, 155, 0.18), transparent 30%),
    radial-gradient(circle at 88% 34%, rgba(243, 201, 105, 0.12), transparent 28%),
    linear-gradient(180deg, #08090d 0%, #0f1016 55%, #08090d 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

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

figure {
  margin: 0;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--gold);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 800px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  content: "";
  background: currentColor;
}

.display {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8.4vw, 7.8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.display em {
  color: var(--gold);
  font-weight: 400;
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-copy {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link svg {
  width: 18px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold), var(--magenta));
  transform: scaleX(0);
  transform-origin: left;
}

.responsibility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #050609;
}

.responsibility-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #d1d2d7;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
}

.responsibility-inner strong {
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid transparent;
  background: rgba(8, 9, 13, 0.78);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 9, 13, 0.94);
}

.header-inner {
  display: grid;
  min-height: 84px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

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

.brand img {
  width: 174px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2vw, 28px);
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  color: #d8d9de;
  font-size: 0.81rem;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.icon-button svg {
  width: 19px;
}

.icon-button:hover {
  color: var(--gold);
  border-color: rgba(243, 201, 105, 0.7);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 100px 0 74px;
}

.hero::before {
  position: absolute;
  top: 8%;
  right: -9%;
  width: min(62vw, 760px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(243, 201, 105, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(243, 201, 105, 0.025),
    0 0 0 180px rgba(187, 31, 155, 0.018);
  animation: orbit 16s linear infinite;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 70px;
}

.hero-copy {
  max-width: 760px;
}

.hero-lede {
  max-width: 630px;
  margin: 32px 0 0;
  color: #c9cbd2;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 18px;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(243, 201, 105, 0.24);
}

.button.secondary {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.hero-facts {
  display: grid;
  margin: 48px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.hero-facts li {
  padding: 20px 20px 0 0;
}

.hero-facts strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-feature {
  position: relative;
  min-height: 555px;
}

.feature-card {
  position: absolute;
  inset: 18px 0 auto auto;
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: transform 300ms ease;
}

.feature-card:hover {
  transform: rotate(0deg) translateY(-7px);
}

.feature-media {
  position: relative;
  height: 265px;
  overflow: hidden;
  background: #35172f;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform: scale(1.03);
  filter: saturate(0.86) contrast(1.04);
}

.feature-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 40%, rgba(8, 9, 13, 0.72));
}

.feature-body {
  padding: 28px;
}

.feature-body h2 {
  margin: 8px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.1;
}

.feature-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.floating-note {
  position: absolute;
  right: -34px;
  bottom: 16px;
  z-index: 3;
  display: grid;
  width: 160px;
  aspect-ratio: 1;
  place-content: center;
  padding: 22px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  text-align: center;
  transform: rotate(-7deg);
  animation: float 5s ease-in-out infinite;
}

.floating-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 0.9;
}

.floating-note span {
  margin-top: 6px;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.ticker-list {
  display: flex;
  margin: 0;
  padding: 17px 0;
  list-style: none;
}

.ticker-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 20px;
  color: #d1d3d9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
  white-space: nowrap;
}

.ticker-list li::after {
  color: var(--gold);
  content: "✦";
  font-family: serif;
  font-style: normal;
}

.article-section,
.promo-section,
.rating-section,
.principles-section,
.reference-section {
  padding: 112px 0;
}

.article-section {
  color: var(--ink);
  background: var(--paper);
}

.article-section .eyebrow {
  color: #8b610e;
}

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

.article-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.article-card {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.article-card:nth-child(1),
.article-card:nth-child(5) {
  grid-column: span 8;
}

.article-card:hover {
  z-index: 2;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 55px rgba(16, 13, 8, 0.13);
  transform: translateY(-8px);
}

.card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #35172f;
}

.article-card:nth-child(1) .card-media,
.article-card:nth-child(5) .card-media {
  height: 300px;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: saturate(0.75) contrast(1.08);
  transition: transform 500ms cubic-bezier(.2, .8, .2, 1), filter 300ms ease;
}

.article-card:hover .card-media img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.045);
}

.card-index {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--white);
  background: rgba(8, 9, 13, 0.45);
  font-size: 0.72rem;
  font-weight: 800;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.card-body {
  padding: 25px;
}

.card-kicker {
  color: #8b610e;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-body h3 {
  margin: 10px 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.card-body p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  color: var(--muted-dark);
  font-size: 0.73rem;
  font-weight: 700;
}

.card-meta span,
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.card-meta svg,
.article-meta svg {
  width: 15px;
}

.principles-section {
  position: relative;
  overflow: hidden;
  background: #101219;
}

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

.principle {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  transition: border-color 200ms ease, transform 200ms ease;
}

.principle:hover {
  border-color: rgba(243, 201, 105, 0.5);
  transform: translateY(-5px);
}

.principle-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  line-height: 1;
}

.principle h3 {
  margin: 40px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.promo-section {
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-2);
}

.promo-section .eyebrow {
  color: #8b610e;
}

.promo-shell {
  position: relative;
}

.promo-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(29, 18, 8, 0.18);
}

.promo-track {
  display: flex;
  transition: transform 600ms cubic-bezier(.22, .8, .26, 1);
}

.promo-slide {
  position: relative;
  min-width: 100%;
  aspect-ratio: 2000 / 426;
  background: #391436;
}

.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.promo-dots {
  display: flex;
  gap: 8px;
}

.promo-dot {
  width: 28px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(8, 9, 13, 0.2);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.promo-dot.is-active {
  width: 52px;
  background: var(--magenta);
}

.promo-arrows {
  display: flex;
  gap: 8px;
}

.promo-arrows .icon-button {
  color: var(--ink);
  border-color: var(--line-dark);
}

.promo-arrows .icon-button:first-child svg {
  transform: rotate(180deg);
}

.promo-disclaimer {
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 0.76rem;
}

.rating-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.rating-section::before {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 600px;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: rgba(187, 31, 155, 0.13);
  filter: blur(90px);
  transform: translateX(-50%);
}

.rating-content {
  position: relative;
}

.rating-score {
  margin: 18px 0 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.8rem, 13vw, 10rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 24px 0 8px;
  color: var(--gold);
  font-size: 1.7rem;
}

.rating-stars .partial {
  opacity: 0.42;
}

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

.rate-widget {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.rate-buttons {
  display: flex;
  flex-direction: row-reverse;
}

.rate-buttons button {
  padding: 0 2px;
  border: 0;
  color: #626672;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 150ms ease, transform 150ms ease;
}

.rate-buttons button:hover,
.rate-buttons button:hover ~ button,
.rate-buttons button.is-selected,
.rate-buttons button.is-selected ~ button {
  color: var(--gold);
  transform: translateY(-1px);
}

.reference-section {
  color: var(--ink);
  background: var(--paper);
}

.reference-section .eyebrow {
  color: #8b610e;
}

.reference-list {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--line-dark);
}

.reference-item {
  display: grid;
  padding: 24px 0;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line-dark);
}

.reference-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 500;
}

.reference-item p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.86rem;
}

.reference-item svg {
  width: 19px;
}

.site-footer {
  padding: 72px 0 30px;
  border-top: 1px solid var(--line);
  background: #07080b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 60px;
}

.footer-brand img {
  width: 190px;
  height: 60px;
  object-fit: contain;
  object-position: left;
}

.footer-brand p {
  max-width: 480px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-col h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a {
  color: #c6c8cf;
  font-size: 0.84rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.social-row a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-row a:hover {
  color: var(--gold);
  border-color: rgba(243, 201, 105, 0.55);
  transform: translateY(-3px);
}

.social-row svg {
  width: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #838792;
  font-size: 0.72rem;
}

.chat-card {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 850;
  width: 240px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: #111218;
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}

.chat-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.chat-card.is-hidden {
  display: none;
}

.chat-card img {
  width: 100%;
  height: auto;
}

.chat-close {
  position: absolute;
  top: 9px;
  right: 9px;
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.chat-close svg {
  width: 14px;
}

.search-dialog {
  width: min(calc(100% - 32px), 760px);
  max-height: 82vh;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: #12141b;
  box-shadow: var(--shadow);
}

.search-dialog::backdrop {
  background: rgba(3, 4, 7, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.search-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.search-head > svg {
  width: 21px;
  color: var(--gold);
}

.search-head input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: 1.05rem;
}

.search-head input::placeholder {
  color: #777c88;
}

.search-results {
  display: grid;
  max-height: 58vh;
  padding: 12px;
  overflow: auto;
  gap: 8px;
}

.search-result {
  display: grid;
  padding: 16px;
  grid-template-columns: 82px 1fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.search-result:hover,
.search-result:focus {
  border-color: rgba(243, 201, 105, 0.36);
  outline: none;
  background: rgba(255, 255, 255, 0.05);
}

.search-result img {
  width: 82px;
  height: 56px;
  object-fit: cover;
  border-radius: 9px;
}

.search-result strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.search-result small {
  color: var(--muted);
}

.search-result > svg {
  width: 18px;
}

.search-empty {
  padding: 40px 20px;
  color: var(--muted);
  text-align: center;
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 980;
  width: min(88vw, 390px);
  padding: 88px 30px 30px;
  border-left: 1px solid var(--line);
  background: #0d0f14;
  box-shadow: -30px 0 70px rgba(0, 0, 0, 0.4);
  transform: translateX(105%);
  transition: transform 300ms cubic-bezier(.22, .8, .26, 1);
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
}

.mobile-nav {
  display: grid;
  gap: 5px;
}

.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 970;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.article-hero {
  position: relative;
  padding: 95px 0 80px;
  overflow: hidden;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 0.75rem;
}

.breadcrumbs span[aria-hidden="true"] {
  color: #5f6370;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: end;
  gap: 65px;
}

.article-title {
  max-width: 860px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.7vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.article-deck {
  max-width: 760px;
  margin: 28px 0 0;
  color: #c2c5cd;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.article-hero .article-meta {
  color: var(--muted);
}

.article-hero-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.article-hero-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.article-hero-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-cover {
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.article-cover .container {
  position: relative;
  transform: translateY(1px);
}

.article-cover img {
  width: 100%;
  aspect-ratio: 2000 / 426;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 28px 80px rgba(16, 13, 8, 0.16);
}

.article-layout {
  color: var(--ink);
  background: var(--paper);
}

.article-layout-inner {
  display: grid;
  padding: 70px 0 110px;
  grid-template-columns: 250px minmax(0, 760px) 1fr;
  align-items: start;
  gap: 48px;
}

.toc {
  position: sticky;
  top: 116px;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.38);
}

.toc strong {
  color: #8b610e;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.toc ol {
  display: grid;
  gap: 9px;
  margin: 15px 0 0;
  padding-left: 20px;
  color: var(--muted-dark);
  font-size: 0.79rem;
}

.toc a:hover {
  color: var(--magenta);
}

.prose {
  min-width: 0;
}

.prose > p:first-child {
  margin-top: 0;
  color: #25262a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  line-height: 1.55;
}

.prose h2 {
  margin: 60px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.prose p {
  margin: 0 0 22px;
  color: #3f4147;
  font-size: 1.03rem;
  line-height: 1.85;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 12px;
  margin: 25px 0 30px;
  padding-left: 25px;
  color: #3f4147;
}

.prose li::marker {
  color: var(--magenta);
  font-weight: 800;
}

.article-callout {
  position: relative;
  margin: 34px 0;
  padding: 28px 30px 28px 72px;
  border: 1px solid rgba(139, 97, 14, 0.28);
  border-radius: var(--radius);
  background: #ede4ce;
}

.article-callout::before {
  position: absolute;
  top: 27px;
  left: 28px;
  color: #8b610e;
  content: "✦";
  font-size: 1.4rem;
}

.article-callout p {
  margin: 0;
  color: #4a3d21;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.6;
}

.steps-list {
  padding-left: 0 !important;
  counter-reset: steps;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 13px;
  counter-increment: steps;
}

.steps-list li::before {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  content: counter(steps, decimal-leading-zero);
  font-size: 0.64rem;
  font-weight: 800;
}

.glossary-list {
  display: grid;
  margin: 26px 0 35px;
  border-top: 1px solid var(--line-dark);
}

.glossary-row {
  display: grid;
  padding: 15px 0;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.glossary-row dt {
  font-weight: 850;
}

.glossary-row dd {
  margin: 0;
  color: var(--muted-dark);
}

.article-aside {
  position: sticky;
  top: 116px;
}

.aside-card {
  padding: 22px;
  border-left: 1px solid var(--line-dark);
}

.aside-card strong {
  display: block;
  color: #8b610e;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aside-card p {
  margin: 10px 0 0;
  color: var(--muted-dark);
  font-size: 0.78rem;
}

.article-sources {
  margin-top: 58px;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
}

.article-sources h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.article-sources a {
  color: #7b5410;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.related-section {
  padding: 95px 0;
  color: var(--ink);
  background: var(--paper-2);
}

.related-section .eyebrow {
  color: #8b610e;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  transition: transform 200ms ease, background 200ms ease;
}

.related-card:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-6px);
}

.related-card img {
  width: 100%;
  height: 155px;
  object-fit: cover;
}

.related-card-body {
  padding: 20px;
}

.related-card h3 {
  margin: 8px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.1;
}

.related-card .card-meta {
  margin-top: 0;
}

.generic-page {
  padding: 95px 0 115px;
  color: var(--ink);
  background: var(--paper);
}

.generic-hero {
  padding: 85px 0 70px;
}

.generic-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.generic-hero p {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.policy-card {
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.46);
}

.policy-card h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.policy-card p {
  margin: 0;
  color: var(--muted-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.22, .8, .26, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 360px;
  height: 360px;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(243, 201, 105, 0.065);
  filter: blur(60px);
  transform: translate(-50%, -50%);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateY(-12px);
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: inline-grid;
  }

  .hero-grid {
    gap: 38px;
  }

  .article-layout-inner {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .article-aside {
    display: none;
  }
}

@media (max-width: 860px) {
  .container,
  .narrow {
    width: min(calc(100% - 30px), var(--max));
  }

  .responsibility-inner {
    min-height: 44px;
    justify-content: center;
    text-align: center;
  }

  .responsibility-inner span:last-child {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 72px;
  }

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

  .hero-feature {
    min-height: 520px;
  }

  .feature-card {
    inset: 10px auto auto 0;
  }

  .floating-note {
    right: 5px;
  }

  .article-card,
  .article-card:nth-child(1),
  .article-card:nth-child(5) {
    grid-column: span 6;
  }

  .article-card:nth-child(1) .card-media,
  .article-card:nth-child(5) .card-media,
  .card-media {
    height: 220px;
  }

  .principles-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .reference-item {
    grid-template-columns: 1fr auto;
  }

  .reference-item p {
    grid-column: 1 / -1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .article-layout-inner {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 600px) {
  .brand img {
    width: 145px;
  }

  .header-actions .search-open {
    display: none;
  }

  .hero {
    padding-top: 66px;
  }

  .display {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-top: 12px;
  }

  .hero-feature {
    min-height: 430px;
  }

  .feature-media {
    height: 200px;
  }

  .floating-note {
    width: 125px;
  }

  .floating-note strong {
    font-size: 1.8rem;
  }

  .section-head {
    display: block;
  }

  .section-head .text-link {
    margin-top: 20px;
  }

  .article-section,
  .promo-section,
  .rating-section,
  .principles-section,
  .reference-section {
    padding: 78px 0;
  }

  .article-card,
  .article-card:nth-child(1),
  .article-card:nth-child(5) {
    grid-column: span 12;
  }

  .promo-viewport {
    margin-inline: -15px;
    border-radius: 0;
  }

  .promo-slide {
    aspect-ratio: 2.1 / 1;
  }

  .promo-slide img {
    object-position: center;
  }

  .promo-dot {
    width: 18px;
  }

  .promo-dot.is-active {
    width: 30px;
  }

  .reference-item {
    gap: 12px;
  }

  .footer-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-col {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .chat-card {
    right: 12px;
    bottom: 12px;
    width: 170px;
  }

  .article-hero {
    padding: 65px 0 58px;
  }

  .article-title {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .article-hero-card {
    padding: 22px;
  }

  .article-cover .container {
    width: 100%;
  }

  .article-cover img {
    min-height: 205px;
    border-radius: 0;
  }

  .article-layout-inner {
    padding-top: 46px;
  }

  .prose h2 {
    margin-top: 48px;
  }

  .article-callout {
    padding: 62px 22px 24px;
  }

  .article-callout::before {
    top: 20px;
    left: 22px;
  }

  .glossary-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .search-result {
    grid-template-columns: 66px 1fr;
  }

  .search-result img {
    width: 66px;
    height: 52px;
  }

  .search-result > svg {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-glow {
    display: none;
  }
}
