:root {
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

@media (prefers-reduced-motion: reduce) {
  * {
  animation-duration: auto !important;
  animation-timing-function: ease !important;
  animation-delay: 0s !important;
  animation-iteration-count: 1 !important;
  animation-direction: normal !important;
  animation-fill-mode: none !important;
  animation-play-state: running !important;
  animation-name: none !important;
  animation-timeline: auto !important;
  animation-range-start: normal !important;
  animation-range-end: normal !important;
  transition-behavior: normal !important;
  transition-duration: 0s !important;
  transition-timing-function: ease !important;
  transition-delay: 0s !important;
  transition-property: none !important;
  }
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}

a {
  color: inherit;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.container {
  max-width: var(--maxw);
  margin-inline-start: auto;
  margin-inline-end: auto;
  padding-inline: var(--gutter);
}

.ph {
  color: var(--paper-faint);
  font-style: italic;
}

.ph::before {
  content: "[";
}

.ph::after {
  content: "]";
}

.site-header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  background-image: linear-gradient(rgba(13, 13, 15, 0.92), rgba(13, 13, 15, 0.62));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: border-color, background;
}

.site-header.scrolled {
  border-bottom-color: var(--gold-deep);
  background: var(--ink);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  row-gap: 12px;
  column-gap: 12px;
}

.brand img {
  height: 30px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  row-gap: 38px;
  column-gap: 38px;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
}

@media (max-width: 900px) {
  .nav-links {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100vw;
  height: 100dvh;
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 34px;
  column-gap: 34px;
  padding: 0px 24px;
  margin: 0px;
  background: var(--ink);
  transform: translateY(-100%);
  opacity: 0;
  transition-behavior: normal, normal;
  transition-duration: 0.4s, 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1), ease;
  transition-delay: 0s, 0s;
  transition-property: transform, opacity;
  }
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-dim);
  position: relative;
  padding: 6px 0px;
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

@media (max-width: 900px) {
  .nav-links a {
  font-size: 1.5rem;
  text-align: center;
  }
}

.nav-links a:hover, .nav-links a.active {
  color: var(--paper);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 1px;
  width: 0px;
  background: var(--gold);
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: width;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid var(--gold-deep);
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  color: var(--gold-bright) !important;
  padding: 10px 20px !important;
}

@media (max-width: 900px) {
  .nav-cta {
  margin-top: 12px;
  padding: 14px 32px !important;
  }
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink) !important;
}

.nav-cta:not(.btn-pulse)::after {
  display: none;
}

.nav-cta.btn-pulse::after {
  left: auto;
  bottom: auto;
  width: auto;
  height: auto;
  background-image: none;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  transition-behavior: normal;
  transition-duration: 0s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: none;
}

.nav-toggle {
  display: none;
  background-image: none;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
}

@media (max-width: 900px) {
  .nav-toggle {
  display: block;
  }
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  margin: 5px auto;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: transform, opacity;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  cursor: pointer;
  transition-behavior: normal;
  transition-duration: 0.28s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--ink-line);
  color: var(--paper);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn .arrow {
  transition-behavior: normal;
  transition-duration: 0.28s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: transform;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-pulse {
  position: relative;
}

.btn-pulse::before, .btn-pulse::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
  border: 1px solid var(--gold);
  opacity: 0;
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: ctaRing;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn-pulse::before, .btn-pulse::after {
  animation-duration: auto !important;
  animation-timing-function: ease !important;
  animation-delay: 0s !important;
  animation-iteration-count: 1 !important;
  animation-direction: normal !important;
  animation-fill-mode: none !important;
  animation-play-state: running !important;
  animation-name: none !important;
  animation-timeline: auto !important;
  animation-range-start: normal !important;
  animation-range-end: normal !important;
  opacity: 0 !important;
  content: none !important;
  }
}

.btn-pulse::after {
  animation-delay: 1.5s;
}

