:root {
  --hw-paper: #f4f1e8;
  --hw-paper-strong: #fffdf7;
  --hw-ink: #152033;
  --hw-ink-soft: #2b3749;
  --hw-muted: #66707c;
  --hw-rule: #c9c7bf;
  --hw-rule-dark: #9fa4a8;
  --hw-blue: #245bcc;
  --hw-red: #c64b31;
  --hw-green: #0a6847;
  --hw-shadow: 0 18px 48px rgba(21, 32, 51, 0.08);
  --hw-shell: 1240px;
}

html {
  scroll-behavior: smooth;
}

body.hostingwiki-next {
  margin: 0;
  background: var(--hw-paper);
  color: var(--hw-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.hostingwiki-next a {
  color: inherit;
  text-decoration: none;
}

.hostingwiki-next img {
  max-width: 100%;
  height: auto;
}

.hostingwiki-next button,
.hostingwiki-next input,
.hostingwiki-next select,
.hostingwiki-next textarea {
  font: inherit;
}

.hostingwiki-next a:focus-visible,
.hostingwiki-next button:focus-visible,
.hostingwiki-next input:focus-visible,
.hostingwiki-next select:focus-visible,
.hostingwiki-next textarea:focus-visible {
  outline: 3px solid rgba(36, 91, 204, 0.35);
  outline-offset: 3px;
}

.hw-shell {
  width: min(100% - 40px, var(--hw-shell));
  margin-inline: auto;
}

.hw-skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  background: var(--hw-ink);
  color: #fff;
}

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

.hw-anchor {
  position: absolute;
  transform: translateY(-100px);
}

.hw-site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--hw-rule);
  background: rgba(244, 241, 232, 0.96);
}

.hw-header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
}

.hw-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.hw-brand-link,
.hw-brand > .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.hw-brand .custom-logo {
  display: block;
  max-width: 178px;
  max-height: 48px;
  width: auto;
  height: auto;
}

.hw-brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hw-brand-name span {
  color: var(--hw-blue);
}

.hw-brand-note {
  padding-left: 0.75rem;
  border-left: 1px solid var(--hw-rule);
  color: var(--hw-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hw-primary-nav {
  min-width: 0;
}

.hw-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.6rem, 1.35vw, 1.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.hw-menu > .menu-item {
  position: relative;
  margin: 0;
}

.hw-menu > .menu-item > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: var(--hw-ink-soft);
  font-size: 0.88rem;
  font-weight: 650;
  white-space: nowrap;
}

.hw-menu > .menu-item > a:hover,
.hw-menu > .current-menu-item > a,
.hw-menu > .current-menu-ancestor > a {
  color: var(--hw-blue);
}

.hw-menu > .menu-item > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 180ms ease;
}

.hw-menu > .menu-item > a:hover::after,
.hw-menu > .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hw-menu .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: -1rem;
  min-width: 220px;
  margin: 0;
  padding: 0.6rem 0;
  border: 1px solid var(--hw-rule);
  background: var(--hw-paper-strong);
  box-shadow: var(--hw-shadow);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 160ms ease;
}

.hw-menu .menu-item:hover > .sub-menu,
.hw-menu .menu-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hw-menu .sub-menu a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
}

.hw-menu .sub-menu a:hover {
  background: rgba(36, 91, 204, 0.07);
  color: var(--hw-blue);
}

.hw-header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hw-console-link {
  color: var(--hw-muted);
  font-size: 0.76rem;
  white-space: nowrap;
}

.hw-console-link:hover {
  color: var(--hw-blue);
}

.hw-nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--hw-rule);
  background: transparent;
  color: var(--hw-ink);
}

.hw-nav-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hw-nav-toggle-icon {
  display: grid;
  gap: 6px;
  width: 20px;
  margin: auto;
}

.hw-nav-toggle-icon i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease;
}

.hw-nav-is-open .hw-nav-toggle-icon i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.hw-nav-is-open .hw-nav-toggle-icon i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hw-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.hw-button:hover {
  transform: translateY(-1px);
}

.hw-button--header,
.hw-button--primary {
  border-color: var(--hw-ink);
  background: var(--hw-ink);
  color: #fff !important;
}

