html[data-theme] body {
  background: var(--bg);
  color: var(--text);
}

.brand-logo-dark,
.brand-mark-dark {
  display: none;
}

html[data-theme="dark"] .brand-logo-dark,
html[data-theme="dark"] .brand-mark-dark,
html[data-theme="light"] .brand-logo-light,
html[data-theme="light"] .brand-mark-light {
  display: block;
}

html[data-theme="dark"] .brand-logo-light,
html[data-theme="dark"] .brand-mark-light,
html[data-theme="light"] .brand-logo-dark,
html[data-theme="light"] .brand-mark-dark {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 20, .74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header a {
  text-decoration: none;
}

html[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, .82);
}

.site-header__inner {
  max-width: var(--maxw, 1140px);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 2;
}

.site-header__brand {
  display: flex;
  align-items: center;
  min-width: 0;
  color: var(--text);
}

.brand-lockup-svg {
  width: 172px;
  max-width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
}

.site-nav__group {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 100%;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
  cursor: pointer;
  position: relative;
  transition: color .2s;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease, cubic-bezier(.2,.7,.2,1));
}

.site-nav__caret {
  width: 9px;
  height: 9px;
  opacity: .6;
  transition: transform .25s var(--ease, cubic-bezier(.2,.7,.2,1)), opacity .25s;
}

.site-nav__link:hover,
.site-nav__group:hover .site-nav__link,
.site-nav__group.is-open .site-nav__link {
  color: var(--text);
  background: transparent;
}

.site-nav__group:hover .site-nav__link::after,
.site-nav__group.is-open .site-nav__link::after {
  transform: scaleX(1);
}

.site-nav__group:hover .site-nav__caret,
.site-nav__group.is-open .site-nav__caret {
  transform: rotate(180deg);
  opacity: 1;
}

.site-nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  width: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--panel) 94%, black);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .22s var(--ease, cubic-bezier(.2,.7,.2,1)), transform .22s var(--ease, cubic-bezier(.2,.7,.2,1)), visibility .22s;
  max-height: calc(100vh - 96px);
  overflow: visible;
  z-index: 60;
}

.site-nav__menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

html[data-theme="light"] .site-nav__menu {
  background: color-mix(in srgb, var(--panel) 96%, white);
  box-shadow: 0 24px 70px rgba(16, 24, 40, .12);
}

.site-nav__group.is-open .site-nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(6px);
  pointer-events: auto;
}

@media(min-width: 901px) {
  .site-nav__group:hover .site-nav__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(6px);
    pointer-events: auto;
  }
}

.site-nav__menu--profiles {
  min-width: 310px;
}

.site-nav__branch {
  display: block;
  position: relative;
}

.site-nav__row,
.site-nav__item-main {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: background .18s;
  text-decoration: none;
}

.site-nav__row:hover,
.site-nav__branch:hover > .site-nav__item-main,
.site-nav__branch.is-open > .site-nav__item-main {
  background: var(--panel-2);
}

.site-nav__dot {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--nav-dot, linear-gradient(135deg, var(--violet), var(--blue)));
  color: #06080e;
  font-family: var(--disp);
  font-size: 12px;
  font-weight: 800;
}

html[data-theme="light"] .site-nav__dot {
  color: #fff;
  text-shadow: 0 1px 2px rgba(6, 8, 14, .28);
}

.site-nav__row-text {
  flex: 1;
  min-width: 0;
}

.site-nav__row-text strong {
  display: block;
  font-family: var(--disp);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.site-nav__row-text span {
  display: block;
  margin-top: 1px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-faint);
  line-height: 1.35;
}

.site-nav__arrow {
  width: 8px;
  height: 12px;
  flex: 0 0 auto;
  opacity: .5;
  transition: transform .2s, opacity .2s;
}

.site-nav__branch:hover .site-nav__arrow,
.site-nav__branch.is-open .site-nav__arrow {
  transform: translateX(2px);
  opacity: 1;
}

.site-nav__branch-toggle {
  display: none;
}