@keyframes ctaRing {
  0% {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 1;
  }
  60% {
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    opacity: 0.4;
  }
  100% {
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    opacity: 0;
  }
}

.btn-pulse:hover::before, .btn-pulse:hover::after {
  animation-duration: auto;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: none;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  opacity: 0;
}

section {
  padding-block-start: clamp(64px, 10vw, 130px);
  padding-block-end: clamp(64px, 10vw, 130px);
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-head .eyebrow {
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--paper);
  margin-bottom: 20px;
}

.section-head h2 .gold {
  color: var(--gold);
}

.section-head p {
  color: var(--paper-dim);
  font-size: 1.05rem;
  max-width: 68ch;
}

.site-footer {
  background: var(--ink-soft);
  border-top: 1px solid var(--ink-line);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  row-gap: 48px;
  column-gap: 48px;
  padding-bottom: 56px;
}

@media (max-width: 900px) {
  .footer-grid {
  grid-template-columns: 1fr;
  row-gap: 36px;
  column-gap: 36px;
  }
}

.footer-brand img {
  height: 34px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--paper-dim);
  font-size: 0.92rem;
  max-width: 34ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a, .footer-col p {
  display: block;
  color: var(--paper-dim);
  font-size: 0.92rem;
  margin-bottom: 12px;
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

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

.footer-social {
  display: flex;
  row-gap: 14px;
  column-gap: 14px;
  margin-top: 6px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink-line);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: grid;
  align-items: center;
  justify-items: center;
  font-size: 1.1rem;
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.footer-legal {
  border-top: 1px solid var(--ink-line);
  padding-block-start: 22px;
  padding-block-end: 22px;
}

.footer-legal p {
  color: var(--paper-faint);
  font-size: 0.78rem;
  line-height: 1.7;
  margin: 0px;
  max-width: none;
}

.footer-legal strong {
  color: var(--paper-dim);
}

.footer-bottom {
  border-top: 1px solid var(--ink-line);
  padding-block-start: 26px;
  padding-block-end: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  row-gap: 16px;
  column-gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p, .footer-bottom a {
  color: var(--paper-faint);
  font-size: 0.82rem;
}

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

.legal-strip {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-left: 3px solid var(--gold);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 22px 26px;
  color: var(--paper-dim);
  font-size: 0.88rem;
  line-height: 1.7;
}

.legal-strip strong {
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition-behavior: normal, normal;
  transition-duration: 0.7s, 0.7s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
  opacity: 1;
  transform: none;
  }
}

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

.ix-label {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.ix-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.hx-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  row-gap: clamp(24px, 4vw, 56px);
  column-gap: clamp(24px, 4vw, 56px);
  align-items: center;
  border: 1px solid var(--ink-line);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background: var(--ink-soft);
  padding: clamp(22px, 3vw, 42px);
  scroll-margin-top: 96px;
}

@media (max-width: 820px) {
  .hx-wrap {
  grid-template-columns: 1fr;
  }
}

.hx-stage {
  position: relative;
}

.hx-stage svg {
  width: 100%;
  height: auto;
  display: block;
  overflow-x: visible;
  overflow-y: visible;
}

.hx-node {
  cursor: pointer;
}

.hx-node .hx-hit {
  fill: transparent;
}

.hx-node circle:not(.hx-hit) {
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  pointer-events: none;
}

.hx-node text {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  fill: var(--paper-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: fill;
  pointer-events: none;
}

.hx-node:hover circle:not(.hx-hit), .hx-node.on circle:not(.hx-hit) {
  fill: var(--gold);
  r: 9;
}

.hx-node:hover text, .hx-node.on text {
  fill: var(--paper);
}

.hx-node:focus-visible .hx-hit {
  stroke: var(--gold);
  stroke-width: 1;
}

.hx-link {
  transition-behavior: normal, normal;
  transition-duration: 0.35s, 0.35s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: stroke, stroke-width;
  pointer-events: none;
}

.hx-link.lit {
  stroke: var(--gold);
  stroke-width: 1.6;
}

.hx-info {
  min-height: 210px;
}

@media (max-width: 820px) {
  .hx-info {
  min-height: auto;
  }
}

.hx-info h3 {
  font-size: 1.9rem;
  color: var(--paper);
  margin-bottom: 12px;
  line-height: 1.05;
  opacity: 0;
  transform: translateY(6px);
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: opacity, transform;
}

.hx-info p {
  color: var(--paper-dim);
  font-size: 0.96rem;
  line-height: 1.75;
  max-width: 46ch;
  opacity: 0;
  transform: translateY(6px);
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-timing-function: ease, ease;
  transition-delay: 0.05s, 0.05s;
  transition-property: opacity, transform;
}

.hx-info.show h3, .hx-info.show p {
  opacity: 1;
  transform: none;
}

.hx-hint {
  color: var(--paper-faint);
  font-size: 0.86rem;
  font-style: italic;
}

.hx-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-deep);
  padding: 5px 12px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  opacity: 0;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0.1s;
  transition-property: opacity;
}