.hw-button--header:hover,
.hw-button--primary:hover {
  border-color: var(--hw-blue);
  background: var(--hw-blue);
}

.hw-button--secondary {
  border-color: var(--hw-rule-dark);
  background: transparent;
  color: var(--hw-ink);
}

.hw-button--secondary:hover {
  border-color: var(--hw-ink);
  background: var(--hw-paper-strong);
}

.hw-home-main {
  overflow: hidden;
}

.hw-hero {
  position: relative;
  border-bottom: 1px solid var(--hw-rule);
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(21, 32, 51, 0.04) 50%, transparent calc(50% + 1px)),
    var(--hw-paper);
}

.hw-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(20px, calc((100% - var(--hw-shell)) / 2));
  width: 74px;
  height: 5px;
  background: var(--hw-red);
}

.hw-hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.75fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.hw-eyebrow,
.hw-kicker {
  margin: 0 0 1.1rem;
  color: var(--hw-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hw-eyebrow span {
  margin-right: 0.8rem;
  color: var(--hw-red);
}

.hw-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--hw-ink);
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: clamp(2.65rem, 5.35vw, 5.6rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.hw-hero-intro {
  max-width: 760px;
  margin: 1.6rem 0 0;
  color: var(--hw-ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.9;
}

.hw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hw-hero-proof {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid var(--hw-rule);
}

.hw-proof-index {
  position: absolute;
  top: 1.4rem;
  right: 0;
  margin: 0;
  color: var(--hw-red);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.68rem;
}

.hw-hero-proof h2 {
  max-width: 280px;
  margin: 0 0 1.6rem;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.3;
}

.hw-hero-proof dl {
  margin: 0;
}

.hw-hero-proof dl > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--hw-rule);
}

.hw-hero-proof dt {
  color: var(--hw-red);
  font-size: 0.74rem;
  font-weight: 800;
}

.hw-hero-proof dd {
  margin: 0;
  color: var(--hw-muted);
  font-size: 0.83rem;
}

.hw-pathways {
  border-bottom: 1px solid var(--hw-rule);
  background: var(--hw-paper-strong);
}

.hw-pathway-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hw-pathway {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid var(--hw-rule);
}

.hw-pathway:first-child {
  border-left: 1px solid var(--hw-rule);
}

.hw-pathway:hover {
  background: rgba(36, 91, 204, 0.055);
}

.hw-pathway-number,
.hw-story-row-index,
.hw-guide-index,
.hw-service-number {
  color: var(--hw-red);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.hw-pathway-copy {
  display: grid;
  gap: 0.2rem;
}

.hw-pathway-copy strong {
  font-family: Georgia, "Songti SC", serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.hw-pathway-copy small {
  color: var(--hw-muted);
  font-size: 0.76rem;
}

.hw-arrow {
  color: var(--hw-blue);
  font-size: 1.1rem;
}

.hw-section {
  padding-block: clamp(4.5rem, 8vw, 8rem);
}

.hw-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--hw-rule-dark);
}

.hw-section-heading--compact {
  grid-template-columns: 1fr auto;
}

.hw-section-heading h2,
.hw-inline-heading h2,
.hw-methodology h2 {
  margin: 0;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.hw-section-heading > p {
  max-width: 490px;
  margin: 0;
  color: var(--hw-muted);
  font-size: 0.92rem;
}

.hw-latest {
  background: var(--hw-paper);
}

.hw-latest-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.hw-lead-story {
  min-width: 0;
}

.hw-story-media {
  position: relative;
  min-height: 320px;
  display: block;
  overflow: hidden;
  border: 1px solid var(--hw-rule);
  background: var(--hw-ink);
}

.hw-story-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.hw-story-media:hover img {
  transform: scale(1.025);
}

.hw-story-placeholder {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  background:
    linear-gradient(135deg, transparent 0 52%, rgba(255, 255, 255, 0.08) 52% 52.5%, transparent 52.5%),
    linear-gradient(90deg, #152033, #263a59);
  color: #fff;
}

.hw-story-placeholder b {
  align-self: flex-end;
  font-family: Georgia, serif;
  font-size: clamp(5rem, 13vw, 10rem);
  line-height: 0.8;
  opacity: 0.16;
}

.hw-story-placeholder small {
  font-family: ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hw-story-body {
  padding-top: 1.35rem;
}

.hw-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0 0 0.6rem;
  color: var(--hw-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hw-story-meta a,
.hw-story-meta span:first-child {
  color: var(--hw-blue);
}

.hw-story-body h3 {
  margin: 0;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(1.65rem, 2.8vw, 2.8rem);
  font-weight: 600;
  line-height: 1.28;
}

.hw-story-body h3 a:hover,
.hw-story-row h3 a:hover,
.hw-guide-card h3 a:hover {
  color: var(--hw-blue);
}

.hw-story-body > p:not(.hw-story-meta) {
  margin: 1rem 0;
  color: var(--hw-muted);
}

.hw-text-link,
.hw-list-more {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
  color: var(--hw-blue);
  font-size: 0.82rem;
  font-weight: 750;
}

.hw-text-link span,
.hw-list-more span {
  transition: transform 150ms ease;
}

.hw-text-link:hover span,
.hw-list-more:hover span {
  transform: translateX(4px);
}

.hw-story-list {
  border-top: 1px solid var(--hw-rule-dark);
}

.hw-story-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--hw-rule);
}

.hw-story-row h3 {
  margin: 0;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 600;
  line-height: 1.45;
}

.hw-story-row p:last-child {
  margin: 0.45rem 0 0;
  color: var(--hw-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.hw-list-more {
  margin-top: 1rem;
}

.hw-category-band {
  padding-block: 2.4rem;
  border-block: 1px solid var(--hw-rule);
  background: var(--hw-paper-strong);
}

.hw-inline-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.3rem;
}

.hw-inline-heading h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
}

.hw-inline-heading span {
  color: var(--hw-muted);
  font-size: 0.75rem;
}

.hw-category-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--hw-rule);
  border-left: 1px solid var(--hw-rule);
}

.hw-category-list a {
  min-height: 144px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-right: 1px solid var(--hw-rule);
  border-bottom: 1px solid var(--hw-rule);
}

.hw-category-list a:hover {
  background: rgba(198, 75, 49, 0.055);
}

.hw-category-list a > span {
  color: var(--hw-red);
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
}

.hw-category-list strong {
  margin-top: auto;
  font-family: Georgia, "Songti SC", serif;
  font-size: 1rem;
  font-weight: 600;
}

.hw-category-list small {
  margin-top: 0.25rem;
  color: var(--hw-muted);
  font-size: 0.66rem;
  line-height: 1.45;
}

.hw-ranking {
  background: var(--hw-ink);
  color: #f7f3e9;
}

.hw-ranking .hw-section-heading {
  border-color: rgba(255, 255, 255, 0.25);
}

.hw-ranking .hw-kicker,
.hw-ranking .hw-ranking-note {
  color: rgba(255, 255, 255, 0.56);
}

.hw-ranking .hw-text-link {
  color: #9fbcff;
}

.hw-ranking-table {
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.hw-ranking-head,
.hw-ranking-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) minmax(130px, 0.65fr) minmax(180px, 0.8fr) 110px;
  gap: 1.5rem;
  align-items: center;
}