.site-nav__sub {
  position: absolute;
  top: -9px;
  left: 100%;
  margin-left: 8px;
  min-width: 245px;
  max-height: 340px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--panel) 94%, black);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  pointer-events: none;
  transition: opacity .2s var(--ease, cubic-bezier(.2,.7,.2,1)), transform .2s var(--ease, cubic-bezier(.2,.7,.2,1)), visibility .2s;
  z-index: 61;
}

html[data-theme="light"] .site-nav__sub {
  background: color-mix(in srgb, var(--panel) 96%, white);
  box-shadow: 0 24px 60px rgba(16, 24, 40, .12);
}

.site-nav__sub::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10px;
  width: 10px;
}

.site-nav__branch:hover > .site-nav__sub,
.site-nav__branch:focus-within > .site-nav__sub,
.site-nav__branch.is-open > .site-nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

@media (min-width: 901px) and (max-width: 1120px) {
  .site-nav__menu--profiles .site-nav__sub {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 8px;
    transform: translateX(8px);
  }

  .site-nav__menu--profiles .site-nav__sub::before {
    left: auto;
    right: -10px;
  }

  .site-nav__menu--profiles .site-nav__branch:hover > .site-nav__sub,
  .site-nav__menu--profiles .site-nav__branch:focus-within > .site-nav__sub,
  .site-nav__menu--profiles .site-nav__branch.is-open > .site-nav__sub {
    transform: translateX(0);
  }
}

.site-nav__panel-label,
.site-nav__sub-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 10px 11px 6px;
}

.site-nav__sub-list {
  display: grid;
  gap: 2px;
}

.site-nav__sub-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border-radius: 10px;
  color: inherit;
  transition: background .16s;
  text-decoration: none;
}

.site-nav__sub-link:hover {
  background: var(--panel-2);
}

.site-nav__sub-code {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--accent);
  width: 48px;
  flex: 0 0 auto;
}

.site-nav__sub-name {
  font-size: 13px;
  color: var(--text-soft);
}

.site-nav__sub-link:hover .site-nav__sub-name {
  color: var(--text);
}

.site-nav__sub::-webkit-scrollbar {
  width: 8px;
}

.site-nav__sub::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 8px;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.site-nav-toggle span {
  display: block;
  width: 15px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s, opacity .2s;
}

.site-nav-toggle:hover,
.site-nav-toggle.is-open {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  background: color-mix(in srgb, var(--accent) 10%, var(--panel));
}

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

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

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

.btn,
.btn-ghost {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 30px;
  transition: transform .25s, border-color .25s, color .25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.btn {
  background: linear-gradient(135deg, var(--accent, var(--violet)), var(--accent-2, var(--blue)));
  color: var(--bg);
  box-shadow: 0 0 22px var(--accent-glow, var(--violet-glow));
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text-soft);
  background: none;
}

.btn:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-ghost:hover {
  border-color: var(--text-soft);
  color: var(--text);
}

.profile-score-lock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 30px;
  padding: clamp(7px, calc(8px * var(--profile-lock-scale, 1)), 12px) clamp(14px, calc(18px * var(--profile-lock-scale, 1)), 22px);
  background: linear-gradient(135deg, var(--accent, var(--blue)), var(--accent-2, var(--violet)));
  color: var(--bg);
  font-family: var(--mono);
  font-size: clamp(9px, calc(10px * var(--profile-lock-scale, 1)), 13px);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  max-width: min(92%, 520px);
  box-shadow: 0 0 20px var(--accent-glow, rgba(91, 155, 245, .24));
}

.profile-score-lock-box {
  position: relative;
  border-radius: 28px;
  isolation: isolate;
  overflow: hidden;
  min-height: 240px;
  --profile-lock-scale: 1;
}

.profile-score-locked-content {
  opacity: .52;
  filter: grayscale(1);
  pointer-events: none;
  user-select: none;
}

.profile-score-lock-overlay {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(18px, 4vw, 44px);
  border-radius: 28px;
  background: radial-gradient(700px 320px at 50% 0%, var(--accent-glow, rgba(91, 155, 245, .32)), transparent 70%), rgba(20, 24, 38, .72);
  border: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(5px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .26);
}

