:root {
  --hf-black: #0c0c0b;
  --hf-black-2: #151411;
  --hf-black-3: #1d1b17;
  --hf-paper: #f1ece3;
  --hf-paper-2: #e8e0d3;
  --hf-ink: #171511;
  --hf-cream: #e7ded0;
  --hf-muted: #9d9488;
  --hf-rust: #cf5b2d;
  --hf-gold: #b69663;
  --hf-line-dark: rgba(231, 222, 208, 0.17);
  --hf-line-light: rgba(23, 21, 17, 0.17);
  --hf-serif: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  --hf-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --hf-max: 1500px;
}

html {
  scroll-behavior: smooth;
}

body.harley-front {
  min-width: 320px;
  margin: 0 !important;
  overflow-x: hidden;
  color: var(--hf-cream);
  background: var(--hf-black) !important;
  font-family: var(--hf-sans);
  letter-spacing: 0;
}

body.harley-front *,
body.harley-front *::before,
body.harley-front *::after {
  box-sizing: border-box;
}

body.harley-front a {
  color: inherit;
  text-decoration: none;
}

body.harley-front button,
body.harley-front input,
body.harley-front textarea {
  font: inherit;
  letter-spacing: 0;
}

body.harley-front button {
  color: inherit;
}

body.harley-front img {
  max-width: 100%;
}

body.harley-front .hf-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

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

.hf-logo-mark {
  display: block;
  flex: 0 0 auto;
  color: var(--hf-rust);
}

.hf-shell {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  background: var(--hf-black);
}

.hf-shell::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.18) 0.45px, transparent 0.55px),
    radial-gradient(rgba(207, 91, 45, 0.11) 0.4px, transparent 0.55px);
  background-position: 0 0, 9px 7px;
  background-size: 5px 5px, 13px 13px;
  mix-blend-mode: soft-light;
}

.hf-site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 max(28px, calc((100vw - var(--hf-max)) / 2));
  border-bottom: 1px solid var(--hf-line-dark);
  background: rgba(12, 12, 11, 0.96);
  backdrop-filter: blur(18px);
}

.hf-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  min-width: 0;
}

.hf-brand .hf-logo-mark {
  width: 31px;
  height: 31px;
}

.hf-brand span {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.hf-brand strong {
  font: 400 23px/1 var(--hf-serif);
  white-space: nowrap;
}

.hf-brand small {
  padding-left: 13px;
  border-left: 1px solid var(--hf-line-dark);
  color: var(--hf-rust);
  font-size: 8px;
  line-height: 1.35;
  letter-spacing: 1.4px;
}

.hf-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  height: 100%;
}

.hf-nav a {
  height: 78px;
  display: inline-flex;
  align-items: center;
  position: relative;
  color: #aaa195;
  font-size: 13px;
}

.hf-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: transparent;
}

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

.hf-nav a[aria-current="page"]::after {
  background: var(--hf-rust);
}

.hf-header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.hf-icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.hf-icon-button:hover {
  color: var(--hf-rust);
}

.hf-icon-button .hf-icon {
  width: 19px;
  height: 19px;
}

.hf-account-link {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 5px;
  padding-left: 15px;
  border-left: 1px solid var(--hf-line-dark);
  color: #b8afa3;
  font-size: 12px;
}

.hf-account-link:hover {
  color: var(--hf-rust);
}

.hf-account-link .hf-icon {
  width: 18px;
  height: 18px;
}

.hf-menu-button {
  display: none;
}

.hf-mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 65px 0 0;
  padding: 24px 20px 30px;
  background: rgba(12, 12, 11, 0.98);
  overflow: auto;
}

.hf-mobile-menu[hidden],
.hf-search-overlay[hidden] {
  display: none !important;
}

.hf-mobile-menu nav {
  border-top: 1px solid var(--hf-line-dark);
}

.hf-mobile-menu nav a {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--hf-line-dark);
  font: 400 24px/1.2 var(--hf-serif);
}

.hf-mobile-menu nav span {
  color: var(--hf-rust);
  font: 10px var(--hf-sans);
  letter-spacing: 1.2px;
}

.hf-mobile-chat {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding: 0 16px;
  border: 1px solid var(--hf-rust);
  border-radius: 0;
  background: transparent;
  color: var(--hf-cream);
}

.hf-search-overlay {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(8, 8, 7, 0.97);
}

.hf-search-close {
  position: absolute;
  top: 24px;
  right: max(24px, calc((100vw - var(--hf-max)) / 2));
  color: var(--hf-cream);
}

.hf-search-overlay form {
  width: min(840px, 100%);
}

.hf-search-overlay label {
  display: block;
  margin-bottom: 24px;
  color: var(--hf-rust);
  font-size: 11px;
  letter-spacing: 2px;
}

.hf-search-overlay form > div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--hf-cream);
}

.hf-search-overlay input {
  width: 100%;
  height: 80px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--hf-cream);
  font: 400 clamp(23px, 4vw, 46px)/1.2 var(--hf-serif);
}

.hf-search-overlay input::placeholder {
  color: #665f56;
}

.hf-search-overlay form button {
  height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 2px 0 20px;
  border: 0;
  background: transparent;
  color: var(--hf-rust);
  cursor: pointer;
}

.hf-search-overlay form p {
  margin: 18px 0 0;
  color: var(--hf-muted);
  font-size: 12px;
}

.hf-site-footer {
  min-height: 102px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 24px max(28px, calc((100vw - var(--hf-max)) / 2));
  border-top: 1px solid var(--hf-line-dark);
  background: var(--hf-black);
  color: #746d64;
}

.hf-site-footer > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hf-site-footer strong {
  color: var(--hf-cream);
  font: 400 18px var(--hf-serif);
}

.hf-site-footer span,
.hf-site-footer small {
  font-size: 9px;
  letter-spacing: 1.1px;
}

.hf-site-footer nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 11px;
}

.hf-site-footer nav button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hf-site-footer nav a:hover,
.hf-site-footer nav button:hover {
  color: var(--hf-rust);
}

.hf-site-footer > small {
  justify-self: end;
  color: var(--hf-rust);
}

.hf-support-button {
  position: fixed;
  z-index: 75;
  right: 22px;
  bottom: 22px;
  min-width: 88px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid rgba(231, 222, 208, 0.32);
  border-radius: 2px;
  background: #171512;
  color: var(--hf-cream);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.hf-support-button:hover {
  border-color: var(--hf-rust);
  color: var(--hf-rust);
}

.hf-support-button .hf-icon {
  width: 17px;
  height: 17px;
}

.hf-live-region {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 78px;
  max-width: 320px;
  padding: 12px 15px;
  border: 1px solid var(--hf-line-dark);
  background: var(--hf-black-2);
  color: var(--hf-cream);
  font-size: 12px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.hf-live-region.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hf-text-link,
button.hf-text-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid var(--hf-rust);
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 12px;
  cursor: pointer;
}

.hf-text-link:hover {
  color: var(--hf-rust);
}

.hf-text-link .hf-icon {
  width: 16px;
  height: 16px;
}

.hf-eyebrow {
  color: var(--hf-rust);
  font-size: 10px;
  letter-spacing: 1.8px;
}

.hf-primary-button {
  min-height: 48px;
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--hf-rust);
  border-radius: 1px;
  background: var(--hf-rust);
  color: #fff8ee !important;
  font-size: 13px;
  cursor: pointer;
}

.hf-primary-button:hover {
  background: #b84c23;
}

.hf-primary-button .hf-icon {
  width: 18px;
  height: 18px;
}

.hf-paper {
  color: var(--hf-ink);
  background-color: var(--hf-paper);
  background-image:
    radial-gradient(rgba(72, 55, 34, 0.08) 0.45px, transparent 0.6px),
    radial-gradient(rgba(255, 255, 255, 0.3) 0.4px, transparent 0.5px);
  background-size: 7px 7px, 11px 11px;
}

/* Home */
.hf-home {
  max-width: var(--hf-max);
  margin: 0 auto;
  padding: 42px 28px 76px;
}

.hf-home-hero {
  min-height: min(810px, calc(100svh - 78px));
  display: grid;
  grid-template-columns: 55px minmax(340px, 0.82fr) minmax(480px, 1.18fr) 36px;
  gap: clamp(22px, 3vw, 50px);
  align-items: stretch;
}

.hf-vertical-rail,
.hf-issue-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 16px;
  color: var(--hf-muted);
  font-size: 9px;
  letter-spacing: 2px;
}

