:root {
  --mh-night-950: #0e1022;
  --mh-night-900: #15172f;
  --mh-night-800: #1d2142;
  --mh-indigo-700: #273764;
  --mh-violet-600: #5a3f8f;
  --mh-paper-50: #fffaf0;
  --mh-paper-100: #f7efe0;
  --mh-paper-200: #eadcc6;
  --mh-paper-300: #d8c3a0;
  --mh-gold-300: #e8c982;
  --mh-gold-400: #d7ad58;
  --mh-gold-500: #b98632;
  --mh-ink-950: #191720;
  --mh-ink-800: #2b2d3a;
  --mh-ink-650: #55586a;
  --mh-ink-500: #757987;
  --mh-line-dark: rgba(232, 201, 130, 0.28);
  --mh-line-light: rgba(99, 83, 53, 0.18);
  --mh-glow-soft: rgba(215, 173, 88, 0.2);
  --mh-violet-glow: rgba(116, 81, 180, 0.26);
  --mh-success: #4f8f69;
  --mh-warning: #b98632;
  --mh-error: #b85a4d;
  --mh-disabled: #aaa7a0;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --shadow-paper: 0 18px 50px rgba(25, 23, 32, 0.08);
  --shadow-elevated: 0 28px 90px rgba(14, 16, 34, 0.28);
  --shadow-gold-soft: 0 0 42px rgba(215, 173, 88, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-sans);
  color: var(--mh-ink-950);
  background:
    radial-gradient(circle at 18% 0%, rgba(215, 173, 88, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--mh-night-950) 0%, var(--mh-night-900) 23rem, var(--mh-paper-100) 23.05rem, var(--mh-paper-50) 100%);
  line-height: 1.75;
}

body.paper-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(215, 173, 88, 0.14), transparent 26rem),
    linear-gradient(180deg, var(--mh-night-950) 0%, var(--mh-night-900) 15rem, var(--mh-paper-100) 15.05rem, var(--mh-paper-50) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--mh-gold-300);
  outline-offset: 4px;
  border-radius: 8px;
}

.site-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 34px;
  color: var(--mh-paper-50);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--mh-paper-50);
}

.brand-mark::before {
  content: "";
  width: 26px;
  height: 26px;
  border: 1px solid var(--mh-line-dark);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(232, 201, 130, 0.55) 49%, rgba(232, 201, 130, 0.55) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(232, 201, 130, 0.55) 49%, rgba(232, 201, 130, 0.55) 51%, transparent 52%),
    radial-gradient(circle, rgba(232, 201, 130, 0.34), transparent 54%);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 250, 240, 0.82);
}

.primary-nav a {
  padding: 10px 0;
}

.primary-nav a[aria-current="page"] {
  color: var(--mh-gold-300);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  padding: 68px;
  color: var(--mh-paper-50);
  background:
    radial-gradient(circle at 66% 46%, rgba(116, 81, 180, 0.34), transparent 18rem),
    radial-gradient(circle at 42% 56%, rgba(215, 173, 88, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(14, 16, 34, 0.98), rgba(29, 33, 66, 0.92));
  border: 1px solid var(--mh-line-dark);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 36px;
  border: 1px solid rgba(232, 201, 130, 0.16);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero::after {
  width: 1px;
  height: 120%;
  left: 62%;
  top: -10%;
  background: linear-gradient(180deg, transparent, rgba(232, 201, 130, 0.32), transparent);
}

.hero-content,
.hero-orbit {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--mh-gold-300);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--mh-gold-300);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  color: inherit;
}

h1,
.display-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 8vw, 76px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.article-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 58px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 21px;
  font-weight: 650;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 18px;
  line-height: 1.78;
}

.paper-lead {
  max-width: 780px;
  margin-top: 18px;
  color: var(--mh-ink-650);
  font-size: 18px;
  line-height: 1.78;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--mh-line-dark);
  color: var(--mh-paper-50);
  font-weight: 700;
  line-height: 1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn.primary {
  color: var(--mh-night-950);
  background: var(--mh-gold-300);
  border-color: var(--mh-gold-300);
}

.btn.secondary {
  /* b72b-secondary-button-contrast */
  color: var(--mh-paper-50);
  border-color: rgba(232, 201, 130, 0.5);
  background: rgba(255, 250, 240, 0.08);
}