.hx-info.show .hx-tag {
  opacity: 1;
}

.mv-grid {
  display: grid;
  row-gap: 16px;
  column-gap: 16px;
}

.mv-card {
  border: 1px solid var(--ink-line);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background: var(--ink-soft);
  overflow-x: hidden;
  overflow-y: hidden;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: border-color;
}

.mv-card.answered {
  border-color: var(--gold-deep);
}

.mv-claim {
  padding: 24px 26px;
  display: flex;
  align-items: center;
  row-gap: 20px;
  column-gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .mv-claim {
  flex-direction: column;
  align-items: flex-start;
  }
}

.mv-claim p {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  min-width: 240px;
  color: var(--paper);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0px;
}

.mv-actions {
  display: flex;
  row-gap: 10px;
  column-gap: 10px;
}

@media (max-width: 820px) {
  .mv-actions {
  width: 100%;
  }
}

.mv-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  cursor: pointer;
  background-image: none;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border: 1px solid var(--ink-line);
  color: var(--paper-dim);
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

@media (max-width: 820px) {
  .mv-btn {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  }
}

.mv-btn:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.mv-btn.picked {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.mv-btn:disabled {
  cursor: default;
}

.mv-card.answered .mv-btn:not(.picked) {
  opacity: 0.35;
}

.mv-reveal {
  max-height: 0px;
  overflow-x: hidden;
  overflow-y: hidden;
  transition-behavior: normal;
  transition-duration: 0.45s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
  transition-property: max-height;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: transparent;
}

.mv-card.answered .mv-reveal {
  max-height: 340px;
  border-top-color: var(--ink-line);
}

.mv-reveal-in {
  padding: 22px 26px;
}

.mv-verdict {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mv-verdict.myth {
  color: rgb(192, 98, 90);
}

.mv-verdict.fact {
  color: var(--gold);
}

.mv-reveal-in p {
  color: var(--paper-dim);
  font-size: 0.94rem;
  line-height: 1.75;
  margin: 0px;
  max-width: 70ch;
}

.mv-score {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 16px;
  column-gap: 16px;
  flex-wrap: wrap;
}

.mv-score p {
  color: var(--paper-dim);
  font-size: 0.92rem;
  margin: 0px;
}

.mv-score strong {
  color: var(--gold);
}

.sy-wrap {
  position: relative;
}

.sy-track {
  position: absolute;
  left: 22px;
  top: 0px;
  bottom: 0px;
  width: 1px;
  background: var(--ink-line);
}

@media (max-width: 820px) {
  .sy-track {
  left: 15px;
  }
}

.sy-fill {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 0px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  transition-behavior: normal;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  transition-delay: 0s;
  transition-property: height;
}

.sy-step {
  position: relative;
  padding-left: 66px;
  padding-block-start: clamp(24px, 4vw, 40px);
  padding-block-end: clamp(24px, 4vw, 40px);
  opacity: 0.35;
  transform: translateY(10px);
  transition-behavior: normal, normal;
  transition-duration: 0.5s, 0.5s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: opacity, transform;
}

@media (max-width: 820px) {
  .sy-step {
  padding-left: 52px;
  }
}

.sy-step.in {
  opacity: 1;
  transform: none;
}

.sy-dot {
  position: absolute;
  left: 15px;
  top: calc(6px + clamp(24px, 4vw, 40px));
  width: 15px;
  height: 15px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--ink-line);
  transition-behavior: normal, normal, normal;
  transition-duration: 0.4s, 0.4s, 0.4s;
  transition-timing-function: ease, ease, ease;
  transition-delay: 0s, 0s, 0s;
  transition-property: border-color, background, transform;
}

@media (max-width: 820px) {
  .sy-dot {
  left: 8px;
  }
}

.sy-step.in .sy-dot {
  border-color: var(--gold);
  background: var(--gold);
  transform: scale(1.15);
}

.sy-step h3 {
  font-size: 1.8rem;
  color: var(--paper);
  margin-bottom: 10px;
}

.sy-step .sy-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 6px;
  display: block;
}