.hf-vertical-rail > span,
.hf-vertical-rail > small,
.hf-issue-rail > span,
.hf-issue-rail > small {
  writing-mode: vertical-rl;
}

.hf-vertical-rail > span,
.hf-issue-rail > b {
  color: var(--hf-rust);
}

.hf-vertical-rail i,
.hf-issue-rail i {
  width: 1px;
  height: 185px;
  background: var(--hf-line-dark);
}

.hf-vertical-rail i::before,
.hf-issue-rail i::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin: 0 0 0 -2px;
  border-radius: 50%;
  background: var(--hf-rust);
}

.hf-vertical-rail b {
  color: var(--hf-cream);
  font: 400 13px/1.7 var(--hf-serif);
  text-align: center;
}

.hf-home-cover {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hf-line-dark);
  background: var(--hf-black-2);
}

.hf-home-cover > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
}

.hf-home-cover::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(12, 12, 11, 0.96));
}

.hf-home-cover-copy {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 3vw, 45px);
  bottom: clamp(30px, 4vw, 54px);
  left: clamp(24px, 3vw, 45px);
}

.hf-home-cover-copy > span {
  color: var(--hf-rust);
  font-size: 9px;
  letter-spacing: 1.5px;
}

.hf-home-cover-copy h1 {
  max-width: 580px;
  margin: 16px 0 13px;
  color: var(--hf-cream);
  font: 400 clamp(37px, 4vw, 61px)/1.18 var(--hf-serif);
  letter-spacing: 0;
}

.hf-home-cover-copy p {
  max-width: 540px;
  margin: 0;
  color: #a49b8e;
  font-size: 13px;
  line-height: 1.85;
}

.hf-home-cover-copy .hf-text-link {
  margin-top: 21px;
}

.hf-home-index {
  padding: 8px 0 20px;
}

.hf-index-heading {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--hf-line-dark);
  color: var(--hf-rust);
  font-size: 10px;
  letter-spacing: 1.3px;
}

.hf-index-heading small {
  color: #69635b;
  font-size: 9px;
}

.hf-index-row {
  min-height: 118px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--hf-line-dark);
  transition: transform 0.18s ease;
}

.hf-index-row:hover {
  transform: translateX(5px);
}

.hf-index-row img {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: cover;
  border: 1px solid var(--hf-line-dark);
  filter: saturate(0.65);
}

.hf-index-row-copy {
  min-width: 0;
}

.hf-index-row-copy strong {
  display: block;
  color: var(--hf-cream);
  font: 400 clamp(17px, 1.45vw, 24px)/1.35 var(--hf-serif);
}

.hf-index-row-copy small {
  display: block;
  margin-top: 9px;
  color: var(--hf-muted);
  font-size: 9px;
  letter-spacing: 0.8px;
}

.hf-index-row-copy small b {
  color: var(--hf-rust);
  font-weight: 400;
}

.hf-index-row > time {
  color: #777066;
  font-size: 9px;
  letter-spacing: 0.8px;
}

.hf-index-all {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  color: var(--hf-rust);
  font-size: 11px;
}

.hf-index-all .hf-icon {
  width: 16px;
  height: 16px;
}

.hf-issue-rail {
  gap: 17px;
}

.hf-issue-rail i {
  height: 135px;
}

.hf-issue-rail b {
  font-weight: 400;
}

.hf-home-statement {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 48px;
  padding: 30px 32px;
  border-top: 1px solid var(--hf-line-dark);
  border-bottom: 1px solid var(--hf-line-dark);
}

.hf-home-statement p {
  max-width: 820px;
  margin: 0;
  color: var(--hf-cream);
  font: 400 clamp(22px, 2.25vw, 35px)/1.45 var(--hf-serif);
}

.hf-home-statement span {
  color: var(--hf-rust);
  font-size: 9px;
  letter-spacing: 1.8px;
  white-space: nowrap;
}

.hf-access-bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--hf-line-dark);
}

.hf-access-bands article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--hf-line-dark);
  border-bottom: 1px solid var(--hf-line-dark);
}

.hf-access-bands article.is-primary {
  background: #181613;
}

.hf-access-bands article > span {
  color: var(--hf-rust);
  font-size: 9px;
  letter-spacing: 1.4px;
}

.hf-access-bands h2 {
  margin: 36px 0 12px;
  color: var(--hf-cream);
  font: 400 29px/1.2 var(--hf-serif);
}

.hf-access-bands p {
  margin: 0;
  color: var(--hf-muted);
  font-size: 13px;
  line-height: 1.85;
}

.hf-access-bands .hf-text-link {
  margin-top: auto;
}

.hf-home-flow {
  display: grid;
  grid-template-columns: 0.75fr 1.7fr;
  gap: 70px;
  padding: 86px 0 16px;
}

.hf-home-flow header > span {
  color: var(--hf-rust);
  font-size: 9px;
  letter-spacing: 1.5px;
}

.hf-home-flow h2 {
  margin: 22px 0 0;
  color: var(--hf-cream);
  font: 400 clamp(29px, 3vw, 44px)/1.35 var(--hf-serif);
}

.hf-home-flow ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hf-line-dark);
}

.hf-home-flow li {
  min-height: 74px;
  display: grid;
  grid-template-columns: 46px 150px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--hf-line-dark);
}

.hf-home-flow li b {
  color: var(--hf-rust);
  font-size: 9px;
  letter-spacing: 1px;
}

.hf-home-flow li strong {
  color: var(--hf-cream);
  font: 400 18px var(--hf-serif);
}

.hf-home-flow li span {
  color: var(--hf-muted);
  font-size: 12px;
}

/* Library */
.hf-library-page {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
}

.hf-library-title-rail {
  padding: 38px 20px;
  border-right: 1px solid var(--hf-line-dark);
  background: var(--hf-black-2);
  color: var(--hf-cream);
}

.hf-library-title-rail strong,
.hf-library-title-rail span {
  display: block;
  writing-mode: vertical-rl;
}

.hf-library-title-rail strong {
  margin: 0 auto;
  font: 400 46px/1.35 var(--hf-serif);
}

.hf-library-title-rail span {
  margin: 28px auto 0;
  color: var(--hf-muted);
  font-size: 11px;
  letter-spacing: 2px;
}

.hf-library-layout {
  width: 100%;
  max-width: 1560px;
  display: grid;
  grid-template-columns: 225px minmax(480px, 1fr) 330px;
  margin: 0 auto;
}

.hf-library-sidebar {
  padding: 37px 24px 60px;
  border-right: 1px solid var(--hf-line-light);
}

.hf-library-sidebar > p {
  margin: 0 0 12px;
  color: #9a8467;
  font-size: 9px;
  letter-spacing: 1.6px;
}

.hf-library-sidebar > button {
  width: 100%;
  min-height: 43px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 0 9px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: #554f47;
  text-align: left;
  cursor: pointer;
}

.hf-library-sidebar > button[data-library-topic] {
  grid-template-columns: minmax(0, 1fr);
}

.hf-library-sidebar > button:hover,
.hf-library-sidebar > button.is-active {
  background: rgba(23, 21, 17, 0.08);
  color: var(--hf-ink);
}

.hf-library-sidebar > button .hf-icon {
  width: 17px;
  height: 17px;
}

.hf-library-sidebar > button span {
  font-size: 13px;
}

.hf-library-sidebar > button b {
  color: #a7967c;
  font-size: 10px;
  font-weight: 400;
}

.hf-library-sidebar hr {
  height: 1px;
  margin: 24px 0;
  border: 0;
  background: var(--hf-line-light);
}

.hf-library-sidebar blockquote {
  margin: 42px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--hf-line-light);
  color: #6e655a;
  font: 400 15px/1.9 var(--hf-serif);
}

.hf-library-sidebar blockquote::before {
  content: "“";
  display: block;
  margin-bottom: 6px;
  color: #b3a899;
  font: 400 40px/1 var(--hf-serif);
}

.hf-library-main {
  min-width: 0;
  padding: 38px 36px 64px;
}

.hf-library-toolbar {
  min-height: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--hf-line-light);
}

.hf-library-tabs {
  display: flex;
  gap: 26px;
}

.hf-library-tabs button {
  position: relative;
  padding: 0 0 17px;
  border: 0;
  background: transparent;
  color: #6d655b;
  cursor: pointer;
}

.hf-library-tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: transparent;
}