.hw-ranking-head {
  padding: 0.8rem 1rem;
  color: rgba(255, 255, 255, 0.52);
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hw-ranking-row {
  min-height: 82px;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
}

.hw-ranking-row:hover {
  background: rgba(255, 255, 255, 0.055);
}

.hw-ranking-name {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.8rem;
  align-items: center;
  font-family: Georgia, "Songti SC", serif;
  font-size: 1.15rem;
}

.hw-ranking-name b {
  color: var(--hw-red);
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
}

.hw-ranking-status {
  color: #d6e2ff;
}

.hw-ranking-row time {
  color: rgba(255, 255, 255, 0.6);
  font-family: ui-monospace, monospace;
  font-size: 0.68rem;
}

.hw-ranking-note {
  max-width: 720px;
  margin: 1rem 0 0 auto;
  font-size: 0.7rem;
  text-align: right;
}

.hw-services {
  background: var(--hw-paper);
}

.hw-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--hw-rule-dark);
}

.hw-service-panel {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4.5vw, 4.5rem);
}

.hw-service-panel--dark {
  background: #1b2940;
  color: #fff;
}

.hw-service-panel--paper {
  background: var(--hw-paper-strong);
  color: var(--hw-ink);
}

.hw-service-panel h3 {
  max-width: 500px;
  margin: 1.2rem 0 0;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hw-service-panel > p:not(.hw-service-number) {
  max-width: 560px;
  margin: 1.2rem 0 0;
  color: inherit;
  opacity: 0.74;
}

.hw-service-panel ul {
  display: grid;
  gap: 0.5rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  font-size: 0.86rem;
}

.hw-service-panel li {
  position: relative;
  padding-left: 1.2rem;
}

.hw-service-panel li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--hw-red);
}