.btn.secondary:hover {
  border-color: rgba(232, 201, 130, 0.76);
  background: rgba(255, 250, 240, 0.14);
}
.btn.paper {
  color: var(--mh-ink-950);
  border-color: var(--mh-line-light);
  background: rgba(255, 250, 240, 0.72);
}

.hero-orbit {
  display: grid;
  place-items: center;
}

.orbit-card {
  width: min(300px, 100%);
  aspect-ratio: 0.72;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--mh-gold-300);
  background:
    radial-gradient(circle at 50% 46%, rgba(232, 201, 130, 0.16), transparent 42%),
    linear-gradient(160deg, rgba(21, 23, 47, 0.92), rgba(14, 16, 34, 0.98));
  border: 1px solid var(--mh-line-dark);
  border-radius: 32px;
  box-shadow: var(--shadow-gold-soft);
  transform: rotate(-6deg);
}

.orbit-card span {
  display: block;
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 0.95;
  text-align: center;
}

.orbit-card small {
  display: block;
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  margin-top: 72px;
}

.paper-panel {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(247, 239, 224, 0.92));
  border: 1px solid var(--mh-line-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-paper);
}

.night-panel {
  color: var(--mh-paper-50);
  background:
    radial-gradient(circle at 88% 0%, rgba(116, 81, 180, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(21, 23, 47, 0.98), rgba(14, 16, 34, 0.98));
  border: 1px solid var(--mh-line-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 24px;
  border: 1px solid var(--mh-line-light);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.82);
}

.night-panel .card {
  border-color: var(--mh-line-dark);
  background: rgba(255, 250, 240, 0.045);
}

.card h3 {
  margin-bottom: 10px;
}

.card p,
.article p,
.article li {
  color: var(--mh-ink-650);
}

.night-panel .card p,
.night-panel p,
.night-panel li {
  color: rgba(255, 250, 240, 0.76);
}

.article {
  max-width: 840px;
  margin: 0 auto;
}

.article > * + * {
  margin-top: 22px;
}

.article h2 {
  margin-top: 48px;
  color: var(--mh-ink-950);
}

.article h3 {
  margin-top: 28px;
  color: var(--mh-ink-800);
}

.article ul,
.article ol {
  margin: 14px 0 0;
  padding-left: 24px;
}

.article li + li {
  margin-top: 8px;
}

.callout {
  margin-top: 26px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(185, 134, 50, 0.28);
  background: rgba(232, 201, 130, 0.14);
  color: #4f3a1e;
}

.callout strong {
  color: var(--mh-ink-950);
}

.page-hero {
  /* b72b-page-hero-dark-panel */
  position: relative;
  overflow: hidden;
  margin: 0 0 42px;
  padding: 44px 42px;
  color: var(--mh-paper-50);
  background:
    radial-gradient(circle at 80% 0%, rgba(116, 81, 180, 0.24), transparent 18rem),
    radial-gradient(circle at 18% 22%, rgba(232, 201, 130, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(21, 23, 47, 0.98), rgba(14, 16, 34, 0.98));
  border: 1px solid var(--mh-line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 28px;
  pointer-events: none;
  border: 1px solid rgba(232, 201, 130, 0.14);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero .article-title {
  max-width: 900px;
}

.page-hero .paper-lead {
  color: rgba(255, 250, 240, 0.8);
}
.toc {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.toc a {
  padding: 8px 12px;
  border: 1px solid var(--mh-line-dark);
  border-radius: var(--radius-pill);
  color: rgba(255, 250, 240, 0.84);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px;
  border: 1px solid var(--mh-line-light);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.86);
}

.faq-item h2,
.faq-item h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
}

.support-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
}

.site-footer {
  margin-top: 84px;
  padding: 36px 0 46px;
  color: rgba(25, 23, 32, 0.74);
  border-top: 1px solid var(--mh-line-light);
}

.site-footer p {
  max-width: 760px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 18px;
  font-size: 14px;
}

.footer-links a {
  color: var(--mh-ink-800);
}

@media (max-width: 900px) {
  .hero,
  .support-grid,
  .editorial-split,
  .product-entry {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 42px;
  }

  .hero::after {
    display: none;
  }

  .grid,
  .grid.two,
  .tier-row {
    grid-template-columns: 1fr;
  }

  .tier-row span {
    border-left: 0;
    border-top: 1px solid var(--mh-line-light);
  }

  .tier-row span:first-child {
    border-top: 0;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 24px;
  }

  .primary-nav {
    justify-content: flex-start;
    gap: 12px 16px;
    font-size: 12px;
  }

  .hero {
    padding: 30px 20px;
    border-radius: 28px;
  }

  .orbit-card {
    width: min(220px, 82%);
  }

  .paper-panel,
  .night-panel,
  .card,
  .faq-item,
  .faq-group {
    padding: 22px;
  }

  .step-rail li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .single-action {
    align-items: stretch;
    flex-direction: column;
  }

  .section {
    margin-top: 48px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* b72b-page-hero-responsive */
@media (max-width: 900px) {
  .page-hero {
    padding: 38px 34px;
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .page-hero::before {
    inset: 18px;
  }
}

/* b72u2-anti-ai-structural-ui */
.inline-link,
.text-link,
.soft-links a {
  color: var(--mh-gold-500);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 149, 74, 0.42);
}

.inline-link:hover,
.text-link:hover,
.soft-links a:hover {
  color: var(--mh-gold-300);
  border-bottom-color: currentColor;
}

.editorial-split,
.product-entry {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.editorial-copy p:last-child,
.product-copy p:last-of-type {
  margin-bottom: 0;
}

.definition-map,
.comparison-list,
.compact-dl {
  display: grid;
  gap: 14px;
}

.definition-map dl,
.comparison-list,
.compact-dl {
  margin: 0;
}

.definition-map div,
.comparison-list div,
.compact-dl div {
  padding: 16px 0;
  border-top: 1px solid rgba(196, 149, 74, 0.22);
}

.definition-map dt,
.comparison-list dt,
.compact-dl dt {
  color: var(--mh-ink-900);
  font-weight: 800;
}

.definition-map dd,
.comparison-list dd,
.compact-dl dd {
  margin: 6px 0 0;
  color: rgba(25, 23, 32, 0.72);
}

.fuda-preview {
  display: grid;
  place-items: center;
}

.fuda-card {
  width: min(260px, 100%);
  min-height: 340px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 34px 28px;
  color: var(--mh-ink-900);
  text-align: center;
  border: 1px solid rgba(196, 149, 74, 0.42);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(231, 216, 188, 0.9)),
    radial-gradient(circle at top, rgba(196, 149, 74, 0.2), transparent 60%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.fuda-kicker {
  color: rgba(25, 23, 32, 0.56);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fuda-card strong {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.05;
}

.product-points,
.boundary-list,
.checklist {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.product-points li,
.boundary-list li,
.checklist li {
  position: relative;
  padding-left: 22px;
}

.product-points li::before,
.boundary-list li::before,
.checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--mh-gold-500);
}

.product-points strong {
  display: block;
  color: var(--mh-ivory);
}

.product-points span {
  display: block;
  color: rgba(255, 250, 240, 0.68);
}

.single-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.access-editorial .comparison-list {
  margin-top: 22px;
}

.disclosure-callout,
.responsibility-callout,
.data-summary,
.responsibility-summary {
  margin-top: 24px;
}

.page-nav,
.article-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 24px;
}

.page-nav span,
.article-toc span {
  color: rgba(255, 250, 240, 0.66);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-toc span {
  color: rgba(25, 23, 32, 0.58);
}

.page-nav a,
.article-toc a {
  color: var(--mh-gold-500);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 149, 74, 0.36);
}

.tier-comparison {
  display: grid;
  margin: 20px 0 36px;
  border: 1px solid var(--mh-line-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 250, 240, 0.72);
}

.tier-row {
  display: grid;
  grid-template-columns: 0.72fr 1.25fr 1.03fr;
}

.tier-row + .tier-row {
  border-top: 1px solid var(--mh-line-light);
}

.tier-row span {
  padding: 14px 16px;
  color: rgba(25, 23, 32, 0.74);
  border-left: 1px solid var(--mh-line-light);
}

.tier-row span:first-child {
  color: var(--mh-ink-900);
  font-weight: 800;
  border-left: 0;
}

.tier-head {
  background: rgba(196, 149, 74, 0.12);
}

.tier-head span {
  color: var(--mh-ink-900);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-rail {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-rail li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 0 0 30px;
  position: relative;
}

.step-rail li + li {
  padding-top: 30px;
  border-top: 1px solid var(--mh-line-light);
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--mh-gold-700);
  font-weight: 800;
  border: 1px solid rgba(196, 149, 74, 0.42);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.86);
}

.guide-article h2 {
  margin-top: 0;
}

.faq-groups {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.faq-group {
  padding: 28px;
  border: 1px solid var(--mh-line-light);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.82);
}

.faq-group > h2 {
  margin: 0 0 18px;
  font-size: clamp(22px, 3vw, 30px);
}

.qa-list {
  display: grid;
  gap: 12px;
}

.faq-item.compact {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.faq-item.compact + .faq-item.compact {
  padding-top: 14px;
  border-top: 1px solid var(--mh-line-light);
}

.faq-item.compact h3 {
  margin-bottom: 6px;
}

.contact-direct,
.contact-checklist,
.link-row {
  max-width: 880px;
}

.contact-email {
  font-size: clamp(22px, 4vw, 34px);
  font-family: var(--font-serif);
}

.contact-email a {
  color: var(--mh-gold-500);
  text-decoration: none;
}

.compact-dl {
  margin-top: 20px;
}

.soft-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}


/* b72v5-mobile-structural-css-repair */

/* Keep step-rail layout scoped to direct step items only.
   B72U2 used .step-rail li, which also affected nested guide bullets. */
.step-rail > li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 0 0 30px;
  position: relative;
}

.step-rail > li + li {
  padding-top: 30px;
  border-top: 1px solid var(--mh-line-light);
}

.step-rail > li li {
  display: list-item;
  grid-template-columns: none;
  gap: 0;
  padding: 0;
  border-top: 0;
  position: static;
}

.step-rail > li li + li {
  padding-top: 0;
  border-top: 0;
}

.step-rail ul {
  list-style: disc;
}

.product-points strong {
  color: var(--mh-paper-50);
}

@media (max-width: 900px) {
  .editorial-split,
  .product-entry {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .definition-map,
  .comparison-list,
  .compact-dl,
  .product-copy,
  .editorial-copy {
    min-width: 0;
    width: 100%;
  }

  .tier-row {
    grid-template-columns: 1fr;
  }

  .tier-row span {
    border-left: 0;
    border-top: 1px solid var(--mh-line-light);
  }

  .tier-row span:first-child {
    border-top: 0;
  }

  .page-nav,
  .article-toc {
    gap: 8px 12px;
  }
}

@media (max-width: 720px) {
  .hero {
    gap: 24px;
  }

  .hero-orbit {
    margin-top: 4px;
  }

  .orbit-card {
    width: min(210px, 78%);
  }

  .editorial-split,
  .product-entry {
    align-items: stretch;
  }

  .fuda-preview {
    justify-items: center;
  }

  .fuda-card {
    width: min(220px, 82%);
    min-height: 248px;
    padding: 28px 22px;
  }

  .fuda-card strong {
    font-size: clamp(24px, 8vw, 34px);
  }

  .definition-map div,
  .comparison-list div,
  .compact-dl div {
    padding: 12px 0;
  }

  .single-action {
    align-items: stretch;
    flex-direction: column;
  }

  .single-action .text-link {
    align-self: center;
    padding: 2px 0;
  }

  .step-rail > li {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 26px;
  }

  .step-rail > li + li {
    padding-top: 26px;
  }

  .step-rail ul {
    padding-left: 20px;
  }

  .step-rail > li li {
    display: list-item;
    padding: 0;
    border-top: 0;
  }

  .step-rail > li li + li {
    margin-top: 8px;
    padding-top: 0;
    border-top: 0;
  }

  .step-number {
    width: 36px;
    height: 36px;
  }

  .tier-comparison {
    display: grid;
    gap: 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }

  .tier-head {
    display: none;
  }

  .tier-row {
    display: block;
    border: 1px solid var(--mh-line-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: rgba(255, 250, 240, 0.76);
  }

  .tier-row + .tier-row {
    border-top: 1px solid var(--mh-line-light);
  }

  .tier-row span {
    display: block;
    padding: 12px 14px;
    border-left: 0;
    border-top: 1px solid var(--mh-line-light);
  }

  .tier-row span:first-child {
    border-top: 0;
    background: rgba(196, 149, 74, 0.12);
  }

  .faq-group {
    padding: 20px 18px;
  }

  .contact-email {
    overflow-wrap: anywhere;
    font-size: clamp(20px, 7vw, 28px);
  }

  .lead,
  .paper-lead {
    font-size: 16px;
  }
}



/* b72v7-omikuji-mobile-tier-repair */

/* The B72V6 screenshot uses a mobile capture width that enters <=900px
   but not <=720px. Promote tier-card behavior to <=900px so the Omikuji
   access comparison no longer shows a stranded table header on mobile. */
@media (max-width: 900px) {
  .tier-comparison {
    display: grid;
    gap: 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }

  .tier-head {
    display: none;
  }

  .tier-row {
    display: block;
    border: 1px solid var(--mh-line-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: rgba(255, 250, 240, 0.76);
  }

  .tier-row + .tier-row {
    border-top: 1px solid var(--mh-line-light);
  }

  .tier-row span {
    display: block;
    padding: 12px 14px;
    border-left: 0;
    border-top: 1px solid var(--mh-line-light);
  }

  .tier-row span:first-child {
    border-top: 0;
    background: rgba(196, 149, 74, 0.12);
  }
}



/* b72v10-final-mobile-polish */

/* Final visual QA polish after B72V9 screenshots:
   - enforce mobile/tablet tier cards for Omikuji access comparison;
   - prevent contact email from awkwardly splitting as "c / om";
   - increase mobile navigation tap targets without introducing JS. */
@media (max-width: 1100px) {
  .tier-comparison {
    display: grid !important;
    gap: 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }

  .tier-comparison .tier-head {
    display: none !important;
  }

  .tier-comparison .tier-row {
    display: block !important;
    border: 1px solid var(--mh-line-light) !important;
    border-radius: var(--radius-sm) !important;
    overflow: hidden !important;
    background: rgba(255, 250, 240, 0.76) !important;
  }

  .tier-comparison .tier-row + .tier-row {
    border-top: 1px solid var(--mh-line-light) !important;
  }

  .tier-comparison .tier-row span {
    display: block !important;
    width: 100% !important;
    padding: 12px 14px !important;
    border-left: 0 !important;
    border-top: 1px solid var(--mh-line-light) !important;
  }

  .tier-comparison .tier-row span:first-child {
    border-top: 0 !important;
    background: rgba(196, 149, 74, 0.12) !important;
  }
}

@media (max-width: 900px) {
  .primary-nav {
    gap: 4px 12px;
  }

  .primary-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0;
  }

  .contact-email {
    font-size: clamp(19px, 5.2vw, 24px);
    line-height: 1.25;
  }

  .contact-email a {
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (max-width: 360px) {
  .contact-email a {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}


/* b73-root-horizontal-in-content-display-ad-slots */
.ad-section {
  position: relative;
  max-width: 840px;
  margin: 54px auto 0;
  min-width: 0;
}

.ad-section .adsbygoogle.ad-slot {
  display: block;
  width: 100%;
  min-width: 0;
}

.article .ad-section {
  margin: 42px 0 38px;
}

.guide-step-ad {
  grid-column: 1 / -1;
  margin: 22px 0 2px;
}

@supports selector(:has(*)) {
  .ad-section:has(.adsbygoogle[data-ad-status="unfilled"]) {
    display: none;
  }
}

@media (max-width: 720px) {
  .ad-section {
    margin-top: 42px;
  }

  .article .ad-section,
  .guide-step-ad {
    margin: 32px 0 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* b72v12-omikuji-tier-head-hard-hide */

/* B72V11 screenshot still showed the tier header as a standalone mobile card.
   Use direct child and first-row fallbacks scoped to the Omikuji comparison.
   Desktop table remains unchanged above 1100px. */
@media (max-width: 1100px) {
  .tier-comparison > .tier-row.tier-head,
  .tier-comparison > .tier-head,
  .tier-comparison > [role="row"].tier-head,
  .tier-comparison > [role="row"]:first-child {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
  }

  .tier-comparison > .tier-row.tier-head *,
  .tier-comparison > .tier-head *,
  .tier-comparison > [role="row"].tier-head *,
  .tier-comparison > [role="row"]:first-child * {
    display: none !important;
  }

  .tier-comparison > .tier-row:not(.tier-head) {
    display: block !important;
  }
}