.hf-library-tabs button.is-active {
  color: var(--hf-ink);
  font-weight: 600;
}

.hf-library-tabs button.is-active::after {
  background: var(--hf-ink);
}

.hf-library-toolbar > label {
  min-width: 168px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 11px;
  border-bottom: 1px solid #b8aea0;
}

.hf-library-toolbar > label .hf-icon {
  width: 16px;
  height: 16px;
}

.hf-library-toolbar input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--hf-ink);
  font-size: 12px;
}

.hf-library-list {
  border-bottom: 1px solid var(--hf-line-light);
}

.hf-library-row {
  min-height: 116px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--hf-line-light);
}

.hf-library-row[hidden] {
  display: none;
}

.hf-library-row > time b {
  display: block;
  font: 400 30px/1 var(--hf-serif);
}

.hf-library-row > time span {
  display: block;
  margin-top: 8px;
  color: #81776c;
  font-size: 9px;
}

.hf-library-row > a {
  min-width: 0;
  padding: 18px 0;
}

.hf-library-row > a strong {
  display: block;
  color: var(--hf-ink);
  font: 400 clamp(18px, 1.65vw, 25px)/1.3 var(--hf-serif);
}

.hf-library-row > a > span {
  display: block;
  max-width: 620px;
  margin-top: 7px;
  overflow: hidden;
  color: #746b60;
  font-size: 11px;
  line-height: 1.65;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hf-library-row > a > small {
  display: block;
  margin-top: 7px;
  color: #9a8e81;
  font-size: 9px;
  letter-spacing: 0.3px;
}

.hf-library-row > a:hover strong {
  color: var(--hf-rust);
}

.hf-access-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6f665a;
  font-size: 10px;
  white-space: nowrap;
}

.hf-access-state .hf-icon {
  width: 15px;
  height: 15px;
}

.hf-access-state.is-member,
.hf-access-state.is-paid,
.hf-access-state.is-deep {
  color: #9b6a2a;
}

.hf-library-empty {
  padding: 45px 0;
  color: #766e64;
  text-align: center;
  font-size: 13px;
}

.hf-library-dossier {
  align-self: start;
  min-height: 700px;
  padding: 38px 28px 50px;
  border-left: 1px solid var(--hf-line-light);
}

.hf-library-dossier > span {
  display: block;
  color: #9c7a4d;
  font-size: 9px;
  letter-spacing: 1.3px;
}

.hf-library-dossier > img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  display: block;
  margin-top: 20px;
  object-fit: cover;
  filter: sepia(0.13) saturate(0.62);
}

.hf-library-dossier h2 {
  margin: 23px 0 12px;
  font: 400 30px/1.35 var(--hf-serif);
}

.hf-library-dossier p {
  margin: 0;
  color: #6f665b;
  font: 400 13px/1.8 var(--hf-serif);
}

.hf-library-dossier ul {
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hf-line-light);
}

.hf-library-dossier li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--hf-line-light);
  color: #6c6256;
  font-size: 11px;
}

.hf-library-dossier li b {
  font-weight: 400;
}

/* Membership */
.hf-membership-page {
  padding: 0 max(28px, calc((100vw - var(--hf-max)) / 2)) 96px;
}

.hf-membership-hero {
  padding: 58px 0 38px;
  text-align: center;
}

.hf-membership-hero > h1 {
  max-width: 1300px;
  margin: 18px auto 12px;
  color: var(--hf-ink);
  font: 500 clamp(52px, 7vw, 102px)/1.08 var(--hf-serif);
  letter-spacing: 0;
}

.hf-membership-hero > p {
  max-width: 740px;
  margin: 0 auto;
  color: #72695f;
  font: 400 15px/1.9 var(--hf-serif);
}

.hf-membership-stage {
  display: grid;
  grid-template-columns: minmax(500px, 1.25fr) minmax(290px, 0.75fr);
  align-items: center;
  gap: 60px;
  padding: 52px 6% 42px;
}

.hf-member-ticket {
  min-height: 350px;
  position: relative;
  padding: 34px 42px 29px;
  overflow: hidden;
  border: 1px solid #3f382f;
  border-radius: 5px;
  background-color: #151411;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.12) 0.5px, transparent 0.65px),
    linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.035), transparent);
  background-size: 5px 5px, auto;
  color: var(--hf-cream);
  box-shadow: 0 20px 38px rgba(30, 22, 14, 0.2);
  transform: rotate(-2deg);
}

.hf-member-ticket::after {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px dashed rgba(207, 91, 45, 0.56);
}

.hf-ticket-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
}

.hf-ticket-head .hf-logo-mark {
  width: 28px;
  height: 28px;
}

.hf-ticket-head > span {
  font: 400 21px var(--hf-serif);
}

.hf-ticket-head > small {
  margin-left: auto;
  color: var(--hf-rust);
  font-size: 8px;
  letter-spacing: 1.5px;
}

.hf-member-ticket > strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 38px 0 25px;
  color: var(--hf-rust);
  font: 500 clamp(38px, 4vw, 64px)/1 var(--hf-serif);
}

.hf-member-ticket > strong b {
  margin-left: 14px;
  font-size: 1.12em;
  font-weight: 500;
}

.hf-member-ticket > strong small {
  color: var(--hf-cream);
  font: 11px var(--hf-sans);
}

.hf-ticket-rights {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(231, 222, 208, 0.26);
}

.hf-ticket-rights > span {
  min-height: 82px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-content: center;
  align-items: center;
  gap: 1px 8px;
  padding: 10px;
  border-right: 1px solid rgba(231, 222, 208, 0.21);
}

.hf-ticket-rights > span:last-child {
  border-right: 0;
}

.hf-ticket-rights .hf-icon {
  width: 19px;
  height: 19px;
  grid-row: 1 / 3;
}

.hf-ticket-rights b {
  font: 400 18px var(--hf-serif);
}

.hf-ticket-rights small {
  color: #92887b;
  font-size: 8px;
}

.hf-member-ticket footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-top: 17px;
  color: #aaa094;
  font-size: 8px;
  letter-spacing: 1px;
}

.hf-membership-copy {
  text-align: left;
}

.hf-membership-copy > span {
  color: var(--hf-rust);
  font-size: 10px;
  letter-spacing: 1.4px;
}

.hf-membership-copy h2 {
  margin: 20px 0 15px;
  font: 400 clamp(28px, 3.2vw, 45px)/1.35 var(--hf-serif);
}

.hf-membership-copy p {
  max-width: 480px;
  margin: 0;
  color: #73695f;
  font-size: 13px;
  line-height: 1.9;
}

.hf-plan-section,
.hf-benefit-section,
.hf-compare-section {
  margin-top: 54px;
  border-top: 1px solid var(--hf-line-light);
  padding-top: 42px;
}

.hf-plan-section > header,
.hf-benefit-section > header,
.hf-compare-section > header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.hf-plan-section > header span,
.hf-benefit-section > header span,
.hf-compare-section > header span {
  color: var(--hf-rust);
  font-size: 9px;
  letter-spacing: 1.5px;
}

.hf-plan-section > header h2,
.hf-benefit-section > header h2,
.hf-compare-section > header h2 {
  max-width: 820px;
  margin: 0;
  font: 400 clamp(28px, 3vw, 43px)/1.25 var(--hf-serif);
  text-align: right;
}

.hf-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hf-line-light);
  border-left: 1px solid var(--hf-line-light);
}

.hf-plan-grid > article {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 26px 27px 24px;
  border-right: 1px solid var(--hf-line-light);
  border-bottom: 1px solid var(--hf-line-light);
}

.hf-plan-grid > article.is-featured {
  color: var(--hf-cream);
  background: var(--hf-black-2);
  box-shadow: 0 0 0 3px var(--hf-rust) inset;
}

.hf-plan-grid article > span {
  color: var(--hf-rust);
  font-size: 9px;
  letter-spacing: 1.4px;
}

.hf-plan-grid h3 {
  margin: 26px 0 8px;
  font: 400 27px/1.2 var(--hf-serif);
}

.hf-plan-price {
  margin: 0 0 17px !important;
  color: inherit !important;
  font: 400 53px/1 var(--hf-serif) !important;
}

.hf-plan-price small {
  font: 11px var(--hf-sans);
}

.hf-plan-grid article > p {
  margin: 0;
  color: #746a5f;
  font-size: 12px;
  line-height: 1.8;
}

.hf-plan-grid article.is-featured > p {
  color: #aaa095;
}