.sy-step p {
  color: var(--paper-dim);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 64ch;
  margin: 0px;
}

@media (max-width: 900px) {
  .nav-links.open {
  transform: translateY(0px);
  opacity: 1;
  }
}

.page-hero {
  padding-top: calc(76px + clamp(60px, 10vw, 110px));
  padding-bottom: clamp(30px, 5vw, 50px);
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: radial-gradient(70% 80% at 50% 10%, rgba(201, 162, 39, 0.1), transparent 60%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.page-hero .container {
  position: relative;
}

.page-hero .eyebrow {
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--paper);
  line-height: 0.95;
}

.page-hero h1 .gold {
  color: var(--gold);
}

.page-hero p {
  color: var(--paper-dim);
  max-width: 52ch;
  margin-top: 20px;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  row-gap: clamp(30px, 6vw, 72px);
  column-gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

@media (max-width: 820px) {
  .contact-grid {
  grid-template-columns: 1fr;
  }
}

.form-card {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  padding: clamp(28px, 4vw, 44px);
}

.field {
  margin-bottom: 24px;
}

.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.field input, .field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--ink-line);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 14px 16px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: border-color;
}

.field input:focus, .field textarea:focus {
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  border-color: var(--gold);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input::placeholder, .field textarea::placeholder {
  color: var(--paper-faint);
}

.form-note {
  font-size: 0.8rem;
  color: var(--paper-faint);
  margin-top: 6px;
}

.info-block {
  margin-bottom: 34px;
}

.info-block h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.info-block a, .info-block p {
  color: var(--paper);
  font-size: 1.05rem;
}

.info-block a:hover {
  color: var(--gold-bright);
}

.info-social {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  margin-top: 6px;
}

.info-social a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink-line);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: grid;
  align-items: center;
  justify-items: center;
  font-size: 1.2rem;
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.info-social a:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  overflow-x: hidden;
  overflow-y: hidden;
}

@media (max-width: 820px) {
  .hero {
  min-height: 100dvh;
  }
}

.hero-video-wrap {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition-behavior: normal;
  transition-duration: 1.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}

.hero-video.show {
  opacity: 1;
}

.hero-video-overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(13, 13, 15, 0.92) 0%, rgba(13, 13, 15, 0.7) 40%, rgba(13, 13, 15, 0.45) 100%), linear-gradient(0deg, rgba(13, 13, 15, 0.85) 0%, transparent 45%);
  background-position-x: initial, initial;
  background-position-y: initial, initial;
  background-size: initial, initial;
  background-repeat: initial, initial;
  background-attachment: initial, initial;
  background-origin: initial, initial;
  background-clip: initial, initial;
  background-color: initial;
  opacity: 0;
  transition-behavior: normal;
  transition-duration: 1s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}