.profile-score-lock-box--long .profile-score-lock-overlay {
  justify-content: flex-start;
}

.profile-score-lock-box--center-copy .profile-score-lock-overlay {
  justify-content: center;
}

.profile-score-lock-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: min(92%, 900px);
}

.profile-score-lock-overlay h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(18px, calc(30px * var(--profile-lock-scale, 1)), 52px);
  line-height: 1.04;
  letter-spacing: 0;
  max-width: min(92%, 17ch);
  margin: 0 auto clamp(8px, calc(10px * var(--profile-lock-scale, 1)), 22px);
  color: #fff;
}

.profile-score-lock-overlay p {
  color: #fff;
  font-weight: 300;
  font-size: clamp(12px, calc(15px * var(--profile-lock-scale, 1)), 24px);
  line-height: 1.38;
  max-width: min(92%, 44ch);
  margin: 0 auto clamp(10px, calc(14px * var(--profile-lock-scale, 1)), 26px);
}

.profile-score-lock-box--compact {
  border-radius: 16px;
  margin-top: 30px;
}

.profile-score-lock-box--compact .profile-score-lock-overlay {
  border-radius: 16px;
  background: radial-gradient(420px 180px at 50% 0%, var(--accent-glow, rgba(91, 155, 245, .24)), transparent 72%), rgba(20, 24, 38, .64);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
}

.profile-score-lock-box--snapshot {
  border-radius: 18px;
  margin-top: 0;
}

.profile-score-lock-box--snapshot .profile-score-lock-overlay {
  border-radius: 18px;
  background: radial-gradient(520px 240px at 50% 0%, var(--accent-glow, rgba(91, 155, 245, .26)), transparent 72%), rgba(20, 24, 38, .68);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
}

.profile-score-lock-box--dimension {
  border-radius: 20px;
  margin-bottom: 24px;
}

.profile-score-lock-box--dimension .dim-panel {
  margin-bottom: 0;
}

.profile-score-lock-box--dimension .profile-score-lock-overlay {
  border-radius: 20px;
}

.profile-score-lock-box--stat {
  border-radius: 16px;
  min-height: 0;
}

.profile-score-lock-box--stat .stat {
  height: 100%;
}

.profile-score-lock-box--stat .profile-score-lock-overlay {
  border-radius: 16px;
}

.profile-score-lock-box--interest-type {
  border-radius: 20px;
  min-height: 0;
}

.profile-score-lock-box--interest-type .type-panel {
  height: 100%;
}

.profile-score-lock-box--interest-type .profile-score-lock-overlay {
  border-radius: 20px;
}

@media(max-width: 900px) {
  .profile-score-lock-overlay {
    padding: 24px;
  }
}

.theme-toggle {
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s, transform .2s;
  white-space: nowrap;
}

.theme-toggle:hover {
  color: var(--text);
  border-color: rgba(127, 127, 127, .28);
  transform: translateY(-1px);
}

.theme-toggle::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent, var(--violet)), var(--accent-2, var(--blue)));
  box-shadow: 0 0 12px var(--accent-glow, var(--violet-glow));
}

.assessment-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 12px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.assessment-status b {
  color: var(--text);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
  margin-top: 30px;
}

.sf-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.sf-brand p {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 300;
  max-width: 34ch;
  margin-top: 16px;
  line-height: 1.6;
}

.sf-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
}

.sf-col a {
  display: block;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 11px;
  transition: color .2s;
}

.sf-col a:hover {
  color: var(--text);
}

.sf-detail {
  margin-bottom: 10px;
}

.sf-detail summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 30px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 14px;
  transition: color .2s, background .2s, border-color .2s;
}

.sf-detail summary::-webkit-details-marker {
  display: none;
}

.sf-detail summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-faint);
  transition: transform .2s, color .2s;
}

.sf-detail summary:hover {
  color: var(--text);
}

.sf-detail[open] summary {
  color: var(--text);
}

.sf-detail[open] summary::after {
  content: "-";
  color: var(--text-soft);
}

.sf-detail:not([open]) .sf-sub {
  display: none;
}