.hf-plan-grid ul {
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid currentColor;
  color: #72685c;
}

.hf-plan-grid article.is-featured ul {
  color: #9a9186;
}

.hf-plan-grid li {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
}

.hf-plan-grid li .hf-icon {
  width: 15px;
  height: 15px;
  color: var(--hf-rust);
}

.hf-plan-action {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid var(--hf-rust);
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 13px;
  cursor: pointer;
}

.hf-plan-action:hover {
  color: var(--hf-rust);
}

.hf-plan-action .hf-icon {
  width: 16px;
  height: 16px;
}

.hf-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hf-line-light);
  border-left: 1px solid var(--hf-line-light);
}

.hf-benefit-grid article {
  min-height: 230px;
  position: relative;
  padding: 27px 24px;
  border-right: 1px solid var(--hf-line-light);
  border-bottom: 1px solid var(--hf-line-light);
}

.hf-benefit-grid article > b {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #a4998a;
  font-size: 9px;
  font-weight: 400;
}

.hf-benefit-grid article > .hf-icon {
  width: 27px;
  height: 27px;
  color: var(--hf-rust);
}

.hf-benefit-grid h3 {
  margin: 34px 0 10px;
  font: 400 22px var(--hf-serif);
}

.hf-benefit-grid p {
  margin: 0;
  color: #71675c;
  font-size: 12px;
  line-height: 1.75;
}

.hf-compare-table {
  border-top: 1px solid var(--hf-line-light);
  border-left: 1px solid var(--hf-line-light);
}

.hf-compare-table > div {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
}

.hf-compare-table > div > * {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-right: 1px solid var(--hf-line-light);
  border-bottom: 1px solid var(--hf-line-light);
  font-size: 12px;
}

.hf-compare-table .is-head > b {
  background: rgba(23, 21, 17, 0.05);
  font: 400 18px var(--hf-serif);
}

.hf-compare-table > div > :nth-child(3) {
  background: rgba(207, 91, 45, 0.09);
  color: #8e3718;
}

/* Support */
.hf-support-page {
  max-width: var(--hf-max);
  margin: 0 auto;
  padding: 76px 28px 90px;
}

.hf-support-intro {
  max-width: 1120px;
  padding: 0 0 62px 8%;
}

.hf-support-intro h1 {
  margin: 21px 0 20px;
  color: var(--hf-cream);
  font: 400 clamp(43px, 5.8vw, 83px)/1.16 var(--hf-serif);
}

.hf-support-intro p {
  max-width: 710px;
  margin: 0 0 27px;
  color: var(--hf-muted);
  font-size: 14px;
  line-height: 1.9;
}

.hf-support-ledger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 1px;
  background: var(--hf-line-dark);
  border: 1px solid var(--hf-line-dark);
}

.hf-qa-column,
.hf-question-composer {
  background: var(--hf-black-2);
}

.hf-qa-column > header {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  border-bottom: 1px solid var(--hf-line-dark);
}

.hf-qa-column > header span {
  font: 400 22px var(--hf-serif);
}

.hf-qa-column > header small {
  color: var(--hf-rust);
  font-size: 9px;
  letter-spacing: 1.4px;
}

.hf-qa-column > article {
  min-height: 170px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 22px;
  padding: 27px 28px;
  border-bottom: 1px solid var(--hf-line-dark);
}

.hf-qa-column > article:last-child {
  border-bottom: 0;
}

.hf-qa-column > article > b {
  color: var(--hf-rust);
  font: 400 14px var(--hf-serif);
}

.hf-qa-column h2 {
  margin: 0 0 9px;
  color: var(--hf-cream);
  font: 400 clamp(22px, 2.1vw, 31px)/1.35 var(--hf-serif);
}

.hf-qa-column p {
  max-width: 720px;
  margin: 0;
  color: var(--hf-muted);
  font-size: 12px;
  line-height: 1.8;
}

.hf-qa-column article span {
  display: block;
  margin-top: 13px;
  color: #69625a;
  font-size: 9px;
  letter-spacing: 0.7px;
}

.hf-question-composer {
  padding: 28px;
}

.hf-question-composer > span {
  color: var(--hf-rust);
  font-size: 9px;
  letter-spacing: 1.5px;
}

.hf-question-composer h2 {
  margin: 17px 0 28px;
  font: 400 37px var(--hf-serif);
}

.hf-question-composer label {
  display: block;
  margin-bottom: 9px;
  color: var(--hf-muted);
  font-size: 11px;
}

.hf-question-composer textarea,
.hf-account-support textarea {
  width: 100%;
  height: 210px;
  display: block;
  resize: vertical;
  padding: 16px;
  border: 1px solid rgba(231, 222, 208, 0.32);
  border-radius: 1px;
  outline: 0;
  background: #11100e;
  color: var(--hf-cream);
  font-size: 13px;
  line-height: 1.7;
}

.hf-question-composer textarea:focus,
.hf-account-support textarea:focus {
  border-color: var(--hf-rust);
}

.hf-question-composer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
}

.hf-question-composer > div small {
  color: #6c655d;
  font-size: 9px;
}

.hf-question-composer > div button,
.hf-account-support > button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--hf-gold);
  border-radius: 1px;
  background: var(--hf-gold);
  color: #17130e;
  cursor: pointer;
}

.hf-question-composer > div button .hf-icon,
.hf-account-support > button .hf-icon {
  width: 16px;
  height: 16px;
}

.hf-question-composer > p {
  margin: 25px 0 0;
  padding-top: 19px;
  border-top: 1px solid var(--hf-line-dark);
  color: #70685f;
  font-size: 10px;
  line-height: 1.7;
}

.hf-faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  margin-top: 90px;
}

.hf-faq-section > header span {
  color: var(--hf-rust);
  font-size: 9px;
  letter-spacing: 1.5px;
}

.hf-faq-section > header h2 {
  margin: 18px 0 0;
  font: 400 clamp(28px, 3.2vw, 44px)/1.35 var(--hf-serif);
}

.hf-faq-list {
  border-top: 1px solid var(--hf-line-dark);
}

.hf-faq-list details {
  border-bottom: 1px solid var(--hf-line-dark);
}

.hf-faq-list summary {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--hf-cream);
  cursor: pointer;
  font: 400 18px/1.4 var(--hf-serif);
  list-style: none;
}

.hf-faq-list summary::-webkit-details-marker {
  display: none;
}

.hf-faq-list summary i {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
}

.hf-faq-list summary i::before,
.hf-faq-list summary i::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  background: var(--hf-rust);
}

.hf-faq-list summary i::after {
  transform: rotate(90deg);
  transition: transform 0.15s ease;
}

.hf-faq-list details[open] summary i::after {
  transform: rotate(0);
}

.hf-faq-list details p {
  max-width: 700px;
  margin: -2px 40px 22px 0;
  color: var(--hf-muted);
  font-size: 12px;
  line-height: 1.85;
}

/* Account */
.hf-account-page {
  max-width: 1640px;
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: 250px minmax(560px, 1fr) 300px;
  gap: 26px;
  margin: 0 auto;
  padding: 34px 28px 62px;
}

.hf-account-sidebar,
.hf-account-support {
  border: 1px solid var(--hf-line-dark);
  background: var(--hf-black-2);
}

.hf-account-sidebar {
  align-self: stretch;
  padding: 29px 17px;
}

.hf-account-brand {
  min-height: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--hf-line-dark);
}

.hf-account-brand .hf-logo-mark {
  width: 30px;
  height: 30px;
}

.hf-account-brand strong {
  margin-top: 10px;
  color: #cbb28c;
  font: 400 25px var(--hf-serif);
}

.hf-account-brand span {
  margin-top: 5px;
  color: #7f6b4d;
  font-size: 8px;
  letter-spacing: 1.4px;
}

.hf-account-sidebar nav {
  padding-top: 20px;
}

.hf-account-sidebar nav a,
.hf-account-sidebar nav button {
  width: 100%;
  min-height: 66px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 0;
  border-radius: 1px;
  background: transparent;
  color: #9d9182;
  text-align: left;
  cursor: pointer;
}

.hf-account-sidebar nav a:hover,
.hf-account-sidebar nav button:hover,
.hf-account-sidebar nav .is-active {
  background: rgba(182, 150, 99, 0.13);
  color: #d1b78e;
}

.hf-account-sidebar nav .hf-icon {
  width: 22px;
  height: 22px;
}

