:root {
  --fn-plum: #120d09;
  --fn-plum-soft: #241b14;
  --fn-paper: #efe7d8;
  --fn-white: #f7f2e9;
  --fn-coral: #a4441f;
  --fn-violet: #c46d42;
  --fn-acid: #d98e5f;
  --fn-ink: #1d160f;
  --fn-line: rgba(29, 22, 15, 0.2);
  --fn-display: "Fraunces", Georgia, serif;
  --fn-editorial: "Fraunces", Georgia, serif;
  --fn-sans: "Archivo", Arial, sans-serif;
}

html {
  scroll-padding-top: 94px;
}

body.fn-static-page {
  background: var(--fn-paper);
  color: var(--fn-ink);
  font-family: var(--fn-sans);
  overflow-x: hidden;
}

body.fn-static-page ::selection {
  background: var(--fn-acid);
  color: var(--fn-plum);
}

.fn-progress {
  background: var(--fn-acid);
  height: 4px;
  left: 0;
  position: fixed;
  top: 0;
  transform: scaleX(0);
  transform-origin: left center;
  width: 100%;
  z-index: 100;
}

body.fn-static-page .wrap {
  max-width: 1280px;
  padding-inline: clamp(18px, 3.5vw, 54px);
}

body.fn-static-page .top {
  background: var(--fn-plum);
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.17);
  color: var(--fn-white);
  position: sticky;
  top: 0;
  z-index: 80;
}