.sf-sub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 10px;
  margin: 4px 0 14px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.sf-col .sf-sub a {
  margin: 0;
  font-size: 12px;
  color: var(--text-faint);
}

.sf-col .sf-sub__overview {
  grid-column: 1 / -1;
  color: var(--text-soft);
}

.sf-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 12px;
}

.legal-copy {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.legal-copy p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.legal-copy strong {
  color: var(--text);
}

.legal-copy h2 {
  font-family: var(--disp);
  color: var(--text);
  font-size: 24px;
  margin: 30px 0 10px;
}

.legal-copy h3 {
  font-family: var(--disp);
  color: var(--text);
  font-size: 18px;
  margin: 22px 0 8px;
}

.legal-copy ul,
.legal-copy ol {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px 22px;
  padding: 0;
}

.legal-copy li {
  margin: 0 0 8px;
}

.legal-copy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-copy code {
  font-family: var(--mono);
  font-size: .9em;
  color: var(--text);
}

.legal-copy table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  font-size: 14px;
  line-height: 1.55;
}

.legal-copy th,
.legal-copy td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.legal-copy th {
  color: var(--text);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-inline-button {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-2);
  color: var(--text);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  margin: 0 0 18px;
  padding: 8px 14px;
}

.assessment-terms-notice {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
  margin: 18px 0 0;
  padding: 14px 16px;
}

.assessment-terms-notice a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent {
  position: fixed;
  z-index: 80;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  width: min(620px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent h2 {
  color: var(--text);
  font-family: var(--disp);
  font-size: 20px;
  margin: 0 0 6px;
}

.cookie-consent p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.cookie-consent__options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 14px;
}

.cookie-consent__options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 13px;
}

.cookie-consent__actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-consent__btn {
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  padding: 9px 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

.cookie-consent__btn--secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text-soft);
}

@media (max-width: 720px) {
  .cookie-consent {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.home-hero {
  padding: 90px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.home-hero h1 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(44px, 7.5vw, 86px);
  line-height: 1;
  letter-spacing: 0;
  max-width: 15ch;
  margin: 18px auto 0;
}

.home-hero .lede {
  font-size: 19px;
  color: var(--text-soft);
  font-weight: 300;
  max-width: 52ch;
  margin: 24px auto 0;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-orbit {
  margin: 30px auto -20px;
  max-width: 460px;
}

.hero-orbit svg {
  width: 100%;
  height: auto;
  animation: spin 80s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-strip .s {
  text-align: center;
  padding: 18px;
}

.stat-strip .n {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 38px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-strip .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 6px;
}

.fw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fw-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  background: var(--panel);
  position: relative;
  overflow: hidden;
  transition: transform .4s, border-color .4s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 270px;
}

.fw-card::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  background: var(--c);
}

.fw-card:hover {
  transform: translateY(-6px);
  border-color: var(--c);
}

.fw-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 20px;
  color: var(--bg);
  background: var(--c);
  box-shadow: 0 0 18px var(--c-glow);
}

.fw-card h3 {
  font-family: var(--disp);
  font-size: 24px;
  font-weight: 600;
}

.fw-card p {
  font-size: 14.5px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.6;
  flex: 1;
}

.fw-card .go {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  background: var(--panel);
}

.feature .fi {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent);
}

.feature .fi svg {
  width: 20px;
  height: 20px;
}

.feature h4 {
  font-family: var(--disp);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature p {
  font-size: 13.5px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.55;
}

.preview {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px;
  background: linear-gradient(160deg, var(--panel), var(--bg-2));
  position: relative;
  overflow: hidden;
}

.preview h3 {
  font-family: var(--disp);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.preview .pm {
  font-size: 15px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 44ch;
}

.pv-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pv-row .pl {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--text-soft);
  margin-bottom: 7px;
  text-transform: uppercase;
}

.quote-band {
  text-align: center;
  padding: 90px 0;
}

.quote-band p {
  font-family: var(--disp);
  font-weight: 400;
  font-size: clamp(24px, 3.6vw, 38px);
  line-height: 1.4;
  max-width: 24ch;
  margin: 0 auto;
  letter-spacing: 0;
}

.quote-band .src {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 24px;
}

.cta-band {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 72px 30px;
  background: radial-gradient(700px 320px at 50% 0%, var(--accent-glow), transparent 70%), var(--panel);
}

.cta-band h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: 0;
  max-width: 16ch;
  margin: 0 auto 16px;
}