.hf-account-sidebar nav span {
  font: 400 16px var(--hf-serif);
}

.hf-account-sidebar nav small {
  display: block;
  margin-top: 3px;
  color: #6f6353;
  font: 7px var(--hf-sans);
  letter-spacing: 1px;
}

.hf-account-main {
  min-width: 0;
}

.hf-account-main > header {
  min-height: 91px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 9px 2px 20px;
  border-bottom: 1px solid rgba(182, 150, 99, 0.42);
}

.hf-account-main > header span {
  color: #c6a879;
  font: 400 25px var(--hf-serif);
}

.hf-account-main > header h1 {
  margin: 7px 0 0;
  color: var(--hf-cream);
  font: 400 14px var(--hf-serif);
}

.hf-account-main > header p {
  max-width: 350px;
  margin: 8px 0 0;
  color: #82786b;
  font-size: 10px;
  line-height: 1.7;
}

.hf-pass-card {
  min-height: 270px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 230px;
  align-items: center;
  gap: 25px;
  position: relative;
  margin-top: 26px;
  padding: 27px 30px;
  overflow: hidden;
  border-radius: 3px;
  background-color: #e8dcc8;
  background-image:
    radial-gradient(rgba(75, 57, 33, 0.08) 0.5px, transparent 0.6px),
    linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  background-size: 6px 6px, auto;
  color: #292218;
  box-shadow: 0 17px 28px rgba(0, 0, 0, 0.18);
}

.hf-pass-card::after {
  content: "";
  position: absolute;
  top: -9px;
  bottom: -9px;
  left: calc(100% - 250px);
  border-left: 1px dashed rgba(44, 35, 24, 0.36);
}

.hf-pass-emblem {
  width: 130px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid #7e6847;
  border-radius: 50%;
  color: #745e3e;
  text-align: center;
}

.hf-pass-emblem .hf-icon {
  width: 39px;
  height: 39px;
}

.hf-pass-emblem span {
  font-size: 8px;
  letter-spacing: 1.1px;
}

.hf-pass-main > span {
  color: #856739;
  font-size: 9px;
  letter-spacing: 1.4px;
}

.hf-pass-main h2 {
  margin: 11px 0 8px;
  font: 500 clamp(29px, 3vw, 44px)/1.15 var(--hf-serif);
}

.hf-pass-main p {
  margin: 0;
  color: #776a58;
  font-size: 11px;
  line-height: 1.7;
}

.hf-pass-card dl {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hf-pass-card dl > div {
  padding: 9px 0;
  border-bottom: 1px solid rgba(44, 35, 24, 0.18);
}

.hf-pass-card dt {
  color: #7b6b55;
  font-size: 8px;
}

.hf-pass-card dd {
  margin: 4px 0 0;
  font: 400 18px var(--hf-serif);
}

.hf-pass-action {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8c4a2a !important;
  font-size: 11px;
}

.hf-pass-action .hf-icon {
  width: 15px;
  height: 15px;
}

.hf-account-panels {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
  margin-top: 17px;
}

.hf-orders-panel,
.hf-unlocked-panel {
  min-width: 0;
  min-height: 360px;
  padding: 20px 22px;
  color: #2b241b;
  background: #e8dfd1;
}

.hf-orders-panel > header,
.hf-unlocked-panel > header {
  min-height: 39px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid rgba(43, 36, 27, 0.35);
}

.hf-orders-panel h2,
.hf-unlocked-panel h2 {
  margin: 0;
  font: 400 21px var(--hf-serif);
}

.hf-orders-panel header span,
.hf-unlocked-panel header a {
  color: #7c6e5d;
  font-size: 9px;
}

.hf-unlocked-panel header a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hf-unlocked-panel header a .hf-icon {
  width: 14px;
  height: 14px;
}

.hf-account-empty {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #766b5d;
  text-align: center;
}

.hf-account-empty .hf-icon {
  width: 28px;
  height: 28px;
}

.hf-account-empty strong {
  margin-top: 14px;
  font: 400 17px var(--hf-serif);
}

.hf-account-empty p {
  max-width: 240px;
  margin: 8px 0 0;
  font-size: 10px;
  line-height: 1.7;
}

.hf-order-list article {
  min-height: 70px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  position: relative;
  border-bottom: 1px solid rgba(43, 36, 27, 0.17);
}

.hf-order-list time {
  color: #746757;
  font-size: 8px;
}

.hf-order-list article > div strong {
  display: block;
  font: 400 13px var(--hf-serif);
}

.hf-order-list article > div span {
  display: block;
  margin-top: 4px;
  color: #897c6c;
  font-size: 7px;
}

.hf-order-list article > b {
  font: 400 12px var(--hf-serif);
}

.hf-order-list em {
  position: absolute;
  top: 6px;
  right: 0;
  color: #755c3a;
  font-size: 7px;
  font-style: normal;
}

.hf-order-pay {
  position: absolute;
  right: 0;
  bottom: 6px;
  color: var(--hf-rust) !important;
  font-size: 8px;
}

.hf-unlocked-panel > div > a {
  min-height: 69px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(43, 36, 27, 0.17);
}

.hf-unlocked-panel a img {
  width: 76px;
  height: 46px;
  object-fit: cover;
  filter: sepia(0.12) saturate(0.55);
}

.hf-unlocked-panel a strong {
  display: block;
  font: 400 13px/1.35 var(--hf-serif);
}

.hf-unlocked-panel a small {
  display: block;
  margin-top: 3px;
  color: #8a7e6f;
  font-size: 7px;
}

.hf-unlocked-panel a em {
  color: #776b5c;
  font-size: 8px;
  font-style: normal;
}

.hf-account-support {
  align-self: start;
  padding: 28px 24px;
}

.hf-account-support > span {
  color: #c5a779;
  font-size: 10px;
  letter-spacing: 1.2px;
}

.hf-account-support h2 {
  margin: 14px 0 10px;
  color: #d9c3a0;
  font: 400 29px/1.3 var(--hf-serif);
}

.hf-account-support > p {
  margin: 0 0 18px;
  color: #82776a;
  font-size: 10px;
  line-height: 1.8;
}

.hf-account-support textarea {
  height: 155px;
}

.hf-account-support > button {
  width: 100%;
  margin-top: 12px;
}

.hf-account-support hr {
  height: 1px;
  margin: 30px 0 20px;
  border: 0;
  background: var(--hf-line-dark);
}

.hf-account-support > strong {
  color: #c5a779;
  font: 400 18px var(--hf-serif);
}

/* Auth */
.hf-auth-page {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 0.7fr);
  align-items: center;
  justify-content: center;
  gap: 7vw;
  max-width: 1250px;
  margin: 0 auto;
  padding: 70px 28px 90px;
}

.hf-auth-intro h1,
.hf-auth-page > section:only-child h1 {
  margin: 20px 0;
  font: 400 clamp(51px, 6.2vw, 88px)/1.12 var(--hf-serif);
}

.hf-auth-intro > p,
.hf-auth-page > section:only-child > p {
  max-width: 560px;
  margin: 0;
  color: var(--hf-muted);
  font-size: 14px;
  line-height: 1.9;
}

.hf-auth-intro ul {
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hf-line-dark);
}

.hf-auth-intro li {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--hf-line-dark);
  color: #a49a8e;
  font-size: 12px;
}

.hf-auth-intro li .hf-icon {
  width: 16px;
  height: 16px;
  color: var(--hf-rust);
}

.hf-auth-form {
  width: 100%;
  min-height: 530px;
  padding: 28px 36px 24px;
  background: var(--hf-paper);
  color: var(--hf-ink);
}

.hf-auth-form > header {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hf-line-light);
}

.hf-auth-form > header .hf-logo-mark {
  width: 28px;
  height: 28px;
}

.hf-auth-form > header span {
  font: 400 18px var(--hf-serif);
}

.hf-auth-form > header small {
  color: #897e70;
  font-size: 8px;
  letter-spacing: 0.8px;
}

.hf-auth-form .tab-content {
  padding-top: 18px;
}

.hf-auth-form .tab-pane {
  display: none;
}

.hf-auth-form .tab-pane.active {
  display: block;
}

.hf-auth-form .box-body {
  padding: 10px 0;
}

.hf-auth-form .title-h-left {
  display: inline-block;
  margin-right: 14px;
  color: var(--hf-ink);
  font: 400 30px var(--hf-serif);
}

.hf-auth-form .muted-color,
.hf-auth-form .muted-2-color {
  color: #83776a !important;
}