.hero-video-wrap.active ~ .hero-video-overlay {
  opacity: 1;
}

@media (max-width: 820px) {
  .hero-video-wrap.active ~ .hero-video-overlay {
  background-image: linear-gradient(rgba(13, 13, 15, 0.72) 0%, rgba(13, 13, 15, 0.55) 45%, rgba(13, 13, 15, 0.82) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  }
}

.hero-bg {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(201,162,39,.10), transparent 60%),
        radial-gradient(ellipse 60% 50% at 15% 80%, rgba(201,162,39,.06), transparent 55%),
        var(--ink);
}

.hero-rings {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 820px) {
  .hero-rings {
  opacity: 0.25;
  }
}

.hero-rings svg {
  width: min(46vw, 640px);
  height: auto;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: 820px;
}

.hero .eyebrow {
  margin-bottom: 26px;
  opacity: 0;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-delay: 0.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: fadeUp;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.hero h1 {
  font-size: clamp(3.2rem, 10vw, 7rem);
  color: var(--paper);
  line-height: 0.94;
  margin-bottom: 28px;
  opacity: 0;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-delay: 0.22s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: fadeUp;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.hero h1 .gold {
  background: linear-gradient(180deg,var(--gold-bright),var(--gold) 55%,var(--gold-deep));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--paper-dim);
  max-width: 56ch;
  margin-bottom: 40px;
  opacity: 0;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-delay: 0.34s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: fadeUp;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.hero-actions {
  display: flex;
  row-gap: 16px;
  column-gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-delay: 0.46s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: fadeUp;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--paper-faint);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
  opacity: 0;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-delay: 0.8s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: fadeInOnly;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

@keyframes fadeInOnly {
  100% {
    opacity: 1;
  }
}

.scroll-hint .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold),transparent);
  animation-duration: 1.8s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: drop;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

@keyframes fadeUp {
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes drop {
  0% {
    transform: scaleY(0);
    transform-origin: center top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: center top;
  }
  51% {
    transform-origin: center bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: center bottom;
  }
}

.values {
  background: var(--ink-soft);
  border-block: 1px solid var(--ink-line);
  padding-block-start: 0px;
  padding-block-end: 0px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 820px) {
  .values-grid {
  grid-template-columns: 1fr;
  }
}

.value {
  padding: clamp(36px, 5vw, 60px) clamp(24px, 3vw, 44px);
  border-right: 1px solid var(--ink-line);
}

@media (max-width: 820px) {
  .value {
  border-right-width: medium;
  border-right-style: none;
  border-right-color: currentcolor;
  border-bottom: 1px solid var(--ink-line);
  }
}

.value:last-child {
  border-right-width: medium;
  border-right-style: none;
  border-right-color: currentcolor;
}

@media (max-width: 820px) {
  .value:last-child {
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  }
}

.value .vnum {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.value h3 {
  font-size: 1.7rem;
  color: var(--paper);
  margin-bottom: 12px;
}

.value p {
  color: var(--paper-dim);
  font-size: 0.95rem;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 24px;
  column-gap: 24px;
}

@media (max-width: 820px) {
  .svc-grid {
  grid-template-columns: 1fr;
  }
}

.svc-card {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 38px 34px;
  transition-behavior: normal, normal;
  transition-duration: 0.3s, 0.3s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: border-color, transform;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: center top;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: transform;
}

.svc-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-3px);
}

.svc-card:hover::before {
  transform: scaleY(1);
}