body.fn-static-page .top::after {
  background: linear-gradient(90deg, var(--fn-coral) 0 34%, var(--fn-violet) 34% 69%, var(--fn-acid) 69%);
  bottom: -3px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

body.fn-static-page .top-in {
  gap: clamp(14px, 2.5vw, 36px);
  height: 78px;
}

body.fn-static-page .brand {
  color: var(--fn-white);
  display: inline-flex;
  gap: 11px;
  min-width: max-content;
}

.fn-brand-mark {
  color: var(--fn-coral);
  height: 42px;
  width: 42px;
}

.fn-brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.fn-static-page .brand .b1 {
  color: var(--fn-white);
  font-family: var(--fn-display);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.9;
}

body.fn-static-page .brand .b2 {
  color: var(--fn-violet);
  display: block;
  font-family: var(--fn-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.27em;
  line-height: 1;
  margin-top: 7px;
  text-transform: uppercase;
}

.fn-edition {
  color: rgba(255, 253, 247, 0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.fn-static-page nav.links {
  gap: clamp(13px, 2vw, 27px);
  margin-left: auto;
}

body.fn-static-page nav.links a {
  border: 0;
  color: rgba(255, 253, 247, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  padding: 8px 0;
  position: relative;
}

body.fn-static-page nav.links a::after {
  background: var(--fn-acid);
  bottom: 2px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
}

body.fn-static-page nav.links a:hover,
body.fn-static-page nav.links a.on {
  color: var(--fn-white);
}

body.fn-static-page nav.links a:hover::after,
body.fn-static-page nav.links a.on::after {
  transform: scaleX(1);
}

body.fn-static-page .cta-nav {
  background: var(--fn-acid);
  border: 1px solid var(--fn-acid);
  border-radius: 0;
  color: var(--fn-plum);
  font-family: var(--fn-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 14px 19px;
}

body.fn-static-page .cta-nav:hover {
  background: var(--fn-coral);
  border-color: var(--fn-coral);
  color: var(--fn-plum);
  transform: rotate(-1deg);
}

body.fn-static-page .phero {
  background: var(--fn-plum);
  color: var(--fn-white);
  min-height: min(760px, calc(100svh - 78px));
  overflow: hidden;
  padding: 0;
  position: relative;
}

body.fn-static-page .phero::before {
  color: rgba(255, 253, 247, 0.055);
  content: var(--fn-number);
  font-family: var(--fn-display);
  font-size: clamp(260px, 35vw, 590px);
  line-height: 0.75;
  pointer-events: none;
  position: absolute;
  right: 35%;
  top: -5%;
  transform: rotate(-7deg);
  z-index: 0;
}

body.fn-static-page .phero > .wrap {
  align-content: center;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  min-height: inherit;
  padding-bottom: clamp(55px, 8vw, 110px);
  padding-top: clamp(54px, 8vw, 100px);
  position: relative;
}

body.fn-static-page .phero > .wrap::after {
  align-self: stretch;
  background-image:
    linear-gradient(180deg, rgba(18, 13, 18, 0.03), rgba(18, 13, 18, 0.34)),
    var(--fn-cover);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 253, 247, 0.28);
  box-shadow: 19px 19px 0 var(--fn-coral);
  content: "";
  grid-column: 2;
  grid-row: 1 / 7;
  margin: 20px 18px 20px clamp(32px, 5vw, 82px);
  min-height: 480px;
  transform: rotate(2.2deg);
  z-index: 1;
}

body.fn-static-page .crumb,
body.fn-static-page .k,
body.fn-static-page .phero h1,
body.fn-static-page .phero .sub,
body.fn-static-page .byline,
.fn-cover-meta {
  grid-column: 1;
  position: relative;
  z-index: 2;
}

body.fn-static-page .crumb {
  color: rgba(255, 253, 247, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  margin: 0 0 34px;
}

body.fn-static-page .crumb a {
  color: var(--fn-violet);
}

body.fn-static-page .k {
  color: var(--fn-coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  margin-bottom: 18px;
}

body.fn-static-page .k::before {
  background: var(--fn-coral);
  height: 6px;
  width: 35px;
}

body.fn-static-page .phero h1 {
  color: var(--fn-white);
  font-family: var(--fn-display);
  font-size: clamp(62px, 7.2vw, 118px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.89;
  max-width: 900px;
  text-transform: uppercase;
}

body.fn-static-page .phero h1 em {
  color: var(--fn-violet);
  font-family: var(--fn-editorial);
  font-weight: 500;
  text-transform: none;
}

body.fn-static-page .phero .sub {
  color: rgba(255, 253, 247, 0.72);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  margin-top: 26px;
  max-width: 630px;
}

body.fn-static-page .byline {
  border-color: rgba(255, 253, 247, 0.25);
  color: rgba(255, 253, 247, 0.53);
  font-size: 10px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.14em;
  margin-right: clamp(15px, 4vw, 60px);
  margin-top: 30px;
  padding-top: 17px;
}

.fn-cover-meta {
  color: var(--fn-acid);
  display: flex;
  font-size: 9px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.16em;
  margin-right: clamp(15px, 4vw, 60px);
  margin-top: 15px;
  text-transform: uppercase;
}

body.fn-static-page main {
  background:
    linear-gradient(rgba(20, 16, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 16, 20, 0.035) 1px, transparent 1px),
    var(--fn-paper);
  background-size: 42px 42px;
  padding: clamp(66px, 8vw, 118px) 0 clamp(72px, 9vw, 132px);
}

body.fn-static-page main > .wrap {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 94px);
  grid-template-columns: minmax(170px, 235px) minmax(0, 780px);
  justify-content: center;
}

.fn-index {
  border-top: 8px solid var(--fn-plum);
  grid-column: 1;
  grid-row: 1 / span 4;
  position: sticky;
  top: 114px;
}

.fn-index-kicker {
  background: var(--fn-acid);
  color: var(--fn-plum);
  display: inline-block;
  font-family: var(--fn-display);
  font-size: 17px;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
  padding: 7px 10px 5px;
  text-transform: uppercase;
}

.fn-index nav {
  display: flex;
  flex-direction: column;
}

.fn-index nav a {
  align-items: baseline;
  border-bottom: 1px solid var(--fn-line);
  color: rgba(20, 16, 20, 0.68);
  display: grid;
  font-size: 12px;
  font-weight: 600;
  gap: 12px;
  grid-template-columns: 26px 1fr;
  line-height: 1.35;
  padding: 11px 4px;
  transition: color 180ms ease, padding-left 180ms ease;
}

.fn-index nav a span {
  color: var(--fn-coral);
  font-family: var(--fn-display);
  font-size: 16px;
  font-weight: 400;
}

.fn-index nav a:hover,
.fn-index nav a.is-active {
  color: var(--fn-plum);
  padding-left: 6px;
}

.fn-index-back {
  color: var(--fn-plum);
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-top: 22px;
  text-transform: uppercase;
}

.fn-index-back::before {
  content: "← ";
}

body.fn-static-page .prose,
body.fn-static-page .faq,
body.fn-static-page .verified {
  grid-column: 2;
  margin-left: 0;
  margin-right: 0;
  max-width: 780px;
  width: 100%;
}

body.fn-static-page .prose.wide {
  max-width: 780px;
}

body.fn-static-page .prose.wide > p {
  max-width: 780px;
}

body.fn-static-page .prose > p,
body.fn-static-page .prose > ul,
body.fn-static-page .prose > ol,
body.fn-static-page .prose > blockquote,
body.fn-static-page .prose > .tablewrap,
body.fn-static-page .prose > .aura-cta,
body.fn-static-page .prose > .note {
  margin-bottom: 28px;
}

body.fn-static-page .prose p,
body.fn-static-page .prose li {
  color: rgba(20, 16, 20, 0.88);
  font-size: 17px;
  line-height: 1.78;
}

body.fn-static-page .prose .lede {
  border: 0;
  color: var(--fn-plum);
  font-family: var(--fn-editorial);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.33;
  padding: 0 0 38px;
  position: relative;
}

body.fn-static-page .prose .lede::after {
  background: linear-gradient(90deg, var(--fn-coral) 0 28%, var(--fn-violet) 28% 68%, var(--fn-acid) 68%);
  bottom: 0;
  content: "";
  height: 9px;
  left: 0;
  position: absolute;
  width: 190px;
}

body.fn-static-page .prose h2,
body.fn-static-page .hubsec > h2 {
  border-top: 1px solid var(--fn-plum);
  color: var(--fn-plum);
  font-family: var(--fn-display);
  font-size: clamp(39px, 5vw, 66px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: clamp(64px, 8vw, 96px) 0 23px;
  padding-top: 18px;
  scroll-margin-top: 102px;
  text-transform: uppercase;
}

body.fn-static-page .prose h2 em {
  color: var(--fn-coral);
  font-family: var(--fn-editorial);
  font-weight: 500;
  text-transform: none;
}

body.fn-static-page .prose h3 {
  color: var(--fn-plum);
  font-family: var(--fn-sans);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 38px 0 12px;
}

body.fn-static-page .prose li {
  margin-bottom: 11px;
  padding-left: 5px;
}

body.fn-static-page .prose li::marker {
  color: var(--fn-coral);
  font-weight: 800;
}

body.fn-static-page .prose a {
  color: var(--fn-plum);
  text-decoration-color: var(--fn-coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

body.fn-static-page .prose a:hover {
  background: var(--fn-acid);
  color: var(--fn-plum);
}

body.fn-static-page .prose blockquote {
  background: var(--fn-violet);
  border: 0;
  color: var(--fn-plum);
  font-family: var(--fn-editorial);
  font-size: clamp(23px, 3vw, 33px);
  font-style: normal;
  line-height: 1.35;
  padding: 30px clamp(25px, 5vw, 48px);
  transform: rotate(-0.7deg);
}

body.fn-static-page .tablewrap {
  background: var(--fn-white);
  border: 2px solid var(--fn-plum);
  border-radius: 0;
  box-shadow: 9px 9px 0 var(--fn-violet);
  margin-bottom: 38px;
}

body.fn-static-page .prose table {
  font-size: 14px;
}

body.fn-static-page .prose th,
body.fn-static-page .prose td {
  border-color: rgba(20, 16, 20, 0.18);
  padding: 14px 16px;
}

body.fn-static-page .prose th {
  background: var(--fn-plum);
  color: var(--fn-white);
  font-size: 10px;
}

body.fn-static-page .prose td b {
  font-family: var(--fn-sans);
  font-size: 15px;
  font-weight: 800;
}

body.fn-static-page .note {
  background: var(--fn-acid);
  border: 2px solid var(--fn-plum);
  border-radius: 0;
  color: var(--fn-plum);
  padding: 24px 27px;
}

body.fn-static-page .note b {
  font-family: var(--fn-display);
  font-size: 24px;
  text-transform: uppercase;
}

body.fn-static-page .aura-cta-inline {
  background: var(--fn-white);
  border: 0;
  border-left: 11px solid var(--fn-coral);
  color: var(--fn-plum);
  padding: 18px 23px;
}

body.fn-static-page .aura-cta {
  background: var(--fn-coral);
  border: 2px solid var(--fn-plum);
  border-radius: 0;
  box-shadow: 13px 13px 0 var(--fn-plum);
  color: var(--fn-plum);
  margin: 54px 13px 54px 0;
  padding: clamp(27px, 5vw, 46px);
}

body.fn-static-page .aura-cta b {
  color: var(--fn-plum);
  font-family: var(--fn-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  text-transform: uppercase;
}

body.fn-static-page .aura-cta p {
  color: rgba(18, 13, 18, 0.78);
  font-size: 16px;
}

body.fn-static-page .btn {
  border-radius: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  padding: 16px 23px;
}

body.fn-static-page .btn.fill {
  background: var(--fn-acid);
  color: var(--fn-plum);
}

body.fn-static-page .btn.ghost {
  border-color: var(--fn-plum);
  color: var(--fn-plum);
}

body.fn-static-page .btn.fill:hover,
body.fn-static-page .btn.ghost:hover {
  background: var(--fn-plum);
  color: var(--fn-white);
  transform: translate(-2px, -2px);
}

body.fn-static-page .faq {
  background: var(--fn-plum);
  color: var(--fn-white);
  margin-top: 66px;
  padding: clamp(28px, 5vw, 48px);
}

body.fn-static-page .faq h2 {
  color: var(--fn-violet);
  font-family: var(--fn-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 20px;
  text-transform: uppercase;
}

body.fn-static-page .faq details {
  border-color: rgba(255, 253, 247, 0.22);
}

body.fn-static-page .faq summary {
  color: var(--fn-white);
  font-size: 16px;
}

body.fn-static-page .faq summary::after {
  color: var(--fn-acid);
}

body.fn-static-page .faq details p {
  color: rgba(255, 253, 247, 0.7);
}

body.fn-static-page .verified {
  border-top: 0;
  color: rgba(20, 16, 20, 0.5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-top: 38px;
  padding-top: 0;
}

body.fn-static-page .verified::before {
  color: var(--fn-coral);
  content: "Field check / ";
}

body.fn-static-page .hubsec {
  margin: 72px 0 0;
}

body.fn-static-page .hubsec > p.hubintro {
  color: rgba(20, 16, 20, 0.64);
  font-size: 16px;
  margin-bottom: 25px;
}

body.fn-static-page .rgrid {
  counter-reset: cards;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.fn-static-page .rcard {
  background: transparent;
  border: 0;
  border-left: 1px solid var(--fn-line);
  border-radius: 0;
  border-top: 1px solid var(--fn-line);
  counter-increment: cards;
  min-height: 220px;
  padding: 23px 24px 30px 48px;
  position: relative;
}

body.fn-static-page .rcard::before {
  color: var(--fn-coral);
  content: counter(cards, decimal-leading-zero);
  font-family: var(--fn-display);
  font-size: 18px;
  left: 15px;
  position: absolute;
  top: 21px;
}

body.fn-static-page .rcard:hover {
  background: var(--fn-violet);
  border-color: var(--fn-plum);
  box-shadow: none;
  transform: translateY(-5px);
}

body.fn-static-page .rcard small {
  color: rgba(20, 16, 20, 0.56);
  font-size: 9px;
}

body.fn-static-page .rcard b {
  color: var(--fn-plum);
  font-family: var(--fn-editorial);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.15;
}

body.fn-static-page .rcard span {
  color: rgba(20, 16, 20, 0.59);
  font-size: 13px;
}

body.fn-static-page .related {
  background: var(--fn-plum);
  color: var(--fn-white);
  padding: clamp(56px, 7vw, 96px) 0;
}

body.fn-static-page .related h2 {
  color: var(--fn-white);
  font-family: var(--fn-display);
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

body.fn-static-page .related .rgrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.fn-static-page .related .rcard {
  border-color: rgba(255, 253, 247, 0.22);
}

body.fn-static-page .related .rcard small {
  color: var(--fn-coral);
}

body.fn-static-page .related .rcard b {
  color: var(--fn-white);
}

body.fn-static-page .related .rcard span {
  color: rgba(255, 253, 247, 0.55);
}

body.fn-static-page .related .rcard:hover {
  background: var(--fn-acid);
}

body.fn-static-page .related .rcard:hover b,
body.fn-static-page .related .rcard:hover span,
body.fn-static-page .related .rcard:hover small {
  color: var(--fn-plum);
}

body.fn-static-page footer {
  background: var(--fn-acid);
  color: var(--fn-plum);
}

body.fn-static-page .foot-grid {
  gap: clamp(24px, 4vw, 55px);
}

body.fn-static-page .foot-grid h4 {
  color: rgba(18, 13, 18, 0.55);
  font-weight: 800;
}

body.fn-static-page .foot-grid a {
  font-size: 13px;
}

body.fn-static-page .foot-grid a:hover {
  color: var(--fn-coral);
}

body.fn-static-page .foot-brand .b1 {
  color: var(--fn-plum);
  font-family: var(--fn-display);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

body.fn-static-page .foot-brand p {
  color: rgba(18, 13, 18, 0.62);
}

body.fn-static-page .foot-bottom {
  border-color: rgba(18, 13, 18, 0.2);
  color: rgba(18, 13, 18, 0.55);
}

.fn-motion .fn-static-page .phero h1,
.fn-motion .fn-static-page .phero .sub,
.fn-motion .fn-static-page .byline,
.fn-motion .fn-static-page .k,
.fn-motion .fn-static-page .crumb {
  animation: fn-rise 720ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.fn-motion .fn-static-page .phero .sub {
  animation-delay: 90ms;
}

.fn-motion .fn-static-page .byline {
  animation-delay: 150ms;
}

.fn-motion .fn-static-page .phero > .wrap::after {
  animation: fn-cover-in 900ms 80ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.fn-motion .fn-static-page .prose h2,
.fn-motion .fn-static-page .tablewrap,
.fn-motion .fn-static-page .note,
.fn-motion .fn-static-page .aura-cta,
.fn-motion .fn-static-page .faq,
.fn-motion .fn-static-page .rcard {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 550ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fn-motion .fn-static-page .fn-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fn-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
}

@keyframes fn-cover-in {
  from {
    opacity: 0;
    transform: rotate(7deg) scale(0.94);
  }
  to {
    opacity: 1;
    transform: rotate(2.2deg) scale(1);
  }
}

@media (max-width: 1040px) {
  .fn-edition {
    display: none;
  }

  body.fn-static-page .phero > .wrap {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.62fr);
  }

  body.fn-static-page .phero h1 {
    font-size: clamp(55px, 8.5vw, 90px);
  }

  body.fn-static-page main > .wrap {
    gap: 45px;
    grid-template-columns: 180px minmax(0, 720px);
  }
}

@media (max-width: 820px) {
  body.fn-static-page .top-in {
    height: 68px;
  }

  body.fn-static-page nav.links {
    display: none;
  }

  body.fn-static-page .cta-nav {
    margin-left: auto;
  }

  body.fn-static-page .phero {
    min-height: auto;
  }

  body.fn-static-page .phero > .wrap {
    display: flex;
    flex-direction: column;
    padding-bottom: 65px;
    padding-top: 46px;
  }

  body.fn-static-page .phero > .wrap::after {
    margin: 44px 12px 12px 0;
    min-height: min(74vw, 540px);
    order: 7;
    width: calc(100% - 12px);
  }

  body.fn-static-page .phero::before {
    font-size: 400px;
    right: -7%;
    top: 5%;
  }

  body.fn-static-page .phero h1 {
    font-size: clamp(58px, 13vw, 94px);
  }

  .fn-cover-meta {
    order: 6;
  }

  body.fn-static-page main > .wrap {
    display: block;
  }

  .fn-index {
    display: none;
  }

  body.fn-static-page .related .rgrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body.fn-static-page .top-in {
    height: 62px;
  }

  .fn-brand-mark {
    font-size: 22px;
    height: 35px;
    width: 35px;
  }

  body.fn-static-page .brand .b1 {
    font-size: 19px;
  }

  body.fn-static-page .brand .b2 {
    font-size: 7.5px;
  }

  body.fn-static-page .cta-nav {
    font-size: 9px;
    padding: 12px 13px;
  }

  body.fn-static-page .phero > .wrap {
    padding-bottom: 52px;
    padding-top: 38px;
  }

  body.fn-static-page .crumb {
    margin-bottom: 28px;
  }

  body.fn-static-page .phero h1 {
    font-size: clamp(51px, 15vw, 72px);
  }

  body.fn-static-page .byline {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  body.fn-static-page .phero > .wrap::after {
    min-height: 92vw;
  }

  body.fn-static-page main {
    padding-bottom: 82px;
    padding-top: 66px;
  }

  body.fn-static-page .prose p,
  body.fn-static-page .prose li {
    font-size: 16px;
  }

  body.fn-static-page .prose .lede {
    font-size: 26px;
  }

  body.fn-static-page .prose h2,
  body.fn-static-page .hubsec > h2 {
    font-size: 43px;
  }

  body.fn-static-page .rgrid {
    grid-template-columns: 1fr;
  }

  body.fn-static-page .rcard {
    min-height: 0;
  }

  body.fn-static-page .aura-cta {
    box-shadow: 8px 8px 0 var(--fn-plum);
    margin-right: 8px;
  }

  body.fn-static-page .faq {
    margin-inline: -2px;
    padding: 27px 21px;
  }

  body.fn-static-page .foot-grid {
    grid-template-columns: 1fr;
  }
}

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

  .fn-motion .fn-static-page .prose h2,
  .fn-motion .fn-static-page .tablewrap,
  .fn-motion .fn-static-page .note,
  .fn-motion .fn-static-page .aura-cta,
  .fn-motion .fn-static-page .faq,
  .fn-motion .fn-static-page .rcard {
    opacity: 1;
    transform: none;
  }
}

/* Aura Field Notes v2 — cinematic reading system shared by every guide */
body.fn-static-page {
  background: #f4eee5;
  color: #211912;
}

body.fn-static-page .wrap {
  max-width: 1440px;
  padding-inline: clamp(18px, 4.3vw, 72px);
}

body.fn-static-page .top {
  backdrop-filter: blur(22px) saturate(1.15);
  background: rgba(13, 10, 8, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

body.fn-static-page .top::after {
  display: none;
}

body.fn-static-page .top-in {
  height: 72px;
}

.fn-brand-mark {
  color: var(--fn-acid);
  height: 36px;
  width: 36px;
}

body.fn-static-page .brand .b1 {
  font-size: 22px;
  font-weight: 500;
}

body.fn-static-page .brand .b2 {
  color: var(--fn-acid);
}

.fn-edition {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 20px;
}

body.fn-static-page nav.links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

body.fn-static-page .cta-nav {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 999px;
  color: white;
  padding: 12px 17px;
}

body.fn-static-page .cta-nav:hover {
  background: var(--fn-acid);
  border-color: var(--fn-acid);
  color: var(--fn-plum);
  transform: translateY(-2px);
}

body.fn-static-page .phero {
  background: #0d0a08;
  color: white;
  isolation: isolate;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  padding: 0;
  position: relative;
}

body.fn-static-page .phero::before {
  background-color: #2b1a14;
  background-image:
    var(--fn-cover),
    url('/media/blog/rome-skyline.webp');
  background-position:
    calc(50% + var(--fn-hero-x, 0px))
    calc(50% + var(--fn-hero-y, 0px));
  background-size: cover;
  color: transparent;
  content: "";
  font-size: 0;
  inset: -4%;
  opacity: 0.94;
  position: absolute;
  transform: scale(1.04);
  transition: background-position 0.6s cubic-bezier(0.2, 0.75, 0.2, 1);
  z-index: -2;
}

body.fn-static-page .phero::after {
  background:
    linear-gradient(90deg, rgba(12, 9, 7, 0.92) 0%, rgba(12, 9, 7, 0.54) 55%, rgba(12, 9, 7, 0.14)),
    linear-gradient(0deg, rgba(12, 9, 7, 0.9) 0%, transparent 52%, rgba(12, 9, 7, 0.32));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

body.fn-static-page .phero > .wrap {
  align-content: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: inherit;
  padding-bottom: clamp(62px, 8vw, 112px);
  padding-top: clamp(70px, 10vw, 140px);
}

body.fn-static-page .phero > .wrap::after {
  display: none;
}

body.fn-static-page .crumb,
body.fn-static-page .k,
body.fn-static-page .phero h1,
body.fn-static-page .phero .sub,
body.fn-static-page .byline,
.fn-cover-meta,
.fn-hero-scroll {
  grid-column: 1;
  margin-right: 0;
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

body.fn-static-page .crumb {
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: clamp(36px, 7vh, 78px);
}

body.fn-static-page .crumb a {
  color: var(--fn-acid);
}

body.fn-static-page .k {
  color: var(--fn-acid);
  font-size: 10px;
  margin-bottom: 19px;
}

body.fn-static-page .k::before {
  background: var(--fn-acid);
  height: 1px;
  width: 44px;
}

body.fn-static-page .phero h1 {
  color: white;
  font-family: var(--fn-editorial);
  font-size: clamp(58px, 8vw, 126px);
  font-weight: 430;
  letter-spacing: -0.065em;
  line-height: 0.86;
  max-width: 1100px;
  text-transform: none;
  text-wrap: balance;
}

body.fn-static-page .phero h1 em {
  color: var(--fn-acid);
  font-weight: 400;
}

body.fn-static-page .phero .sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.6;
  margin-top: 28px;
  max-width: 650px;
}

body.fn-static-page .byline {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.55);
  max-width: 650px;
}

.fn-cover-meta {
  bottom: clamp(25px, 3vw, 44px);
  color: rgba(255, 255, 255, 0.64);
  display: flex;
  font-size: 9px;
  left: auto;
  letter-spacing: 0.16em;
  margin: 0;
  max-width: none;
  position: absolute;
  right: clamp(18px, 4.3vw, 72px);
  text-transform: uppercase;
  width: min(310px, 30vw);
}

.fn-cover-meta span:first-child {
  color: var(--fn-acid);
}

.fn-hero-scroll {
  align-items: center;
  bottom: clamp(25px, 3vw, 44px);
  display: flex;
  gap: 14px;
  left: clamp(18px, 4.3vw, 72px);
  position: absolute;
}

.fn-hero-scroll span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fn-hero-scroll i {
  background: rgba(255, 255, 255, 0.26);
  height: 1px;
  overflow: hidden;
  position: relative;
  width: 72px;
}

.fn-hero-scroll i::after {
  animation: fn-scan 2.3s ease-in-out infinite;
  background: var(--fn-acid);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  width: 26px;
}

@keyframes fn-scan {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(280%);
  }
}

body.fn-static-page main {
  background:
    radial-gradient(circle at 8% 6%, rgba(217, 142, 95, 0.11), transparent 25%),
    #f4eee5;
  padding: clamp(75px, 9vw, 130px) 0 clamp(85px, 10vw, 145px);
}

body.fn-static-page main > .wrap {
  align-items: start;
  display: grid;
  gap: clamp(45px, 7vw, 110px);
  grid-template-columns: minmax(210px, 265px) minmax(0, 820px);
  justify-content: center;
}

.fn-index {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(29, 22, 15, 0.14);
  border-radius: 24px;
  box-shadow: 0 22px 70px rgba(43, 31, 22, 0.07);
  overflow: hidden;
  padding: 17px;
  top: 98px;
}

.fn-index-kicker {
  background: transparent;
  color: var(--fn-coral);
  display: block;
  font-family: var(--fn-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0;
  padding: 5px 5px 14px;
  text-transform: uppercase;
}

.fn-index nav {
  gap: 3px;
}

.fn-index nav a {
  border: 0;
  border-radius: 12px;
  color: rgba(29, 22, 15, 0.61);
  font-size: 11px;
  gap: 9px;
  grid-template-columns: 24px 1fr;
  line-height: 1.35;
  padding: 9px 10px;
}

.fn-index nav a span {
  color: var(--fn-coral);
  font-family: var(--fn-sans);
  font-size: 9px;
  font-weight: 800;
}

.fn-index nav a:hover,
.fn-index nav a.is-active {
  background: var(--fn-plum);
  color: white;
  padding-left: 10px;
}

.fn-index nav a.is-active span {
  color: var(--fn-acid);
}

.fn-index-back {
  border-top: 1px solid var(--fn-line);
  display: block;
  font-size: 9px;
  margin: 13px 5px 0;
  padding-top: 15px;
}

.fn-index-back::before {
  content: "← ";
}

body.fn-static-page .prose,
body.fn-static-page .faq,
body.fn-static-page .verified {
  max-width: 820px;
}

body.fn-static-page .prose {
  counter-reset: fn-section;
}

body.fn-static-page .prose p,
body.fn-static-page .prose li {
  color: rgba(29, 22, 15, 0.84);
  font-size: 17px;
  line-height: 1.82;
}

body.fn-static-page .prose .lede {
  border: 0;
  color: var(--fn-plum);
  font-size: clamp(27px, 3.1vw, 41px);
  letter-spacing: -0.035em;
  line-height: 1.32;
  padding: 0 0 42px;
}

body.fn-static-page .prose .lede::after {
  background: var(--fn-coral);
  border-radius: 999px;
  height: 4px;
  width: 80px;
}

body.fn-static-page .prose h2,
body.fn-static-page .hubsec > h2 {
  border: 0;
  color: var(--fn-plum);
  counter-increment: fn-section;
  font-family: var(--fn-editorial);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 470;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: clamp(70px, 9vw, 110px) 0 28px;
  min-height: 52px;
  padding: 0 0 0 62px;
  position: relative;
  text-transform: none;
  text-wrap: balance;
}

body.fn-static-page .prose h2::before,
body.fn-static-page .hubsec > h2::before {
  color: var(--fn-coral);
  content: counter(fn-section, decimal-leading-zero);
  font-family: var(--fn-sans);
  font-size: 10px;
  font-weight: 800;
  left: 0;
  letter-spacing: 0.12em;
  position: absolute;
  top: 12px;
}

body.fn-static-page .prose h2::after,
body.fn-static-page .hubsec > h2::after {
  background: rgba(29, 22, 15, 0.25);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 34px;
  width: 35px;
}

body.fn-static-page .prose h3 {
  font-family: var(--fn-sans);
  font-size: 17px;
  letter-spacing: 0;
  margin-top: 42px;
}

body.fn-static-page .prose blockquote {
  background:
    linear-gradient(135deg, rgba(217, 142, 95, 0.2), transparent),
    var(--fn-plum);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(29, 22, 15, 0.13);
  color: white;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.32;
  padding: clamp(28px, 5vw, 50px);
  transform: none;
}

body.fn-static-page .tablewrap {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(29, 22, 15, 0.14);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(43, 31, 22, 0.08);
  overflow: hidden;
}

body.fn-static-page .prose th {
  background: var(--fn-plum);
}

body.fn-static-page .note {
  background: rgba(217, 142, 95, 0.18);
  border: 1px solid rgba(164, 68, 31, 0.32);
  border-radius: 20px;
  padding: 25px 28px;
}

body.fn-static-page .note b {
  font-family: var(--fn-editorial);
  font-size: 23px;
  text-transform: none;
}

body.fn-static-page .aura-cta {
  background:
    linear-gradient(90deg, rgba(13, 10, 8, 0.92), rgba(13, 10, 8, 0.48)),
    var(--fn-cover) center / cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(29, 22, 15, 0.18);
  color: white;
  margin: 58px 0;
  overflow: hidden;
  padding: clamp(32px, 6vw, 58px);
}

body.fn-static-page .aura-cta b {
  color: white;
  font-family: var(--fn-editorial);
  font-size: clamp(32px, 5vw, 57px);
  font-weight: 450;
  letter-spacing: -0.045em;
  text-transform: none;
}

body.fn-static-page .aura-cta p {
  color: rgba(255, 255, 255, 0.72);
}

body.fn-static-page .btn {
  border-radius: 999px;
  padding: 15px 21px;
}

body.fn-static-page .aura-cta .btn.fill {
  background: var(--fn-acid);
  color: var(--fn-plum);
}

body.fn-static-page .aura-cta .btn.ghost {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.36);
  color: white;
}

body.fn-static-page .faq {
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 142, 95, 0.18), transparent 30%),
    var(--fn-plum);
  border-radius: 30px;
  box-shadow: 0 32px 90px rgba(29, 22, 15, 0.16);
  padding: clamp(30px, 6vw, 56px);
}

body.fn-static-page .faq h2 {
  color: white;
  font-family: var(--fn-editorial);
  font-size: clamp(40px, 5vw, 66px);
  letter-spacing: -0.05em;
  text-transform: none;
}

body.fn-static-page .faq details {
  border-color: rgba(255, 255, 255, 0.16);
  padding-block: 5px;
}

body.fn-static-page .faq summary {
  font-size: 15px;
  padding-block: 16px;
}

body.fn-static-page .verified {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--fn-line);
  border-radius: 999px;
  display: inline-block;
  padding: 10px 15px;
}

body.fn-static-page .hubsec {
  grid-column: 1 / -1;
  margin-top: 78px;
}

body.fn-static-page .rgrid {
  gap: 12px;
}

body.fn-static-page .rcard {
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(29, 22, 15, 0.13);
  border-radius: 20px;
  min-height: 230px;
  overflow: hidden;
  padding: 26px 26px 30px 54px;
}

body.fn-static-page .rcard:hover {
  background: var(--fn-plum);
  border-color: var(--fn-plum);
  box-shadow: 0 24px 55px rgba(29, 22, 15, 0.16);
  transform: translateY(-7px);
}

body.fn-static-page .rcard:hover b {
  color: white;
}

body.fn-static-page .rcard:hover span {
  color: rgba(255, 255, 255, 0.6);
}

body.fn-static-page .related {
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 142, 95, 0.2), transparent 29%),
    var(--fn-plum);
}

body.fn-static-page .related h2 {
  font-family: var(--fn-editorial);
  letter-spacing: -0.05em;
  text-transform: none;
}

body.fn-static-page .related .rcard {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}

body.fn-static-page .related .rcard:hover {
  background: var(--fn-acid);
}

body.fn-static-page footer {
  background: #d98e5f;
}

.fn-motion .fn-static-page .phero > .wrap::after {
  animation: none;
}

@media (max-width: 1040px) {
  body.fn-static-page .phero > .wrap {
    grid-template-columns: 1fr;
  }

  body.fn-static-page .phero h1 {
    font-size: clamp(58px, 10vw, 104px);
  }

  body.fn-static-page main > .wrap {
    gap: 44px;
    grid-template-columns: 190px minmax(0, 760px);
  }
}

@media (max-width: 820px) {
  body.fn-static-page .top-in {
    height: 66px;
  }

  body.fn-static-page .phero {
    min-height: calc(100svh - 66px);
  }

  body.fn-static-page .phero > .wrap {
    display: grid;
    padding-bottom: 74px;
    padding-top: 54px;
  }

  body.fn-static-page .phero h1 {
    font-size: clamp(54px, 13vw, 92px);
  }

  .fn-cover-meta {
    bottom: 25px;
    right: 20px;
    width: min(270px, 42vw);
  }

  .fn-hero-scroll {
    bottom: 25px;
    left: 20px;
  }

  body.fn-static-page main > .wrap {
    display: block;
  }

  body.fn-static-page .prose,
  body.fn-static-page .faq,
  body.fn-static-page .verified {
    max-width: 760px;
  }
}

@media (max-width: 560px) {
  body.fn-static-page .top-in {
    height: 62px;
  }

  body.fn-static-page .phero {
    min-height: 760px;
  }

  body.fn-static-page .phero::after {
    background:
      linear-gradient(0deg, rgba(12, 9, 7, 0.94) 0%, rgba(12, 9, 7, 0.34) 72%, rgba(12, 9, 7, 0.42)),
      linear-gradient(90deg, rgba(12, 9, 7, 0.62), transparent);
  }

  body.fn-static-page .phero > .wrap {
    padding-bottom: 82px;
    padding-top: 42px;
  }

  body.fn-static-page .crumb {
    margin-bottom: 72px;
  }

  body.fn-static-page .phero h1 {
    font-size: clamp(48px, 14.5vw, 70px);
    line-height: 0.9;
  }

  body.fn-static-page .phero .sub {
    font-size: 15px;
  }

  .fn-cover-meta {
    display: none;
  }

  body.fn-static-page .prose h2,
  body.fn-static-page .hubsec > h2 {
    font-size: 40px;
    padding-left: 48px;
  }

  body.fn-static-page .prose .lede {
    font-size: 26px;
  }

  body.fn-static-page .tablewrap {
    border-radius: 16px;
  }

  body.fn-static-page .aura-cta,
  body.fn-static-page .faq {
    border-radius: 22px;
    margin-inline: 0;
  }

  body.fn-static-page .result-actions,
  body.fn-static-page .actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.fn-static-page .phero::before {
    background-position: center;
  }

  .fn-hero-scroll i::after {
    animation: none;
  }
}

/* Aura Field Notes V4 — paper-panel stories with real visual pacing */
body.fn-static-page.fn-article .phero::after {
  background:
    linear-gradient(90deg, rgba(12, 9, 7, 0.22), rgba(12, 9, 7, 0.04)),
    linear-gradient(0deg, rgba(12, 9, 7, 0.46), transparent 50%, rgba(12, 9, 7, 0.18));
}

body.fn-static-page.fn-article .phero > .wrap {
  align-content: center;
  grid-template-columns: minmax(0, 690px) 1fr;
  padding-bottom: clamp(82px, 9vw, 120px);
  padding-top: clamp(82px, 9vw, 120px);
}

.fn-paper-panel {
  background: rgba(247, 242, 233, 0.94);
  box-shadow: 0 38px 100px rgba(13, 8, 5, 0.28);
  color: var(--fn-ink);
  grid-column: 1;
  padding: clamp(38px, 5.5vw, 74px);
  position: relative;
  z-index: 3;
}

.fn-paper-panel::after {
  border: 1px solid rgba(29, 22, 15, 0.15);
  content: "";
  inset: 13px;
  pointer-events: none;
  position: absolute;
}

body.fn-static-page.fn-article .fn-paper-panel .crumb {
  color: rgba(29, 22, 15, 0.52);
  margin-bottom: clamp(42px, 6vh, 66px);
}

body.fn-static-page.fn-article .fn-paper-panel .k,
body.fn-static-page.fn-article .fn-paper-panel .crumb a {
  color: var(--fn-coral);
}

body.fn-static-page.fn-article .fn-paper-panel h1 {
  color: var(--fn-plum);
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: 0.9;
}

body.fn-static-page.fn-article .fn-paper-panel h1 em {
  color: var(--fn-coral);
}

body.fn-static-page.fn-article .fn-paper-panel .sub {
  color: rgba(29, 22, 15, 0.72);
  font-size: 16px;
  line-height: 1.62;
  margin-top: 24px;
}

body.fn-static-page.fn-article .fn-paper-panel .byline {
  border-color: rgba(29, 22, 15, 0.17);
  color: rgba(29, 22, 15, 0.5);
}

.fn-facts {
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(29, 22, 15, 0.14);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 12px 0 clamp(62px, 8vw, 92px);
}

.fn-facts > div {
  border-right: 1px solid rgba(29, 22, 15, 0.14);
  padding: 20px 18px;
}

.fn-facts > div:last-child {
  border-right: 0;
}

.fn-facts small,
.fn-author-card > span {
  color: var(--fn-coral);
  display: block;
  font-family: var(--fn-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.fn-facts b {
  display: block;
  font-family: var(--fn-editorial);
  font-size: 18px;
  font-weight: 450;
  line-height: 1.15;
  margin-top: 8px;
}

body.fn-static-page .prose > .fn-story-image {
  margin: clamp(62px, 9vw, 112px) 0;
}

.fn-story-image {
  background: var(--fn-plum);
  box-shadow: 0 30px 80px rgba(29, 22, 15, 0.15);
  margin-left: clamp(-55px, -4vw, -20px) !important;
  overflow: hidden;
  width: calc(100% + clamp(40px, 8vw, 110px));
}

.fn-story-image img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.fn-story-image figcaption {
  align-items: start;
  color: rgba(255, 255, 255, 0.68);
  display: grid;
  font-size: 11px;
  gap: 16px;
  grid-template-columns: 28px 1fr;
  line-height: 1.55;
  padding: 16px 20px 18px;
}

.fn-story-image figcaption span {
  color: var(--fn-acid);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.fn-author-card {
  background:
    linear-gradient(120deg, rgba(13, 9, 7, 0.97), rgba(13, 9, 7, 0.72)),
    var(--fn-cover) center / cover;
  color: white;
  margin-top: clamp(75px, 10vw, 120px);
  overflow: hidden;
  padding: clamp(34px, 6vw, 62px);
  position: relative;
}

.fn-author-card::after {
  border: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
  inset: 12px;
  pointer-events: none;
  position: absolute;
}

.fn-author-card h3 {
  color: white;
  font-family: var(--fn-editorial) !important;
  font-size: clamp(31px, 4.5vw, 52px) !important;
  font-weight: 430 !important;
  letter-spacing: -0.045em !important;
  line-height: 1.02 !important;
  margin: 18px 0 0 !important;
  max-width: 650px;
}

body.fn-static-page .prose .fn-author-card p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 22px;
  max-width: 600px;
}

body.fn-static-page .prose .fn-author-card a {
  border-bottom: 1px solid currentColor;
  color: var(--fn-acid);
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-top: 12px;
  padding-bottom: 7px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 2;
}

@media (max-width: 820px) {
  body.fn-static-page.fn-article .phero > .wrap {
    align-content: end;
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 78px;
  }

  .fn-paper-panel {
    max-width: 620px;
    padding: 42px 38px;
  }

  .fn-story-image {
    margin-left: 0 !important;
    width: 100%;
  }
}

@media (max-width: 560px) {
  body.fn-static-page.fn-article .phero {
    min-height: 820px;
  }

  body.fn-static-page.fn-article .phero > .wrap {
    min-height: 820px;
    padding-bottom: 70px;
    padding-top: 68px;
  }

  .fn-paper-panel {
    padding: 34px 27px;
  }

  body.fn-static-page.fn-article .fn-paper-panel .crumb {
    margin-bottom: 52px;
  }

  body.fn-static-page.fn-article .fn-paper-panel h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

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

  .fn-facts > div {
    border-bottom: 1px solid rgba(29, 22, 15, 0.14);
    border-right: 0;
    padding: 16px;
  }

  .fn-facts > div:last-child {
    border-bottom: 0;
  }

  .fn-story-image {
    margin-block: 65px !important;
  }

  .fn-story-image img {
    aspect-ratio: 4 / 3;
  }
}

/* Aura Field Notes V5 — one visual system, four useful editorial formats */
body.fn-static-page.fn-article {
  --fn-format-accent: #a4441f;
  --fn-format-surface: #e8ddcd;
}

body.fn-static-page.fn-format-route {
  --fn-format-accent: #b6522c;
  --fn-format-surface: #1a0e0a;
}

body.fn-static-page.fn-format-decision {
  --fn-format-accent: #8f381b;
  --fn-format-surface: #ddcbb5;
}

body.fn-static-page.fn-format-comfort {
  --fn-format-accent: #68705b;
  --fn-format-surface: #dfe0d2;
}

body.fn-static-page.fn-format-system {
  --fn-format-accent: #c66c43;
  --fn-format-surface: #283033;
}

body.fn-static-page.fn-article .phero {
  min-height: calc(82svh - 72px);
}

body.fn-static-page.fn-article .phero::before {
  filter: saturate(0.72) contrast(1.07) brightness(0.88);
  opacity: 1;
  transform: scale(1.025);
}

body.fn-static-page.fn-article .phero::after {
  background:
    linear-gradient(90deg, rgba(12, 9, 7, 0.78) 0%, rgba(12, 9, 7, 0.4) 48%, rgba(12, 9, 7, 0.08) 78%),
    linear-gradient(0deg, rgba(12, 9, 7, 0.92) 0%, rgba(12, 9, 7, 0.12) 64%, rgba(12, 9, 7, 0.28));
}

body.fn-static-page.fn-article .phero > .wrap {
  align-content: end;
  display: grid;
  grid-template-columns: minmax(0, 940px) 1fr;
  max-width: 1320px;
  min-height: inherit;
  padding-bottom: clamp(86px, 9vw, 128px);
  padding-top: clamp(90px, 11vw, 150px);
}

body.fn-static-page.fn-article .fn-paper-panel {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: transparent;
  box-shadow: none;
  color: white;
  max-width: 940px;
  padding: 0;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.24);
}

body.fn-static-page.fn-article .fn-paper-panel::after {
  display: none;
}

body.fn-static-page.fn-article .fn-paper-panel .crumb {
  color: rgba(255, 255, 255, 0.56);
  margin-bottom: clamp(30px, 4vh, 46px);
}

body.fn-static-page.fn-article .fn-paper-panel .crumb a,
body.fn-static-page.fn-article .fn-paper-panel .k {
  color: #f09b69;
}

body.fn-static-page.fn-article .fn-paper-panel h1 {
  color: #fffaf1;
  font-size: clamp(58px, 7vw, 98px);
  line-height: 0.89;
  max-width: 900px;
}

body.fn-static-page.fn-article .fn-paper-panel h1 em {
  color: #ef8f59;
}

body.fn-static-page.fn-article .fn-paper-panel .sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.58;
  max-width: 660px;
}

body.fn-static-page.fn-article .fn-paper-panel .byline {
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.58);
  max-width: 660px;
}

body.fn-static-page.fn-article main {
  background: #f3ece2;
  padding: clamp(72px, 8vw, 112px) 0 clamp(90px, 10vw, 140px);
}

body.fn-static-page.fn-article main > .wrap {
  gap: clamp(50px, 6vw, 82px);
  grid-template-columns: minmax(185px, 225px) minmax(0, 760px);
}

body.fn-static-page.fn-article .fn-index {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(29, 22, 15, 0.2);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0 0 0 15px;
  top: 98px;
}

body.fn-static-page.fn-article .fn-index-kicker {
  color: var(--fn-format-accent);
  padding: 2px 8px 13px;
}

body.fn-static-page.fn-article .fn-index nav {
  gap: 0;
}

body.fn-static-page.fn-article .fn-index nav a {
  border-radius: 0;
  color: rgba(29, 22, 15, 0.58);
  font-size: 10px;
  gap: 7px;
  grid-template-columns: 20px 1fr;
  padding: 7px 8px;
}

body.fn-static-page.fn-article .fn-index nav a span {
  color: var(--fn-format-accent);
  font-size: 8px;
}

body.fn-static-page.fn-article .fn-index nav a:hover,
body.fn-static-page.fn-article .fn-index nav a.is-active {
  background: transparent;
  color: var(--fn-plum);
  padding-left: 13px;
}

body.fn-static-page.fn-article .fn-index nav a.is-active {
  box-shadow: inset 2px 0 var(--fn-format-accent);
}

body.fn-static-page.fn-article .prose,
body.fn-static-page.fn-article .faq,
body.fn-static-page.fn-article .verified {
  max-width: 760px;
}

body.fn-static-page.fn-article .prose > p,
body.fn-static-page.fn-article .prose > ul,
body.fn-static-page.fn-article .prose > ol,
body.fn-static-page.fn-article .prose > blockquote,
body.fn-static-page.fn-article .prose > .tablewrap,
body.fn-static-page.fn-article .prose > .aura-cta,
body.fn-static-page.fn-article .prose > .note {
  margin-bottom: 24px;
}

body.fn-static-page.fn-article .prose p,
body.fn-static-page.fn-article .prose li {
  font-size: 17px;
  line-height: 1.76;
}

body.fn-static-page.fn-article .prose .lede {
  color: var(--fn-plum);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.28;
  margin-bottom: 0;
  padding-bottom: 31px;
}

body.fn-static-page.fn-article .prose .lede::after {
  background: var(--fn-format-accent);
  height: 3px;
  width: 68px;
}

body.fn-static-page.fn-article .prose h2 {
  color: var(--fn-plum);
  font-size: clamp(42px, 4.5vw, 58px);
  line-height: 0.98;
  margin: clamp(60px, 7vw, 82px) 0 20px;
  min-height: 0;
  padding-left: 48px;
}

body.fn-static-page.fn-article .prose h2::before {
  color: var(--fn-format-accent);
  top: 9px;
}

body.fn-static-page.fn-article .prose h2::after {
  background: rgba(29, 22, 15, 0.22);
  top: 29px;
  width: 27px;
}

body.fn-static-page.fn-article .prose h2 + p,
body.fn-static-page.fn-article .prose h2 + ul,
body.fn-static-page.fn-article .prose h2 + ol,
body.fn-static-page.fn-article .prose h2 + .tablewrap {
  margin-top: 0;
}

body.fn-static-page.fn-article .prose h3 {
  margin: 36px 0 11px;
}

body.fn-static-page.fn-article .fn-facts {
  background: transparent;
  border: solid rgba(29, 22, 15, 0.15);
  border-width: 1px 0;
  margin: 0 0 32px;
}

body.fn-static-page.fn-article .fn-facts > div {
  padding: 17px 15px;
}

body.fn-static-page.fn-article .fn-facts small,
body.fn-static-page.fn-article .fn-author-card > span {
  color: var(--fn-format-accent);
}

body.fn-static-page.fn-article .fn-facts b {
  font-size: 16px;
}

.fn-signal-module {
  background: var(--fn-format-surface);
  border: 1px solid rgba(29, 22, 15, 0.14);
  margin: 0 0 clamp(55px, 7vw, 76px);
  overflow: hidden;
}

.fn-signal-module > p {
  border-bottom: 1px solid rgba(29, 22, 15, 0.14);
  color: var(--fn-format-accent) !important;
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 !important;
  padding: 13px 16px;
  text-transform: uppercase;
}

.fn-signal-module > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fn-signal-module > div > div {
  border-right: 1px solid rgba(29, 22, 15, 0.14);
  min-height: 102px;
  padding: 18px 16px;
}

.fn-signal-module > div > div:last-child {
  border-right: 0;
}

.fn-signal-module small {
  color: rgba(29, 22, 15, 0.52);
  display: block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.fn-signal-module b {
  display: block;
  font-family: var(--fn-editorial);
  font-size: 19px;
  font-weight: 450;
  line-height: 1.15;
  margin-top: 9px;
}

body.fn-static-page.fn-format-route .fn-signal-module,
body.fn-static-page.fn-format-system .fn-signal-module {
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
}

body.fn-static-page.fn-format-route .fn-signal-module > p,
body.fn-static-page.fn-format-route .fn-signal-module > div > div,
body.fn-static-page.fn-format-system .fn-signal-module > p,
body.fn-static-page.fn-format-system .fn-signal-module > div > div {
  border-color: rgba(255, 255, 255, 0.14);
}

body.fn-static-page.fn-format-route .fn-signal-module small,
body.fn-static-page.fn-format-system .fn-signal-module small {
  color: rgba(255, 255, 255, 0.52);
}

body.fn-static-page.fn-format-route .fn-signal-module > p,
body.fn-static-page.fn-format-system .fn-signal-module > p {
  color: #ef9a69 !important;
}

body.fn-static-page.fn-article .prose > .fn-story-image {
  margin-bottom: clamp(52px, 7vw, 72px) !important;
  margin-top: clamp(58px, 7vw, 78px) !important;
}

body.fn-static-page.fn-article .fn-story-image {
  box-shadow: none;
  margin-left: -42px !important;
  width: calc(100% + 84px);
}

body.fn-static-page.fn-article .fn-story-image--2 {
  margin-left: 0 !important;
  width: calc(100% + 42px);
}

body.fn-static-page.fn-article .fn-story-image img {
  aspect-ratio: 16 / 9;
  filter: saturate(0.84) contrast(1.03);
}

body.fn-static-page.fn-article .fn-story-image figcaption {
  background: var(--fn-plum);
  padding: 14px 18px 16px;
}

body.fn-static-page.fn-article .prose blockquote {
  border-radius: 0;
  box-shadow: none;
  font-size: clamp(25px, 3vw, 34px);
  margin: 52px 0;
}

body.fn-static-page.fn-article .tablewrap {
  border-radius: 0;
  box-shadow: none;
  margin: 36px 0;
}

body.fn-static-page.fn-format-decision .tablewrap {
  border-top: 4px solid var(--fn-format-accent);
}

body.fn-static-page.fn-format-comfort .note {
  background: #e1e3d6;
  border-color: rgba(104, 112, 91, 0.38);
}

body.fn-static-page.fn-format-system .note {
  background: #e0e5e5;
  border-color: rgba(40, 48, 51, 0.35);
}

body.fn-static-page.fn-article .fn-author-card {
  margin-top: clamp(70px, 8vw, 95px);
}

/* Never reserve blank space for a reveal. Content remains visible at every scroll speed. */
.fn-motion body.fn-static-page.fn-article .prose h2,
.fn-motion body.fn-static-page.fn-article .tablewrap,
.fn-motion body.fn-static-page.fn-article .note,
.fn-motion body.fn-static-page.fn-article .aura-cta,
.fn-motion body.fn-static-page.fn-article .faq,
.fn-motion body.fn-static-page.fn-article .rcard {
  opacity: 1;
  transform: none;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease;
}

@media (max-width: 820px) {
  body.fn-static-page.fn-article .phero,
  body.fn-static-page.fn-article .phero > .wrap {
    min-height: 720px;
  }

  body.fn-static-page.fn-article .phero > .wrap {
    align-content: end;
    display: grid;
    padding-bottom: 72px;
    padding-top: 90px;
  }

  body.fn-static-page.fn-article .fn-paper-panel {
    max-width: 680px;
    padding: 0;
  }

  body.fn-static-page.fn-article .fn-paper-panel h1 {
    font-size: clamp(54px, 11vw, 82px);
  }

  body.fn-static-page.fn-article main > .wrap {
    display: block;
  }

  body.fn-static-page.fn-article .fn-story-image,
  body.fn-static-page.fn-article .fn-story-image--2 {
    margin-left: 0 !important;
    width: 100%;
  }
}

@media (max-width: 560px) {
  body.fn-static-page.fn-article .phero,
  body.fn-static-page.fn-article .phero > .wrap {
    min-height: 680px;
  }

  body.fn-static-page.fn-article .phero > .wrap {
    padding-bottom: 58px;
    padding-top: 82px;
  }

  body.fn-static-page.fn-article .fn-paper-panel .crumb {
    margin-bottom: 34px;
  }

  body.fn-static-page.fn-article .fn-paper-panel h1 {
    font-size: clamp(45px, 13vw, 60px);
  }

  body.fn-static-page.fn-article .fn-paper-panel .sub {
    font-size: 14px;
  }

  body.fn-static-page.fn-article main {
    padding-top: 58px;
  }

  body.fn-static-page.fn-article .prose .lede {
    font-size: 25px;
  }

  body.fn-static-page.fn-article .fn-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(132px, 1fr));
    overflow-x: auto;
  }

  body.fn-static-page.fn-article .fn-facts > div {
    border-bottom: 0;
    border-right: 1px solid rgba(29, 22, 15, 0.14);
  }

  .fn-signal-module > div {
    grid-template-columns: 1fr;
  }

  .fn-signal-module > div > div {
    border-bottom: 1px solid rgba(29, 22, 15, 0.14);
    border-right: 0;
    min-height: 0;
    padding: 15px;
  }

  .fn-signal-module > div > div:last-child {
    border-bottom: 0;
  }

  body.fn-static-page.fn-format-route .fn-signal-module > div > div,
  body.fn-static-page.fn-format-system .fn-signal-module > div > div {
    border-color: rgba(255, 255, 255, 0.14);
  }

  body.fn-static-page.fn-article .prose h2 {
    font-size: 38px;
    margin-top: 56px;
    padding-left: 41px;
  }

  body.fn-static-page.fn-article .prose h2::before {
    top: 7px;
  }

  body.fn-static-page.fn-article .prose h2::after {
    top: 26px;
    width: 23px;
  }

  body.fn-static-page.fn-article .prose > .fn-story-image {
    margin-bottom: 52px !important;
    margin-top: 54px !important;
  }

  body.fn-static-page.fn-article .fn-story-image img {
    aspect-ratio: 4 / 3;
  }
}

/* Aura Field Notes V6 — photographic article covers and mobile reading */
body.fn-static-page.fn-article .phero {
  background: #18100b;
  min-height: clamp(680px, calc(100svh - 72px), 900px);
}

body.fn-static-page.fn-article .phero::before {
  display: none;
}

body.fn-static-page.fn-article .fn-hero-media {
  background: #241711;
  inset: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  z-index: -3;
}

body.fn-static-page.fn-article .fn-hero-media img {
  filter: saturate(0.92) contrast(1.03) brightness(0.86);
  height: 100%;
  object-fit: cover;
  object-position: var(--fn-cover-position, center);
  transform: scale(1.015);
  width: 100%;
}

body.fn-static-page.fn-article .phero::after {
  background:
    linear-gradient(90deg, rgba(10, 7, 5, 0.77) 0%, rgba(10, 7, 5, 0.36) 53%, rgba(10, 7, 5, 0.08) 82%),
    linear-gradient(0deg, rgba(10, 7, 5, 0.88) 0%, rgba(10, 7, 5, 0.12) 58%, rgba(10, 7, 5, 0.3));
  z-index: -2;
}

body.fn-static-page.fn-article .phero > .wrap {
  align-content: end;
  grid-template-columns: minmax(0, 810px) 1fr;
  max-width: 1440px;
  padding-bottom: clamp(72px, 8vw, 110px);
  padding-top: clamp(92px, 10vw, 142px);
}

body.fn-static-page.fn-article .fn-paper-panel {
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  backdrop-filter: blur(18px) saturate(115%);
  background: linear-gradient(135deg, rgba(20, 13, 9, 0.66), rgba(20, 13, 9, 0.34));
  border: 1px solid rgba(255, 250, 241, 0.2);
  box-shadow: 0 32px 90px rgba(6, 3, 2, 0.26);
  max-width: 810px;
  padding: clamp(34px, 4.5vw, 60px);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.24);
}

body.fn-static-page.fn-article .fn-paper-panel .crumb {
  margin-bottom: clamp(26px, 3.5vh, 40px);
}

body.fn-static-page.fn-article .fn-paper-panel h1 {
  font-size: clamp(53px, 6.2vw, 88px);
  line-height: 0.92;
}

body.fn-static-page.fn-article .fn-paper-panel .sub {
  font-size: clamp(15px, 1.35vw, 17px);
}

body.fn-static-page.fn-article .fn-cover-meta,
body.fn-static-page.fn-article .fn-hero-scroll {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.72);
}

@media (max-width: 980px) {
  body.fn-static-page.fn-article .phero,
  body.fn-static-page.fn-article .phero > .wrap {
    min-height: max(690px, calc(100svh - 68px));
  }

  body.fn-static-page.fn-article .phero > .wrap {
    grid-template-columns: minmax(0, 700px) 1fr;
    padding-bottom: 70px;
    padding-top: 88px;
  }

  body.fn-static-page.fn-article .fn-paper-panel {
    max-width: 700px;
    padding: 42px;
  }

  body.fn-static-page.fn-article .fn-paper-panel h1 {
    font-size: clamp(52px, 8.4vw, 78px);
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 72px;
  }

  body.fn-static-page .top {
    background: rgba(16, 11, 8, 0.92);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  body.fn-static-page .top-in {
    gap: 10px;
    height: 62px;
    padding-inline: 16px;
  }

  body.fn-static-page .fn-brand-mark {
    height: 31px;
    width: 31px;
  }

  body.fn-static-page .brand {
    gap: 8px;
  }

  body.fn-static-page .brand .b1 {
    font-size: 18px;
  }

  body.fn-static-page .brand .b2 {
    font-size: 6.5px;
    letter-spacing: 0.21em;
    margin-top: 5px;
  }

  body.fn-static-page .fn-edition,
  body.fn-static-page nav.links {
    display: none;
  }

  body.fn-static-page .cta-nav {
    font-size: 8px;
    letter-spacing: 0.11em;
    margin-left: auto;
    padding: 10px 11px;
  }

  body.fn-static-page.fn-article .phero,
  body.fn-static-page.fn-article .phero > .wrap {
    min-height: max(670px, calc(100svh - 62px));
  }

  body.fn-static-page.fn-article .fn-hero-media img {
    filter: saturate(0.94) contrast(1.02) brightness(0.78);
    transform: none;
  }

  body.fn-static-page.fn-article .phero::after {
    background:
      linear-gradient(0deg, rgba(10, 7, 5, 0.94) 0%, rgba(10, 7, 5, 0.54) 54%, rgba(10, 7, 5, 0.18) 100%),
      linear-gradient(90deg, rgba(10, 7, 5, 0.45), rgba(10, 7, 5, 0.04));
  }

  body.fn-static-page.fn-article .phero > .wrap {
    align-content: end;
    display: grid;
    padding: 74px 16px 26px;
  }

  body.fn-static-page.fn-article .fn-paper-panel {
    -webkit-backdrop-filter: blur(14px) saturate(110%);
    backdrop-filter: blur(14px) saturate(110%);
    background: linear-gradient(145deg, rgba(20, 13, 9, 0.68), rgba(20, 13, 9, 0.38));
    border-color: rgba(255, 250, 241, 0.22);
    max-width: none;
    padding: 24px 20px 21px;
    width: 100%;
  }

  body.fn-static-page.fn-article .fn-paper-panel .crumb {
    font-size: 8px;
    letter-spacing: 0.13em;
    margin-bottom: 25px;
  }

  body.fn-static-page.fn-article .fn-paper-panel .k {
    font-size: 8px;
    letter-spacing: 0.2em;
    margin-bottom: 11px;
  }

  body.fn-static-page.fn-article .fn-paper-panel .k::before {
    height: 1px;
    width: 27px;
  }

  body.fn-static-page.fn-article .fn-paper-panel h1 {
    font-size: clamp(39px, 11.7vw, 54px);
    letter-spacing: -0.048em;
    line-height: 0.94;
  }

  body.fn-static-page.fn-article .fn-paper-panel .sub {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 18px;
  }

  body.fn-static-page.fn-article .fn-paper-panel .byline {
    align-items: center;
    display: grid;
    font-size: 7px;
    gap: 10px;
    grid-template-columns: 1fr auto;
    letter-spacing: 0.1em;
    margin-top: 18px;
    padding-top: 13px;
  }

  body.fn-static-page.fn-article .fn-cover-meta,
  body.fn-static-page.fn-article .fn-hero-scroll {
    display: none;
  }

  body.fn-static-page.fn-article main {
    padding: 48px 0 74px;
  }

  body.fn-static-page.fn-article main > .wrap {
    display: block;
    padding-inline: 16px;
  }

  body.fn-static-page.fn-article .fn-index {
    display: none;
  }

  body.fn-static-page.fn-article .prose p,
  body.fn-static-page.fn-article .prose li {
    font-size: 16px;
    line-height: 1.7;
  }

  body.fn-static-page.fn-article .prose .lede {
    font-size: clamp(23px, 6.7vw, 29px);
    line-height: 1.25;
    padding-bottom: 26px;
  }

  body.fn-static-page.fn-article .fn-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 25px;
    overflow: visible;
  }

  body.fn-static-page.fn-article .fn-facts > div {
    border-bottom: 1px solid rgba(29, 22, 15, 0.14);
    min-width: 0;
    padding: 14px 12px;
  }

  body.fn-static-page.fn-article .fn-facts > div:first-child {
    border-right: 0;
    grid-column: 1 / -1;
  }

  body.fn-static-page.fn-article .fn-facts > div:last-child {
    border-bottom: 0;
    border-right: 0;
  }

  body.fn-static-page.fn-article .fn-facts b {
    font-size: 15px;
  }

  body.fn-static-page.fn-article .fn-signal-module {
    margin-bottom: 46px;
  }

  body.fn-static-page.fn-article .fn-signal-module > div {
    grid-template-columns: 1fr;
  }

  body.fn-static-page.fn-article .fn-signal-module > div > div {
    min-height: 0;
    padding: 14px;
  }

  body.fn-static-page.fn-article .prose h2 {
    font-size: clamp(33px, 9.3vw, 42px);
    line-height: 1;
    margin: 50px 0 17px;
    padding-left: 34px;
  }

  body.fn-static-page.fn-article .prose h2::before {
    font-size: 8px;
    top: 6px;
  }

  body.fn-static-page.fn-article .prose h2::after {
    top: 23px;
    width: 20px;
  }

  body.fn-static-page.fn-article .prose > .fn-story-image,
  body.fn-static-page.fn-article .fn-story-image,
  body.fn-static-page.fn-article .fn-story-image--2 {
    margin: 48px -16px !important;
    width: calc(100% + 32px);
  }

  body.fn-static-page.fn-article .fn-story-image img {
    aspect-ratio: 4 / 3;
    filter: saturate(0.96) contrast(1.02);
  }

  body.fn-static-page.fn-article .fn-story-image figcaption {
    font-size: 10px;
    gap: 10px;
    grid-template-columns: 22px 1fr;
    padding: 13px 16px 15px;
  }

  body.fn-static-page.fn-article .prose blockquote {
    font-size: 23px;
    margin: 38px 0;
    padding: 25px 21px;
  }

  body.fn-static-page.fn-article .tablewrap {
    border-left: 0;
    border-right: 0;
    box-shadow: inset -28px 0 24px -30px rgba(29, 22, 15, 0.72);
    margin: 32px -16px;
    scrollbar-color: rgba(174, 76, 39, 0.62) rgba(29, 22, 15, 0.08);
    scrollbar-width: thin;
    width: calc(100% + 32px);
  }

  body.fn-static-page.fn-article .tablewrap table {
    min-width: 610px;
  }

  body.fn-static-page.fn-article .tablewrap th:first-child,
  body.fn-static-page.fn-article .tablewrap td:first-child {
    left: 0;
    position: sticky;
    z-index: 2;
  }

  body.fn-static-page.fn-article .tablewrap th:first-child {
    background: var(--fn-plum);
  }

  body.fn-static-page.fn-article .tablewrap td:first-child {
    background: #f3ece2;
  }

  body.fn-static-page.fn-article .note {
    padding: 20px;
  }

  body.fn-static-page.fn-article .aura-cta,
  body.fn-static-page.fn-article .faq,
  body.fn-static-page.fn-article .fn-author-card {
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
    padding: 30px 22px;
    width: calc(100% + 32px);
  }

  body.fn-static-page.fn-article .aura-cta b,
  body.fn-static-page.fn-article .fn-author-card h3 {
    font-size: clamp(29px, 8.4vw, 39px) !important;
  }

  body.fn-static-page.fn-article .aura-cta .row {
    align-items: stretch;
    flex-direction: column;
  }

  body.fn-static-page.fn-article .aura-cta .btn {
    width: 100%;
  }

  body.fn-static-page.fn-article .faq h2 {
    font-size: 38px;
  }

  body.fn-static-page.fn-article .related {
    padding-inline: 0;
  }

  body.fn-static-page.fn-article .related .wrap,
  body.fn-static-page.fn-article footer .wrap {
    padding-inline: 16px;
  }
}

@media (max-width: 380px) {
  body.fn-static-page .cta-nav {
    letter-spacing: 0.08em;
    padding-inline: 9px;
  }

  body.fn-static-page.fn-article .fn-paper-panel {
    padding: 22px 17px 19px;
  }

  body.fn-static-page.fn-article .fn-paper-panel h1 {
    font-size: clamp(36px, 11.2vw, 45px);
  }
}

/* Aura Field Notes V7 — photographic glass calls to action */
body.fn-static-page.fn-article .aura-cta {
  -webkit-backdrop-filter: blur(18px) saturate(112%);
  backdrop-filter: blur(18px) saturate(112%);
  background: rgba(18, 12, 8, 0.56);
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 26px;
  box-shadow: 0 26px 74px rgba(22, 13, 8, 0.2);
  color: white;
  isolation: isolate;
  margin: clamp(52px, 7vw, 78px) 0;
  overflow: hidden;
  padding: clamp(32px, 5.2vw, 56px);
  position: relative;
}

body.fn-static-page.fn-article .aura-cta::before {
  background-image: var(--fn-cover);
  background-position: var(--fn-cover-position, center);
  background-size: cover;
  content: "";
  filter: saturate(0.9) contrast(1.04);
  inset: 0;
  opacity: 0.78;
  position: absolute;
  transform: scale(1.035);
  z-index: 0;
}

body.fn-static-page.fn-article .aura-cta::after {
  background:
    linear-gradient(100deg, rgba(12, 8, 6, 0.9) 0%, rgba(12, 8, 6, 0.72) 48%, rgba(12, 8, 6, 0.34) 100%),
    linear-gradient(0deg, rgba(12, 8, 6, 0.32), rgba(12, 8, 6, 0.08));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

body.fn-static-page.fn-article .aura-cta > * {
  position: relative;
  z-index: 2;
}

body.fn-static-page.fn-article .aura-cta:has(.row) {
  align-items: end;
  display: grid;
  gap: 18px clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.85fr);
}

body.fn-static-page.fn-article .aura-cta:has(.row) > b,
body.fn-static-page.fn-article .aura-cta:has(.row) > p {
  grid-column: 1;
}

body.fn-static-page.fn-article .aura-cta:has(.row) > b {
  align-self: end;
  margin: 0;
}

body.fn-static-page.fn-article .aura-cta:has(.row) > p {
  margin: 0;
}

body.fn-static-page.fn-article .aura-cta:has(.row) > .row {
  align-content: end;
  align-self: end;
  display: grid;
  gap: 10px;
  grid-column: 2;
  grid-row: 1 / span 2;
}

body.fn-static-page.fn-article .aura-cta b {
  color: #fffaf1;
  font-family: var(--fn-editorial);
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 430;
  letter-spacing: -0.048em;
  line-height: 0.98;
  text-transform: none;
}

body.fn-static-page.fn-article .aura-cta p {
  color: rgba(255, 250, 241, 0.76);
  font-size: 15px;
  line-height: 1.67;
  max-width: 580px;
}

body.fn-static-page.fn-article .aura-cta .btn {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 250, 241, 0.34);
  border-radius: 999px;
  box-shadow: none;
  justify-content: space-between;
  min-height: 48px;
  padding: 14px 18px;
  text-decoration: none;
  transform: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  width: 100%;
}

body.fn-static-page.fn-article .aura-cta .btn.fill {
  background: rgba(231, 139, 86, 0.9);
  border-color: rgba(245, 166, 116, 0.92);
  color: #1b100b;
}

body.fn-static-page.fn-article .aura-cta .btn.ghost {
  background: rgba(255, 250, 241, 0.1);
  border-color: rgba(255, 250, 241, 0.32);
  color: #fffaf1;
}

body.fn-static-page.fn-article .aura-cta .btn.fill:hover,
body.fn-static-page.fn-article .aura-cta .btn.ghost:hover {
  background: rgba(255, 250, 241, 0.92);
  border-color: rgba(255, 250, 241, 0.92);
  color: #1b100b;
  transform: translateY(-2px);
}

body.fn-static-page.fn-article .aura-cta-inline {
  background:
    linear-gradient(100deg, rgba(13, 9, 7, 0.9), rgba(13, 9, 7, 0.56)),
    var(--fn-cover) var(--fn-cover-position, center) / cover;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-left: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(22, 13, 8, 0.13);
  color: rgba(255, 250, 241, 0.86);
  overflow: hidden;
  padding: 22px 24px;
}

body.fn-static-page.fn-article .aura-cta-inline a {
  color: #f2a173;
  font-weight: 700;
}

@media (max-width: 760px) {
  body.fn-static-page.fn-article .aura-cta:has(.row) {
    display: block;
  }

  body.fn-static-page.fn-article .aura-cta:has(.row) > .row {
    display: grid;
    margin-top: 25px;
  }
}

@media (max-width: 700px) {
  body.fn-static-page.fn-article .aura-cta {
    border-left: 0;
    border-radius: 0;
    border-right: 0;
    margin: 48px -16px;
    padding: 32px 22px;
  }

  body.fn-static-page.fn-article .aura-cta::before {
    background-position: center;
    opacity: 0.7;
    transform: none;
  }

  body.fn-static-page.fn-article .aura-cta::after {
    background:
      linear-gradient(0deg, rgba(12, 8, 6, 0.92) 0%, rgba(12, 8, 6, 0.62) 72%, rgba(12, 8, 6, 0.42)),
      linear-gradient(90deg, rgba(12, 8, 6, 0.5), rgba(12, 8, 6, 0.14));
  }

  body.fn-static-page.fn-article .aura-cta b {
    font-size: clamp(31px, 9vw, 40px) !important;
  }

  body.fn-static-page.fn-article .aura-cta p {
    font-size: 14px;
    line-height: 1.62;
  }

  body.fn-static-page.fn-article .aura-cta .btn {
    min-height: 50px;
  }

  body.fn-static-page.fn-article .aura-cta-inline {
    border-radius: 0;
    margin-inline: -16px;
    padding: 22px 20px;
    width: calc(100% + 32px);
  }
}