.hf-auth-form form {
  margin-top: 20px;
}

.hf-auth-form .line-form {
  position: relative;
  margin-bottom: 14px;
}

.hf-auth-form .line-form-input {
  width: 100%;
  height: 54px;
  padding: 18px 2px 4px !important;
  border: 0 !important;
  border-bottom: 1px solid #a99d8d !important;
  border-radius: 0 !important;
  outline: 0;
  background: transparent !important;
  color: var(--hf-ink) !important;
  box-shadow: none !important;
}

.hf-auth-form .scale-placeholder {
  position: absolute;
  top: 17px;
  left: 2px;
  color: #8a8074;
  pointer-events: none;
  transition: all 0.15s ease;
}

.hf-auth-form .line-form-input:focus ~ .scale-placeholder,
.hf-auth-form .line-form-input:valid ~ .scale-placeholder {
  top: 4px;
  font-size: 9px;
}

.hf-auth-form .signsubmit-loader,
.hf-auth-form input[type="submit"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--hf-rust) !important;
  border-radius: 1px !important;
  background: var(--hf-rust) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.hf-auth-form > footer {
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--hf-line-light);
  text-align: center;
}

.hf-auth-form > footer button {
  border: 0;
  background: transparent;
  color: #7b6f61;
  font-size: 10px;
  cursor: pointer;
}

/* Reader */
.hf-reader-page {
  max-width: 1600px;
  display: grid;
  grid-template-columns: 86px minmax(600px, 1fr) 250px;
  align-items: start;
  gap: 28px;
  margin: 0 auto;
  padding: 28px 28px 70px;
}

.hf-reading-progress {
  position: sticky;
  top: 118px;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding-top: 30px;
  color: #948b80;
}

.hf-reading-progress span {
  font-size: 9px;
}

.hf-reading-progress b {
  color: var(--hf-cream);
  font: 400 19px var(--hf-serif);
}

.hf-reading-progress > i {
  width: 1px;
  height: 360px;
  position: relative;
  display: block;
  background: #514c45;
}

.hf-reading-progress > i em {
  width: 1px;
  height: 0;
  display: block;
  background: var(--hf-rust);
}

.hf-reading-progress > i em::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hf-gold);
  transform: translateY(50%);
}

.hf-reading-progress small {
  font-size: 9px;
}

.hf-reader {
  min-width: 0;
  padding: 68px clamp(35px, 6vw, 105px) 74px;
  background-color: #f4f0e9;
  background-image: radial-gradient(rgba(68, 51, 30, 0.07) 0.45px, transparent 0.55px);
  background-size: 7px 7px;
  color: var(--hf-ink);
}

.hf-reader-header {
  padding-bottom: 31px;
  border-bottom: 1px solid var(--hf-line-light);
}

.hf-reader-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8b7f70;
  font-size: 9px;
  letter-spacing: 0.6px;
}

.hf-reader-breadcrumb b {
  color: var(--hf-rust);
  font-weight: 400;
}

.hf-reader-header h1 {
  max-width: 980px;
  margin: 22px 0 26px;
  font: 500 clamp(44px, 5.4vw, 76px)/1.15 var(--hf-serif);
  letter-spacing: 0;
}

.hf-reader-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: #7e7468;
}

.hf-reader-meta > span {
  display: inline-grid;
  grid-template-columns: 18px auto;
  gap: 2px 7px;
  align-items: center;
  font-size: 10px;
}

.hf-reader-meta .hf-icon {
  width: 16px;
  height: 16px;
  grid-row: 1 / 3;
}

.hf-reader-meta b {
  color: #9b8e7e;
  font-size: 8px;
  font-weight: 400;
}

.hf-reader-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 39px 0 18px;
}

.hf-reader-content p,
.hf-reader-content li {
  color: #34302a;
  font: 400 17px/2.05 var(--hf-serif);
}

.hf-reader-content p {
  margin: 0 0 22px;
}

.hf-reader-content .hf-article-lead {
  color: #1f1c17;
  font-size: 20px;
  line-height: 1.95;
}

.hf-reader-content h2 {
  margin: 54px 0 18px;
  font: 500 29px/1.45 var(--hf-serif);
}

.hf-reader-content h3 {
  margin: 38px 0 15px;
  font: 500 23px/1.45 var(--hf-serif);
}

.hf-reader-content ul,
.hf-reader-content ol {
  margin: 0 0 24px;
  padding-left: 1.5em;
}

.hf-reader-content img:not(.hf-video-note img) {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  filter: saturate(0.72);
}

.hf-reader-content .harley-media {
  margin: 30px 0;
}

.hf-reader-content .harley-media > div {
  padding: 11px 14px;
  border-left: 2px solid var(--hf-rust);
  background: #e8dfd2;
}

.hf-video-note {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 23px;
  align-items: center;
  margin: 34px 0;
  padding: 16px;
  border: 1px solid var(--hf-line-light);
  background: #eae3d9;
}

.hf-video-screen {
  height: 145px;
  position: relative;
  overflow: hidden;
  background: #171613;
}

.hf-video-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.52;
  filter: grayscale(0.2);
}

.hf-video-screen button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(12, 12, 11, 0.66);
  color: #fff;
  transform: translate(-50%, -50%);
}

.hf-video-screen > span {
  position: absolute;
  right: 8px;
  bottom: 7px;
  color: #d7cec1;
  font-size: 7px;
  letter-spacing: 0.9px;
}

.hf-video-note > div:last-child small {
  color: var(--hf-rust);
  font-size: 9px;
  letter-spacing: 1.1px;
}

.hf-video-note > div:last-child h3 {
  margin: 9px 0 7px;
  font: 400 20px/1.35 var(--hf-serif);
}

.hf-video-note > div:last-child p {
  margin: 0;
  color: #70675c;
  font: 12px/1.75 var(--hf-sans);
}

.hf-reader-paywall {
  position: relative;
  margin: 23px 0 0;
  padding: 49px 20px 15px;
  border-top: 1px dashed #b6aa9b;
  text-align: center;
}

.hf-reader-paywall::before {
  content: "";
  position: absolute;
  right: 0;
  top: 51px;
  left: 0;
  height: 160px;
  background: rgba(244, 240, 233, 0.76);
  filter: blur(10px);
  pointer-events: none;
}

.hf-reader-paywall > * {
  position: relative;
  z-index: 1;
}

.hf-reader-paywall > div:first-child {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: -73px auto 21px;
  border: 1px solid #bbae9d;
  border-radius: 50%;
  background: #f4f0e9;
  color: #9b805b;
}

.hf-reader-paywall > span {
  color: var(--hf-rust);
  font-size: 9px;
  letter-spacing: 1.3px;
}

.hf-reader-paywall h2 {
  margin: 13px 0 7px;
  font: 400 29px var(--hf-serif);
}

.hf-reader-paywall > p {
  margin: 0;
  color: #786e61;
  font-size: 11px;
}

.hf-paywall-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}

.hf-secondary-link {
  padding-bottom: 5px;
  border-bottom: 1px solid #8e8376;
  color: #746b61 !important;
  font-size: 11px;
}

.hf-reader-related {
  position: sticky;
  top: 112px;
  padding-top: 15px;
}

.hf-reader-related > span {
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hf-line-dark);
  color: var(--hf-rust);
  font-size: 9px;
  letter-spacing: 1.3px;
}

.hf-reader-related > a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--hf-line-dark);
}

.hf-reader-related img {
  width: 100%;
  aspect-ratio: 1.7;
  display: block;
  object-fit: cover;
  margin-bottom: 11px;
  filter: saturate(0.55);
}

.hf-reader-related strong {
  display: block;
  color: var(--hf-cream);
  font: 400 15px/1.45 var(--hf-serif);
}

.hf-reader-related small {
  display: block;
  margin-top: 7px;
  color: #6d665e;
  font-size: 8px;
}

.hf-comments {
  max-width: 850px;
  margin: 70px auto 0;
  padding-top: 35px;
  border-top: 1px solid var(--hf-line-light);
}

.hf-comments > header {
  position: relative;
  margin-bottom: 25px;
}

.hf-comments > header span {
  color: var(--hf-rust);
  font-size: 9px;
  letter-spacing: 1.4px;
}

.hf-comments > header h2 {
  margin: 12px 0 0;
  font: 400 27px var(--hf-serif);
}

.hf-comments > header p {
  position: absolute;
  right: 0;
  bottom: 4px;
  margin: 0;
  color: #81766a;
  font-size: 9px;
}