.svc-card .snum {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.svc-card h3 {
  font-size: 1.9rem;
  color: var(--paper);
  margin-bottom: 14px;
}

.svc-card p {
  color: var(--paper-dim);
  font-size: 0.95rem;
}

.cta-band {
  position: relative;
  text-align: center;
  overflow-x: hidden;
  overflow-y: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: radial-gradient(70% 120% at 50% 0%, rgba(201, 162, 39, 0.12), transparent 60%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.cta-band .container {
  position: relative;
}

.cta-band h2 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--paper);
  margin-bottom: 22px;
}

.cta-band h2 .gold {
  color: var(--gold);
}

.cta-band p {
  color: var(--paper-dim);
  max-width: 52ch;
  margin: 0px auto 38px;
  font-size: 1.08rem;
}

@media (max-width: 820px) {
  .hero-video-wrap, .hero-video {
  height: 100%;
  min-height: 100dvh;
  }
}

@media (max-width: 820px) {
  .hero-video-wrap.active ~ .hero-rings {
  opacity: 0.12;
  }
}

.page-hero-2::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: radial-gradient(70% 80% at 20% 20%, rgba(201, 162, 39, 0.1), transparent 60%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.page-hero-2 .container {
  position: relative;
}

.page-hero-2 .eyebrow {
  margin-bottom: 20px;
}

.page-hero-2 h1 {
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--paper);
  line-height: 0.95;
}

.page-hero-2 h1 .gold {
  color: var(--gold);
}

.about-lead {
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.about-lead h2 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: var(--paper);
  margin-bottom: 22px;
  line-height: 1.04;
}

.about-lead h2 .gold {
  color: var(--gold);
}

.about-intro {
  color: var(--paper-dim);
  font-size: 1.12rem;
  line-height: 1.75;
}

.pillars {
  background: var(--ink-soft);
  border-block: 1px solid var(--ink-line);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 24px;
  column-gap: 24px;
}

@media (max-width: 820px) {
  .pillar-grid {
  grid-template-columns: 1fr;
  }
}

.pillar {
  padding: 34px 30px;
  border: 1px solid var(--ink-line);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background: var(--ink);
}

.pillar .pico {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 1.6rem;
  color: var(--paper);
  margin-bottom: 10px;
}

.pillar p {
  color: var(--paper-dim);
  font-size: 0.93rem;
}

.creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 1px;
  column-gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow-x: hidden;
  overflow-y: hidden;
}

@media (max-width: 820px) {
  .creds {
  grid-template-columns: 1fr;
  }
}

.cred {
  background: var(--ink-soft);
  padding: 40px 30px;
  text-align: center;
}

.cred .cicon {
  width: 46px;
  height: 46px;
  margin: 0px auto 18px;
  border: 1px solid var(--gold-deep);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: grid;
  align-items: center;
  justify-items: center;
  color: var(--gold);
  font-size: 1.2rem;
}

.cred .ctitle {
  font-size: 1.5rem;
  color: var(--paper);
  margin-bottom: 10px;
}