.cta-band p {
  color: var(--text-soft);
  font-weight: 300;
  font-size: 17px;
  max-width: 44ch;
  margin: 0 auto 30px;
}

.page-head {
  padding: 78px 0 36px;
  border-bottom: 1px solid var(--line);
}

.page-head h1 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 68px);
  letter-spacing: 0;
  line-height: 1;
}

.page-head .sub {
  font-size: 17px;
  color: var(--text-soft);
  font-weight: 300;
  max-width: 52ch;
  margin-top: 16px;
  line-height: 1.6;
}

.cat-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cat-pills a,
.cat-pills button {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: none;
  color: var(--text-soft);
  cursor: pointer;
  transition: color .25s, background .25s, border-color .25s;
}

.cat-pills a.active,
.cat-pills button.active,
.cat-pills a:hover,
.cat-pills button:hover {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

.banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c, var(--accent)), var(--c2, var(--accent-2)));
  display: grid;
  place-items: center;
}

.banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.banner--image {
  background: var(--panel);
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11, 13, 20, .18) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: .5;
}

.banner--image::after {
  background: linear-gradient(180deg, rgba(11, 13, 20, 0) 45%, rgba(11, 13, 20, .34));
  opacity: 1;
}

.banner .mono {
  font-family: var(--disp);
  font-weight: 800;
  color: rgba(11, 13, 20, .2);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c, var(--accent));
  font-weight: 600;
}

.post-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: .03em;
}

.post-meta .d {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-faint);
}

.featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--panel);
  margin: 46px 0 56px;
  transition: transform .4s, border-color .4s;
}

.featured:hover {
  border-color: rgba(255, 255, 255, .16);
  transform: translateY(-4px);
}

.featured .banner {
  min-height: 330px;
}

.featured .banner .mono {
  font-size: 120px;
}

.featured .fx {
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.featured h2 {
  font-family: var(--disp);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.featured p {
  font-size: 15px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.6;
}

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

.post-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel);
  transition: transform .4s, border-color .4s;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .16);
}

.post-card .banner {
  height: 168px;
}

.post-card .banner .mono {
  font-size: 66px;
}

.post-card .pc-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.post-card h3 {
  font-family: var(--disp);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.22;
}

.post-card p {
  font-size: 13.5px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.55;
  flex: 1;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 56px 0 10px;
}

.pagination a,
.pagination span {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-soft);
  transition: background .25s, color .25s, border-color .25s;
}

.pagination .active,
.pagination a:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.article-head {
  padding: 66px 0 26px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.article-head h1 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(32px, 5.2vw, 58px);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 14px 0 0;
}

.article-head .deck {
  font-size: 20px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.6;
  margin-top: 18px;
}

.author-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: .04em;
}

.ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-family: var(--disp);
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}

.article-hero {
  height: 340px;
  border-radius: 20px;
  margin: 18px 0 50px;
}

.article-hero .mono {
  font-size: 120px;
}

.article {
  max-width: 720px;
  margin: 0 auto;
}

.article p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 24px;
}

.article p .drop {
  float: left;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 66px;
  line-height: .8;
  padding: 6px 14px 0 0;
  color: var(--accent);
}

.article h2 {
  font-family: var(--disp);
  font-size: 30px;
  font-weight: 600;
  margin: 46px 0 16px;
  letter-spacing: 0;
  line-height: 1.15;
}

.article h3 {
  font-family: var(--disp);
  font-size: 22px;
  font-weight: 600;
  margin: 34px 0 12px;
}

.article b,
.article strong {
  color: var(--text);
  font-weight: 600;
}

.article ul {
  margin: 0 0 24px 4px;
  list-style: none;
}

.article ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
  font-weight: 300;
}