.hf-comments ol {
  padding: 0;
  list-style: none;
}

.hf-comments .comment {
  padding: 17px 0;
  border-bottom: 1px solid var(--hf-line-light);
}

.hf-comments .comment-body {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
}

.hf-comments .comment-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.hf-comments .comment-meta,
.hf-comments .comment-content,
.hf-comments .reply {
  grid-column: 2;
}

.hf-comments-empty,
.hf-comments .comment-notes {
  color: #7e7468;
  font-size: 11px;
  line-height: 1.75;
}

.hf-comments #reply-title {
  margin: 35px 0 5px;
  font: 400 22px var(--hf-serif);
}

.hf-comments textarea,
.hf-comments input[type="text"],
.hf-comments input[type="email"],
.hf-comments input[type="url"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #b8ad9e;
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.32);
  color: var(--hf-ink);
}

.hf-comments textarea {
  min-height: 130px;
}

.hf-comment-submit {
  min-height: 43px;
  padding: 0 19px;
  border: 1px solid var(--hf-rust);
  border-radius: 1px;
  background: var(--hf-rust);
  color: #fff;
}

/* About */
.hf-about-page {
  min-height: calc(100svh - 78px);
  padding: 0 max(28px, calc((100vw - 1350px) / 2)) 80px;
}

.hf-about-hero {
  min-height: 630px;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: center;
  gap: 70px;
  padding: 64px 0;
}

.hf-about-hero h1 {
  margin: 21px 0 18px;
  font: 500 clamp(55px, 7vw, 96px)/1.08 var(--hf-serif);
}

.hf-about-hero p {
  max-width: 660px;
  margin: 0 0 27px;
  color: #70675d;
  font: 400 16px/1.9 var(--hf-serif);
}

.hf-about-hero > img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  filter: saturate(0.62);
}

.hf-about-paths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hf-line-light);
  border-left: 1px solid var(--hf-line-light);
}

.hf-about-paths article {
  min-height: 230px;
  padding: 24px;
  border-right: 1px solid var(--hf-line-light);
  border-bottom: 1px solid var(--hf-line-light);
}

.hf-about-paths article b {
  color: var(--hf-rust);
  font-size: 9px;
  font-weight: 400;
}

.hf-about-paths h2 {
  margin: 36px 0 10px;
  font: 400 24px var(--hf-serif);
}

.hf-about-paths p {
  margin: 0;
  color: #71685d;
  font-size: 12px;
  line-height: 1.8;
}

/* Zibll remains an isolated business adapter. */
body.harley-front.modal-open {
  padding-right: 0 !important;
}

body.harley-front .modal-backdrop {
  background: #080807;
}

body.harley-front .modal-backdrop.in {
  opacity: 0.82;
}

body.harley-front .modal .modal-dialog {
  max-width: 500px;
}

body.harley-front .modal .modal-content,
body.harley-front .modal .sign {
  overflow: hidden;
  border: 1px solid rgba(231, 222, 208, 0.25);
  border-radius: 2px !important;
  background: #f1ece3 !important;
  color: var(--hf-ink) !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45) !important;
}

body.harley-front .modal .close {
  color: var(--hf-ink) !important;
  opacity: 0.72;
}

body.harley-front .modal .but,
body.harley-front .modal button {
  border-radius: 1px !important;
}

body.harley-front .modal .jb-blue,
body.harley-front .modal .jb-red,
body.harley-front .modal .jb-green {
  background: var(--hf-rust) !important;
  color: #fff !important;
}

body.harley-front .modal .line-form-input {
  border-radius: 0 !important;
}