.cred p {
  color: var(--paper-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.page-hero-3 .eyebrow {
  margin-bottom: 18px;
}

.page-hero-3 h1 {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  color: var(--paper);
  line-height: 0.98;
}

.page-hero-3 h1 .gold {
  color: var(--gold);
}

.legal-body {
  max-width: 760px;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
  margin: 40px 0px 14px;
  letter-spacing: 0.02em;
}

.legal-body p {
  color: var(--paper-dim);
  margin-bottom: 14px;
}

.legal-body ul {
  margin: 4px 0px 16px;
  padding-left: 20px;
}

.legal-body li {
  color: var(--paper-dim);
  margin-bottom: 8px;
}

.legal-body strong {
  color: var(--paper);
}

.legal-body .updated {
  color: var(--paper-faint);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.review-note {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-left: 3px solid var(--gold);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 18px 22px;
  margin: 26px 0px;
  font-size: 0.9rem;
  color: var(--paper-dim);
}

.back-links {
  margin-top: 48px;
  display: flex;
  row-gap: 14px;
  column-gap: 14px;
  flex-wrap: wrap;
}

.page-hero-2::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: radial-gradient(70% 80% at 80% 20%, rgba(201, 162, 39, 0.1), transparent 60%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.page-hero-2 .container {
  position: relative;
}

.page-hero-2 .eyebrow {
  margin-bottom: 20px;
}

.page-hero-2 h1 {
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--paper);
  line-height: 0.95;
}

.page-hero-2 h1 .gold {
  color: var(--gold);
}

.page-hero-2 p {
  color: var(--paper-dim);
  max-width: 68ch;
  margin-top: 22px;
  font-size: 1.08rem;
}

.svc-list {
  display: flex;
  flex-direction: column;
}

.svc-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  row-gap: 36px;
  column-gap: 36px;
  align-items: start;
  padding: 44px 0px;
  border-top: 1px solid var(--ink-line);
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: padding-left;
}

@media (max-width: 820px) {
  .svc-row {
  grid-template-columns: 1fr;
  row-gap: 14px;
  column-gap: 14px;
  padding: 32px 0px;
  }
}

.svc-row:hover {
  padding-left: 12px;
}

.svc-row:last-child {
  border-bottom: 1px solid var(--ink-line);
}

.svc-row .rnum {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}

@media (max-width: 820px) {
  .svc-row .rnum {
  font-size: 2rem;
  }
}

.svc-row .rbody h3 {
  font-size: 2rem;
  color: var(--paper);
  margin-bottom: 12px;
}

.svc-row .rbody p {
  color: var(--paper-dim);
  max-width: 68ch;
}

.svc-row .rtags {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 8px;
  margin-top: 16px;
}

.tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-faint);
  border: 1px solid var(--ink-line);
  padding: 5px 12px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.svc-row .rcta {
  align-self: center;
}

@media (max-width: 820px) {
  .svc-row .rcta {
  justify-self: start;
  }
}

.svc-row .rcta a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--paper-faint);
  transition-behavior: normal, normal;
  transition-duration: 0.25s, 0.25s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: color, transform;
  display: inline-block;
}

.svc-row:hover .rcta a {
  color: var(--gold);
  transform: translateX(4px);
}

.process {
  background: var(--ink-soft);
  border-block: 1px solid var(--ink-line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 1px;
  column-gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
}

@media (max-width: 820px) {
  .steps {
  grid-template-columns: 1fr;
  }
}

.step {
  background: var(--ink-soft);
  padding: 38px 28px;
}

.step .stnum {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-deep);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: grid;
  align-items: center;
  justify-items: center;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 22px;
}

.step h3 {
  font-size: 1.4rem;
  color: var(--paper);
  margin-bottom: 10px;
}

.step p {
  color: var(--paper-dim);
  font-size: 0.9rem;
}

.page-hero-3 .eyebrow {
  margin-bottom: 18px;
}

.page-hero-3 h1 {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  color: var(--paper);
  line-height: 0.98;
}

.page-hero-3 h1 .gold {
  color: var(--gold);
}

.legal-body {
  max-width: 760px;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
  margin: 40px 0px 14px;
  letter-spacing: 0.02em;
}

.legal-body p {
  color: var(--paper-dim);
  margin-bottom: 14px;
}

.legal-body ul {
  margin: 4px 0px 16px;
  padding-left: 20px;
}

.legal-body li {
  color: var(--paper-dim);
  margin-bottom: 8px;
}

.legal-body .updated {
  color: var(--paper-faint);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.legal-body strong {
  color: var(--paper);
}

.back-links {
  margin-top: 48px;
  display: flex;
  row-gap: 14px;
  column-gap: 14px;
  flex-wrap: wrap;
}

.review-note {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-left: 3px solid var(--gold);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 18px 22px;
  margin: 26px 0px;
  font-size: 0.9rem;
  color: var(--paper-dim);
}

.page-hero-2 {
  padding-top: calc(76px + clamp(60px, 10vw, 120px));
  padding-bottom: clamp(40px, 6vw, 70px);
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.page-hero-3 {
  padding-top: calc(76px + clamp(50px, 8vw, 90px));
  padding-bottom: clamp(20px, 4vw, 40px);
}