.hw-panel-link {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
}

.hw-consult-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--hw-rule-dark);
  border-top: 0;
  background: #e9e4d9;
}

.hw-consult-intro h3 {
  margin: 0;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
}

.hw-consult-intro > p:last-child {
  margin: 1rem 0 0;
  color: var(--hw-muted);
}

.hw-guides {
  background: var(--hw-paper-strong);
}

.hw-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hw-rule-dark);
  border-left: 1px solid var(--hw-rule-dark);
}

.hw-guide-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--hw-rule-dark);
  border-bottom: 1px solid var(--hw-rule-dark);
}

.hw-guide-card h3 {
  margin: 2rem 0 0;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.38;
}

.hw-guide-card > p:not(.hw-guide-index) {
  margin: 1rem 0;
  color: var(--hw-muted);
  font-size: 0.84rem;
}

.hw-guide-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--hw-rule);
}

.hw-guide-card time {
  color: var(--hw-muted);
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
}

.hw-guide-card footer a {
  color: var(--hw-blue);
  font-size: 1.2rem;
}

.hw-methodology {
  position: relative;
  padding-block: 2.5rem;
  border-top: 1px solid var(--hw-rule-dark);
  background: #e7e1d5;
}

.hw-methodology-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(150px, 0.75fr));
  gap: 0;
  border-top: 1px solid var(--hw-rule-dark);
  border-left: 1px solid var(--hw-rule-dark);
}

.hw-methodology-grid > div,
.hw-methodology-grid > a {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  border-right: 1px solid var(--hw-rule-dark);
  border-bottom: 1px solid var(--hw-rule-dark);
}

.hw-methodology h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}

.hw-methodology-grid > a:hover {
  background: rgba(36, 91, 204, 0.055);
}

.hw-methodology-grid > a strong {
  font-family: Georgia, "Songti SC", serif;
  font-size: 1.05rem;
}

.hw-methodology-grid > a span {
  margin-top: 0.45rem;
  color: var(--hw-muted);
  font-size: 0.72rem;
}

.hw-empty-state {
  margin: 0;
  padding: 2rem;
  border: 1px solid var(--hw-rule);
  color: var(--hw-muted);
}

.hw-site-footer {
  clear: both;
  padding-top: clamp(3.5rem, 6vw, 6rem);
  background: #101927;
  color: #f3efe5;
}

.hw-footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.4fr) minmax(160px, 0.55fr) minmax(180px, 0.65fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding-bottom: 3.5rem;
}

.hw-brand-name--footer {
  color: #fff;
  font-size: 1.8rem;
}

.hw-footer-intro p {
  max-width: 540px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.hw-footer-links h2 {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.48);
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hw-footer-links ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hw-footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
}

.hw-footer-links a:hover {
  color: #fff;
}

.hw-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.42);
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
}

.hw-footer-bottom p {
  margin: 0;
}