.article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.article blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 26px;
  margin: 38px 0;
  font-family: var(--disp);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: 0;
}

.figph {
  height: 300px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

figure {
  margin: 42px 0;
}

figcaption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--text-faint);
  margin-top: 12px;
  text-align: center;
}

.callout {
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  background: var(--panel);
  padding: 24px 26px;
  margin: 38px 0;
}

.callout .ct {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.callout p {
  font-size: 15px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.chart-figure {
  margin: 42px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
  background: linear-gradient(160deg, var(--panel), var(--bg-2));
}

.author-bio {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  background: var(--panel);
  max-width: 720px;
  margin: 64px auto 0;
}

.author-bio .ava {
  width: 56px;
  height: 56px;
  font-size: 20px;
}

.author-bio h4 {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.author-bio .ar {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}

.author-bio p {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.6;
}

.empty-state {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  padding: 36px;
  color: var(--text-soft);
}

.empty-state h2,
.empty-state h3 {
  font-family: var(--disp);
  color: var(--text);
  font-size: 24px;
  margin-bottom: 8px;
}

@media(max-width: 1080px) {
  .fw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    height: auto;
    max-height: calc(100vh - 96px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: color-mix(in srgb, var(--panel) 96%, black);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    z-index: 70;
  }

  html[data-theme="light"] .site-nav {
    background: color-mix(in srgb, var(--panel) 98%, white);
    box-shadow: 0 24px 70px rgba(16, 24, 40, .16);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav-toggle {
    display: inline-flex;
  }

  .site-nav__group {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: color-mix(in srgb, var(--panel-2) 54%, transparent);
    overflow: hidden;
    height: auto;
    display: block;
  }

  .site-nav__link {
    width: 100%;
    justify-content: space-between;
    height: auto;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 0;
    color: var(--text);
  }

  .site-nav__link::after {
    display: none;
  }

  .site-nav__menu {
    display: none;
    position: static;
    opacity: 0;
    transform: none;
    pointer-events: none;
    min-width: 0;
    width: 100%;
    max-height: none;
    overflow: visible;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    padding: 8px;
    background: transparent;
    visibility: visible;
  }

  .site-nav__group:hover .site-nav__menu {
    display: none;
    opacity: 0;
    transform: none;
    pointer-events: none;
  }

  .site-nav__group.is-open .site-nav__menu {
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  html[data-theme="light"] .site-nav__menu {
    background: transparent;
    box-shadow: none;
  }

  .site-nav__menu--profiles {
    width: 100%;
  }

  .site-nav__branch {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .site-nav__item-main {
    grid-column: 1;
  }

  .site-nav__item-main > .site-nav__arrow {
    display: none;
  }

  .site-nav__branch-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    border: 0;
    border-left: 1px solid var(--line);
    background: transparent;
    color: var(--text-soft);
    cursor: pointer;
  }

  .site-nav__branch-toggle .site-nav__arrow {
    transform: rotate(90deg);
  }

  .site-nav__branch.is-open .site-nav__branch-toggle .site-nav__arrow {
    transform: rotate(-90deg);
  }

  .site-nav__sub {
    display: none;
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    max-height: min(320px, 52vh);
    overflow: auto;
    margin: 0;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    background: transparent;
  }

  .site-nav__branch:hover > .site-nav__sub,
  .site-nav__branch:focus-within > .site-nav__sub {
    display: none;
  }

  .site-nav__branch.is-open > .site-nav__sub {
    display: block;
  }

  .site-nav__sub::before {
    display: none;
  }

  .site-header__inner,
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sf-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .feature-grid,
  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .preview,
  .featured {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .featured .banner {
    min-height: 200px;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }

  .article-hero {
    height: 220px;
  }
}

@media(max-width: 560px) {
  .brand-lockup-svg {
    width: 146px;
  }

  .theme-toggle {
    width: 34px;
    padding: 0;
    justify-content: center;
  }

  .theme-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .fw-grid,
  .feature-grid,
  .stat-strip,
  .sf-grid {
    grid-template-columns: 1fr;
  }

  .sf-sub {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 64px;
  }
}