@media (max-width: 1220px) {
  .hf-site-header {
    grid-template-columns: minmax(220px, 1fr) auto minmax(180px, 1fr);
    padding-right: 24px;
    padding-left: 24px;
  }

  .hf-brand small {
    display: none;
  }

  .hf-nav {
    gap: 23px;
  }

  .hf-home-hero {
    grid-template-columns: minmax(310px, 0.82fr) minmax(430px, 1.18fr);
  }

  .hf-vertical-rail,
  .hf-issue-rail {
    display: none;
  }

  .hf-library-page {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .hf-library-layout {
    grid-template-columns: 190px minmax(420px, 1fr) 280px;
  }

  .hf-library-main {
    padding-right: 25px;
    padding-left: 25px;
  }

  .hf-membership-stage {
    gap: 35px;
    padding-right: 2%;
    padding-left: 2%;
  }

  .hf-member-ticket {
    padding-right: 30px;
    padding-left: 30px;
  }

  .hf-account-page {
    grid-template-columns: 210px minmax(520px, 1fr);
  }

  .hf-account-support {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 180px minmax(260px, 1fr) 180px;
    align-items: center;
    gap: 25px;
  }

  .hf-account-support h2,
  .hf-account-support > span,
  .hf-account-support hr,
  .hf-account-support > strong {
    display: none;
  }

  .hf-account-support > p {
    margin: 0;
  }

  .hf-account-support textarea {
    height: 90px;
  }

  .hf-account-support > button {
    margin: 0;
  }

  .hf-reader-page {
    grid-template-columns: 70px minmax(580px, 1fr);
  }

  .hf-reader-related {
    display: none;
  }
}

@media (max-width: 900px) {
  .hf-site-header {
    min-height: 66px;
    grid-template-columns: 1fr auto;
  }

  .hf-brand strong {
    font-size: 20px;
  }

  .hf-brand .hf-logo-mark {
    width: 27px;
    height: 27px;
  }

  .hf-nav,
  .hf-account-link {
    display: none;
  }

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

  .hf-home {
    padding-top: 25px;
  }

  .hf-home-hero {
    min-height: 0;
    grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
    gap: 22px;
  }

  .hf-home-cover {
    min-height: 560px;
  }

  .hf-index-row {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .hf-index-row img {
    width: 60px;
    height: 60px;
  }

  .hf-index-row > time {
    display: none;
  }

  .hf-home-flow {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hf-library-page {
    display: block;
  }

  .hf-library-title-rail {
    display: none;
  }

  .hf-library-layout {
    grid-template-columns: 1fr;
  }

  .hf-library-sidebar {
    display: none;
  }

  .hf-library-dossier {
    min-height: 0;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    gap: 25px;
    border-top: 1px solid var(--hf-line-light);
    border-left: 0;
  }

  .hf-library-dossier > span {
    grid-column: 1 / -1;
  }

  .hf-library-dossier > img {
    grid-row: 2 / 6;
    margin: 0;
  }

  .hf-library-dossier h2 {
    margin: 0;
  }

  .hf-membership-stage {
    grid-template-columns: 1fr;
  }

  .hf-member-ticket {
    transform: none;
  }

  .hf-membership-copy {
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
  }

  .hf-membership-copy p {
    margin: 0 auto;
  }

  .hf-plan-grid {
    grid-template-columns: 1fr;
  }

  .hf-plan-grid > article {
    min-height: 390px;
  }

  .hf-benefit-grid,
  .hf-about-paths {
    grid-template-columns: repeat(2, 1fr);
  }

  .hf-support-intro {
    padding-left: 0;
  }

  .hf-support-ledger {
    grid-template-columns: 1fr;
  }

  .hf-question-composer {
    min-height: 500px;
  }

  .hf-faq-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hf-account-page {
    grid-template-columns: 1fr;
  }

  .hf-account-sidebar {
    padding: 15px;
  }

  .hf-account-brand {
    min-height: 80px;
    flex-direction: row;
    gap: 10px;
  }

  .hf-account-brand span {
    margin: 0;
  }

  .hf-account-sidebar nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .hf-account-sidebar nav a,
  .hf-account-sidebar nav button {
    min-height: 58px;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 8px;
    text-align: center;
  }

  .hf-account-sidebar nav small {
    display: none;
  }

  .hf-account-sidebar nav span {
    font: 10px var(--hf-sans);
  }

  .hf-pass-card {
    grid-template-columns: 120px minmax(0, 1fr) 210px;
  }

  .hf-pass-emblem {
    width: 108px;
  }

  .hf-auth-page {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .hf-auth-intro {
    text-align: center;
  }

  .hf-auth-intro > p {
    margin-right: auto;
    margin-left: auto;
  }

  .hf-reader-page {
    display: block;
    padding: 25px;
  }

  .hf-reading-progress {
    display: none;
  }

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

  .hf-about-hero > img {
    height: 360px;
  }
}

@media (max-width: 700px) {
  .hf-site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .hf-header-actions {
    gap: 1px;
  }

  .hf-site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 18px 80px;
  }

  .hf-site-footer > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .hf-site-footer nav {
    flex-wrap: wrap;
    gap: 17px;
  }

  .hf-site-footer > small {
    justify-self: start;
  }

  .hf-support-button {
    right: 14px;
    bottom: 14px;
    min-width: 44px;
    width: 44px;
    padding: 0;
  }

  .hf-support-button span {
    display: none;
  }

  .hf-search-overlay {
    padding: 20px;
  }

  .hf-search-overlay form > div {
    grid-template-columns: 25px minmax(0, 1fr);
  }

  .hf-search-overlay form button {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .hf-home {
    padding: 20px 16px 55px;
  }

  .hf-home-hero {
    display: block;
  }

  .hf-home-cover {
    min-height: 580px;
    height: calc(100svh - 110px);
  }

  .hf-home-cover-copy h1 {
    font-size: 39px;
  }

  .hf-home-index {
    margin-top: 22px;
  }

  .hf-index-row {
    min-height: 100px;
  }

  .hf-index-row-copy strong {
    font-size: 18px;
  }

  .hf-home-statement {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
    padding: 31px 5px;
  }

  .hf-home-statement p {
    font-size: 25px;
  }

  .hf-access-bands {
    grid-template-columns: 1fr;
  }

  .hf-access-bands article {
    min-height: 245px;
    padding: 25px 20px;
  }

  .hf-home-flow {
    padding-top: 58px;
  }

  .hf-home-flow li {
    grid-template-columns: 34px 100px minmax(0, 1fr);
    gap: 9px;
  }

  .hf-home-flow li strong {
    font-size: 16px;
  }

  .hf-home-flow li span {
    font-size: 10px;
  }

  .hf-library-main {
    padding: 22px 16px 45px;
  }

  .hf-library-toolbar {
    min-height: 94px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hf-library-tabs {
    gap: 21px;
    overflow-x: auto;
  }

  .hf-library-toolbar > label {
    width: 100%;
  }

  .hf-library-row {
    min-height: 108px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .hf-library-row > time b {
    font-size: 25px;
  }

  .hf-library-row > a strong {
    font-size: 18px;
  }

  .hf-library-row > a > span {
    display: none;
  }

  .hf-access-state {
    grid-column: 2;
    margin-top: -14px;
    padding-bottom: 13px;
  }

  .hf-library-dossier {
    display: block;
    padding: 30px 16px 45px;
  }

  .hf-library-dossier > img {
    margin: 18px 0;
  }

  .hf-membership-page {
    padding: 0 16px 65px;
  }

  .hf-membership-hero {
    padding-top: 44px;
  }

  .hf-membership-hero > h1 {
    font-size: 48px;
    line-height: 1.12;
  }

  .hf-membership-hero > p {
    font-size: 13px;
  }

  .hf-membership-stage {
    gap: 35px;
    padding: 42px 0 25px;
  }

  .hf-member-ticket {
    min-height: 400px;
    padding: 30px 25px;
  }

  .hf-member-ticket > strong {
    margin-top: 45px;
    font-size: 39px;
  }

  .hf-member-ticket > strong b {
    display: block;
    margin: 9px 0 0;
    font-size: 65px;
  }

  .hf-ticket-rights {
    grid-template-columns: repeat(2, 1fr);
  }

  .hf-ticket-rights > span {
    border-bottom: 1px solid rgba(231, 222, 208, 0.21);
  }

  .hf-ticket-rights > span:nth-child(2) {
    border-right: 0;
  }

  .hf-ticket-head > small {
    display: none;
  }

  .hf-membership-copy h2 {
    font-size: 30px;
  }

  .hf-plan-section > header,
  .hf-benefit-section > header,
  .hf-compare-section > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hf-plan-section > header h2,
  .hf-benefit-section > header h2,
  .hf-compare-section > header h2 {
    font-size: 29px;
    text-align: left;
  }

  .hf-benefit-grid {
    grid-template-columns: 1fr;
  }

  .hf-benefit-grid article {
    min-height: 190px;
  }

  .hf-compare-table {
    border-top: 0;
    border-left: 0;
  }

  .hf-compare-table > div {
    grid-template-columns: 1fr;
    margin-bottom: 14px;
    border: 1px solid var(--hf-line-light);
  }

  .hf-compare-table > div > * {
    min-height: 46px;
    border-right: 0;
  }

  .hf-compare-table > div > *::before {
    width: 105px;
    flex: 0 0 105px;
    color: #83786a;
    font-size: 9px;
  }

  .hf-compare-table > div:not(.is-head) > :nth-child(1)::before {
    content: "权益";
  }

  .hf-compare-table > div:not(.is-head) > :nth-child(2)::before {
    content: "9.9 小群";
  }

  .hf-compare-table > div:not(.is-head) > :nth-child(3)::before {
    content: "399 年度会员";
  }

  .hf-compare-table > div:not(.is-head) > :nth-child(4)::before {
    content: "5999 陪跑";
  }

  .hf-compare-table .is-head {
    display: none;
  }

  .hf-support-page {
    padding: 52px 16px 65px;
  }

  .hf-support-intro h1 {
    font-size: 44px;
  }

  .hf-qa-column > article {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 10px;
    padding: 23px 17px;
  }

  .hf-qa-column h2 {
    font-size: 22px;
  }

  .hf-question-composer {
    min-height: 0;
    padding: 24px 17px;
  }

  .hf-faq-section {
    margin-top: 65px;
  }

  .hf-faq-list summary {
    font-size: 17px;
  }

  .hf-account-page {
    gap: 15px;
    padding: 15px 12px 45px;
  }

  .hf-account-sidebar nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hf-account-sidebar nav .hf-icon {
    width: 18px;
    height: 18px;
  }

  .hf-account-main > header {
    flex-direction: column;
  }

  .hf-pass-card {
    min-height: 470px;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    gap: 19px;
    padding: 29px 22px 70px;
    text-align: center;
  }

  .hf-pass-card::after {
    display: none;
  }

  .hf-pass-main h2 {
    font-size: 34px;
  }

  .hf-pass-card dl {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hf-pass-card dl > div {
    border: 1px solid rgba(44, 35, 24, 0.18);
  }

  .hf-pass-card dd {
    font-size: 13px;
  }

  .hf-pass-action {
    right: 50%;
    bottom: 25px;
    transform: translateX(50%);
  }

  .hf-account-panels {
    grid-template-columns: 1fr;
  }

  .hf-orders-panel,
  .hf-unlocked-panel {
    min-height: 330px;
    padding: 18px 15px;
  }

  .hf-account-support {
    display: block;
  }

  .hf-account-support > p {
    margin-bottom: 15px;
  }

  .hf-account-support > button {
    margin-top: 12px;
  }

  .hf-auth-page {
    display: block;
    padding: 52px 16px 65px;
  }

  .hf-auth-intro {
    margin-bottom: 40px;
  }

  .hf-auth-intro h1,
  .hf-auth-page > section:only-child h1 {
    font-size: 52px;
  }

  .hf-auth-form {
    min-height: 500px;
    padding: 23px 20px;
  }

  .hf-auth-form > header {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .hf-auth-form > header small {
    display: none;
  }

  .hf-reader-page {
    padding: 0;
  }

  .hf-reader {
    padding: 45px 20px 58px;
  }

  .hf-reader-header h1 {
    font-size: 42px;
  }

  .hf-reader-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .hf-reader-content {
    padding-top: 29px;
  }

  .hf-reader-content p,
  .hf-reader-content li {
    font-size: 16px;
    line-height: 2;
  }

  .hf-reader-content .hf-article-lead {
    font-size: 18px;
  }

  .hf-video-note {
    grid-template-columns: 1fr;
  }

  .hf-video-screen {
    height: 180px;
  }

  .hf-paywall-actions {
    flex-direction: column;
  }

  .hf-comments > header p {
    position: static;
    margin-top: 7px;
  }

  .hf-about-page {
    padding: 0 16px 60px;
  }

  .hf-about-hero {
    min-height: 0;
    gap: 38px;
    padding: 52px 0;
  }

  .hf-about-hero h1 {
    font-size: 56px;
  }

  .hf-about-hero > img {
    height: 440px;
  }

  .hf-about-paths {
    grid-template-columns: 1fr;
  }
}

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