@media (max-width: 1120px) {
  .hw-header-inner {
    gap: 0.9rem;
  }

  .hw-brand-note,
  .hw-console-link {
    display: none;
  }

  .hw-menu {
    gap: 0.75rem;
  }

  .hw-menu > .menu-item > a {
    font-size: 0.78rem;
  }

  .hw-category-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hw-methodology-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hw-methodology-grid > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 919px) {
  .hw-site-header {
    position: sticky;
    top: 0;
  }

  .hw-header-inner {
    grid-template-columns: 1fr auto auto;
    min-height: 68px;
  }

  .hw-nav-toggle {
    display: block;
    grid-column: 2;
  }

  .hw-primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-bottom: 0.8rem;
  }

  .hw-js .hw-primary-nav {
    display: none;
  }

  .hw-js.hw-nav-is-open .hw-primary-nav {
    display: block;
  }

  .hw-menu {
    display: grid;
    gap: 0;
    align-items: stretch;
    border-top: 1px solid var(--hw-rule);
  }

  .hw-menu > .menu-item > a {
    min-height: 48px;
    border-bottom: 1px solid var(--hw-rule);
  }

  .hw-menu > .menu-item > a::after {
    display: none;
  }

  .hw-menu .sub-menu {
    position: static;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 0 0.6rem 1rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hw-menu .sub-menu a {
    padding: 0.5rem 0.75rem;
  }

  .hw-button--header {
    min-height: 42px;
    padding-inline: 0.9rem;
  }

  .hw-hero-grid,
  .hw-latest-grid,
  .hw-consult-block {
    grid-template-columns: 1fr;
  }

  .hw-hero-grid {
    min-height: 0;
    gap: 3.5rem;
    padding-block: 5rem 4rem;
  }

  .hw-hero-proof {
    min-height: 300px;
  }

  .hw-pathway-copy small {
    display: none;
  }

  .hw-section-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hw-section-heading--compact {
    grid-template-columns: 1fr auto;
  }

  .hw-ranking-head,
  .hw-ranking-row {
    grid-template-columns: minmax(220px, 1.6fr) minmax(130px, 0.8fr) minmax(170px, 0.9fr) 100px;
  }

  .hw-ranking-table {
    overflow-x: auto;
  }

  .hw-ranking-head,
  .hw-ranking-row {
    min-width: 720px;
  }

  .hw-service-grid {
    grid-template-columns: 1fr;
  }

  .hw-service-panel {
    min-height: 410px;
  }

  .hw-guide-grid {
    grid-template-columns: 1fr;
  }

  .hw-guide-card {
    min-height: 260px;
  }

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

  .hw-footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .hw-shell {
    width: min(100% - 28px, var(--hw-shell));
  }

  .hw-brand-note {
    display: none;
  }

  .hw-brand-name {
    font-size: 1.35rem;
  }

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

  .hw-header-actions {
    display: none;
  }

  .hw-hero::before {
    left: 14px;
  }

  .hw-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.25rem);
    letter-spacing: -0.07em;
  }

  .hw-hero-intro {
    font-size: 0.95rem;
  }

  .hw-hero-actions {
    display: grid;
  }

  .hw-hero-actions .hw-button {
    width: 100%;
  }

  .hw-hero-proof {
    padding: 2rem 0 0;
    border-top: 1px solid var(--hw-rule);
    border-left: 0;
  }

  .hw-proof-index {
    top: 0.5rem;
  }

  .hw-pathway-list {
    grid-template-columns: 1fr;
  }

  .hw-pathway,
  .hw-pathway:first-child {
    min-height: 92px;
    border-right: 1px solid var(--hw-rule);
    border-bottom: 1px solid var(--hw-rule);
    border-left: 1px solid var(--hw-rule);
  }

  .hw-pathway:last-child {
    border-bottom: 0;
  }

  .hw-story-media,
  .hw-story-media img,
  .hw-story-placeholder {
    min-height: 230px;
  }

  .hw-inline-heading {
    display: block;
  }

  .hw-inline-heading span {
    display: block;
    margin-top: 0.35rem;
  }

  .hw-category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hw-category-list a {
    min-height: 132px;
  }

  .hw-section-heading--compact {
    grid-template-columns: 1fr;
  }

  .hw-service-panel {
    min-height: 0;
  }

  .hw-consult-block {
    padding-inline: 1.2rem;
  }

  .hw-methodology-grid {
    grid-template-columns: 1fr;
  }

  .hw-methodology-grid > div {
    grid-column: auto;
  }

  .hw-methodology-grid > div,
  .hw-methodology-grid > a {
    min-height: 130px;
  }

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

  .hw-footer-intro {
    grid-column: auto;
  }

  .hw-footer-bottom {
    display: grid;
    gap: 0.5rem;
  }
}

/* Preserve the code-block spacing previously configured in Additional CSS. */
.enlighter-code {
  min-height: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.enlighter-code .enlighter {
  min-height: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hostingwiki-next *,
  .hostingwiki-next *::before,
  .hostingwiki-next *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
